From b950119a4e7b68c12e1b0819e7e343dfad661783 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Wed, 10 May 2023 08:35:20 +0000 Subject: automatic import of python-rsnapsim --- python-rsnapsim.spec | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 python-rsnapsim.spec (limited to 'python-rsnapsim.spec') diff --git a/python-rsnapsim.spec b/python-rsnapsim.spec new file mode 100644 index 0000000..78f0ec8 --- /dev/null +++ b/python-rsnapsim.spec @@ -0,0 +1,80 @@ +%global _empty_manifest_terminate_build 0 +Name: python-rsnapsim +Version: 0.0.58 +Release: 1 +Summary: A package for mRNA sequence translation stochastic simulations +License: MIT License +URL: https://pypi.org/project/rsnapsim/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/f2/5d/bd229ae2be2e4e7d7eb56510f181d90aaff6ff64cdfa76a170cdaef7492e/rsnapsim-0.0.58.tar.gz +BuildArch: noarch + +Requires: python3-BioPython +Requires: python3-numpy +Requires: python3-scipy +Requires: python3-cython +Requires: python3-matplotlib +Requires: python3-pandas +Requires: python3-snapgene-reader +Requires: python3-dna-features-viewer + +%description + + +%package -n python3-rsnapsim +Summary: A package for mRNA sequence translation stochastic simulations +Provides: python-rsnapsim +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-rsnapsim + + +%package help +Summary: Development documents and examples for rsnapsim +Provides: python3-rsnapsim-doc +%description help + + +%prep +%autosetup -n rsnapsim-0.0.58 + +%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-rsnapsim -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot - 0.0.58-1 +- Package Spec generated -- cgit v1.2.3