diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-29 09:33:40 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-29 09:33:40 +0000 |
| commit | 2b52e5aade9d4cab59e43bdb15a6ccebb2a55f38 (patch) | |
| tree | 1ffda042a372e363e24b8649b7f16e064598e20c | |
| parent | b2b18f323e4e4b968bca998257a1b4f58c8a6f20 (diff) | |
automatic import of python-bioext
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-bioext.spec | 72 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 74 insertions, 0 deletions
@@ -0,0 +1 @@ +/bioext-0.20.5.tar.gz diff --git a/python-bioext.spec b/python-bioext.spec new file mode 100644 index 0000000..76319b8 --- /dev/null +++ b/python-bioext.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-bioext +Version: 0.20.5 +Release: 1 +Summary: Misc utilities and definitions not included or hidden in BioPython +License: GNU GPL version 3 +URL: http://github.com/veg/bioext +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/de/51/0ec0dec065a7d798680fd7860a0ddbc1466586030e57a2805ee410917bb1/bioext-0.20.5.tar.gz +BuildArch: noarch + + +%description + + +%package -n python3-bioext +Summary: Misc utilities and definitions not included or hidden in BioPython +Provides: python-bioext +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-bioext + + +%package help +Summary: Development documents and examples for bioext +Provides: python3-bioext-doc +%description help + + +%prep +%autosetup -n bioext-0.20.5 + +%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-bioext -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 0.20.5-1 +- Package Spec generated @@ -0,0 +1 @@ +6f33915b2e8ae0624bac773dc6140355 bioext-0.20.5.tar.gz |
