diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-18 04:01:55 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-18 04:01:55 +0000 |
| commit | 741538ee2a76ad4df9067d91197c0c8b5ea0c70a (patch) | |
| tree | 3a0e964b3d6ff50bc515cc41cbea9e72c02f69b5 | |
| parent | cef6ca588574c4e19e924d9814556424ca08535a (diff) | |
automatic import of python-biopandas
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-biopandas.spec | 90 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 92 insertions, 0 deletions
@@ -0,0 +1 @@ +/biopandas-0.4.1.tar.gz diff --git a/python-biopandas.spec b/python-biopandas.spec new file mode 100644 index 0000000..cc614df --- /dev/null +++ b/python-biopandas.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-biopandas +Version: 0.4.1 +Release: 1 +Summary: Machine Learning Library Extensions +License: BSD 3-Clause +URL: https://github.com/rasbt/biopandas +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c0/99/4b95dd478bef9c55c6a2b07855e5fd937b4a340c34c6f66847f972b1b8e3/biopandas-0.4.1.tar.gz +BuildArch: noarch + +Requires: python3-numpy +Requires: python3-pandas +Requires: python3-setuptools + +%description +If you have any questions or comments about biopandas, +please feel free to contact me via +eMail: mail@sebastianraschka.com +or Twitter: https://twitter.com/rasbt +This project is hosted at https://github.com/rasbt/biopandas +The documentation can be found at http://rasbt.github.io/biopandas/ + +%package -n python3-biopandas +Summary: Machine Learning Library Extensions +Provides: python-biopandas +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-biopandas +If you have any questions or comments about biopandas, +please feel free to contact me via +eMail: mail@sebastianraschka.com +or Twitter: https://twitter.com/rasbt +This project is hosted at https://github.com/rasbt/biopandas +The documentation can be found at http://rasbt.github.io/biopandas/ + +%package help +Summary: Development documents and examples for biopandas +Provides: python3-biopandas-doc +%description help +If you have any questions or comments about biopandas, +please feel free to contact me via +eMail: mail@sebastianraschka.com +or Twitter: https://twitter.com/rasbt +This project is hosted at https://github.com/rasbt/biopandas +The documentation can be found at http://rasbt.github.io/biopandas/ + +%prep +%autosetup -n biopandas-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-biopandas -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.1-1 +- Package Spec generated @@ -0,0 +1 @@ +3690d16d52c6a7b5effc863caa2366ac biopandas-0.4.1.tar.gz |
