From 57155bf2e925f5005544db835959e8fff0ed7bdf Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Wed, 10 May 2023 09:26:02 +0000 Subject: automatic import of python-pyjams --- python-pyjams.spec | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 python-pyjams.spec (limited to 'python-pyjams.spec') diff --git a/python-pyjams.spec b/python-pyjams.spec new file mode 100644 index 0000000..807541a --- /dev/null +++ b/python-pyjams.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pyjams +Version: 1.30 +Release: 1 +Summary: pyjams: a general Python package with a wide variety of miscellaneous utility functions. +License: MIT +URL: https://github.com/mcuntz/pyjams +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/cb/52/e3eda7882cb5bac052d62210122344e8c138304ec378292a51898abab1b6/pyjams-1.30.tar.gz +BuildArch: noarch + +Requires: python3-numpy +Requires: python3-scipy +Requires: python3-matplotlib +Requires: python3-cftime +Requires: python3-netcdf4 +Requires: python3-schwimmbad +Requires: python3-xlrd +Requires: python3-openpyxl +Requires: python3-numpydoc +Requires: python3-jinja2 +Requires: python3-sphinx +Requires: python3-sphinx-rtd-theme +Requires: python3-coverage[toml] +Requires: python3-pytest +Requires: python3-pytest-cov + +%description + pandoc -f rst -o README.html -t html README.rst +A general Python package with a wide variety of miscellaneous utility functions. + +%package -n python3-pyjams +Summary: pyjams: a general Python package with a wide variety of miscellaneous utility functions. +Provides: python-pyjams +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pyjams + pandoc -f rst -o README.html -t html README.rst +A general Python package with a wide variety of miscellaneous utility functions. + +%package help +Summary: Development documents and examples for pyjams +Provides: python3-pyjams-doc +%description help + pandoc -f rst -o README.html -t html README.rst +A general Python package with a wide variety of miscellaneous utility functions. + +%prep +%autosetup -n pyjams-1.30 + +%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-pyjams -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot - 1.30-1 +- Package Spec generated -- cgit v1.2.3