diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-08 04:01:48 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-08 04:01:48 +0000 |
commit | 0df5fa9dd7b613434b38b5f304446a5528e2859e (patch) | |
tree | 0804b9ca87e0dc6f78ae17c7614360418b08e84d | |
parent | ea543e5fb2ff3c5fc9ab932d9b93dc2ff3dade87 (diff) |
automatic import of python-astroML
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-astroML.spec | 84 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 86 insertions, 0 deletions
@@ -0,0 +1 @@ +/astroML-1.0.2.post1.tar.gz 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 @@ -0,0 +1 @@ +9c35d0f328c90e33c8419ce80c4c7db3 astroML-1.0.2.post1.tar.gz |