summaryrefslogtreecommitdiff
path: root/python-spacepy.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-10 06:34:47 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-10 06:34:47 +0000
commit71e9809dd4ca04b48e6b51c6002ca3f77b23c502 (patch)
tree271c3b4e8a9e49e0d3b2da9847b10c23d71dc6e8 /python-spacepy.spec
parent3b7da40acfdfcbbebe53f16f004e3f0e50544bf7 (diff)
automatic import of python-spacepy
Diffstat (limited to 'python-spacepy.spec')
-rw-r--r--python-spacepy.spec82
1 files changed, 82 insertions, 0 deletions
diff --git a/python-spacepy.spec b/python-spacepy.spec
new file mode 100644
index 0000000..f0b5bcd
--- /dev/null
+++ b/python-spacepy.spec
@@ -0,0 +1,82 @@
+%global _empty_manifest_terminate_build 0
+Name: python-spacepy
+Version: 0.4.1
+Release: 1
+Summary: SpacePy: Tools for Space Science Applications
+License: PSF
+URL: https://github.com/spacepy/spacepy
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/a0/eb/b4013c613c7584fed483d819da49ee9e0a372f437075c533bf05b268401b/spacepy-0.4.1.zip
+
+Requires: python3-numpy
+Requires: python3-scipy
+Requires: python3-matplotlib
+Requires: python3-h5py
+Requires: python3-dateutil
+
+%description
+SpacePy: Tools for Space Science Applications
+
+
+%package -n python3-spacepy
+Summary: SpacePy: Tools for Space Science Applications
+Provides: python-spacepy
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+BuildRequires: python3-cffi
+BuildRequires: gcc
+BuildRequires: gdb
+%description -n python3-spacepy
+SpacePy: Tools for Space Science Applications
+
+
+%package help
+Summary: Development documents and examples for spacepy
+Provides: python3-spacepy-doc
+%description help
+SpacePy: Tools for Space Science Applications
+
+
+%prep
+%autosetup -n spacepy-0.4.1
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-spacepy -f filelist.lst
+%dir %{python3_sitearch}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.1-1
+- Package Spec generated