diff options
Diffstat (limited to 'python-astroML.spec')
-rw-r--r-- | python-astroML.spec | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/python-astroML.spec b/python-astroML.spec new file mode 100644 index 0000000..c12ed2b --- /dev/null +++ b/python-astroML.spec @@ -0,0 +1,84 @@ +%global _empty_manifest_terminate_build 0 +Name: python-astroML +Version: 1.0.2.post1 +Release: 1 +Summary: Tools for machine learning and data mining in Astronomy +License: BSD 3-Clause License +URL: http://astroML.github.com +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c1/d9/e32e3f8a9742503f789920972d3c9fa09a461e5ba058229fd62b61959d45/astroML-1.0.2.post1.tar.gz +BuildArch: noarch + +Requires: python3-scikit-learn +Requires: python3-numpy +Requires: python3-scipy +Requires: python3-matplotlib +Requires: python3-astropy +Requires: python3-pymc3 +Requires: python3-flake8 +Requires: python3-sphinx +Requires: python3-pytest-doctestplus +Requires: python3-pytest-astropy-header +Requires: python3-pytest-remotedata +Requires: python3-pytest-cov + +%description + + +%package -n python3-astroML +Summary: Tools for machine learning and data mining in Astronomy +Provides: python-astroML +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-astroML + + +%package help +Summary: Development documents and examples for astroML +Provides: python3-astroML-doc +%description help + + +%prep +%autosetup -n astroML-1.0.2.post1 + +%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-astroML -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed Mar 08 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.2.post1-1 +- Package Spec generated |