diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-02-24 10:30:11 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-02-24 10:30:11 +0000 |
commit | 332455756fa46ff279d102e36569b5c75fca829d (patch) | |
tree | f52b080cbe6c774af9754577c3a6b27c5578e0e1 | |
parent | 715c2c6f95d9547aea775678350b2691616ba2f3 (diff) |
automatic import of python3-extension-helpersopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-extension-helpers.spec | 90 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 92 insertions, 0 deletions
@@ -0,0 +1 @@ +/extension-helpers-1.0.0.tar.gz diff --git a/python-extension-helpers.spec b/python-extension-helpers.spec new file mode 100644 index 0000000..0f05514 --- /dev/null +++ b/python-extension-helpers.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-extension-helpers +Version: 1.0.0 +Release: 1 +Summary: Utilities for building and installing packages with compiled extensions +License: BSD 3-Clause License +URL: https://github.com/astropy/extension-helpers +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/15/44/fc7754aa170b1f3b4318b009d00f1045a7f4616e2b77bcc3b3d4f5601be5/extension-helpers-1.0.0.tar.gz +BuildArch: noarch + +Requires: python3-setuptools +Requires: python3-sphinx +Requires: python3-sphinx-automodapi +Requires: python3-wheel +Requires: python3-pytest +Requires: python3-pytest-cov +Requires: python3-coverage + +%description +The **extension-helpers** package includes convenience helpers to assist with +building Python packages with compiled C/Cython extensions. It is developed by +the Astropy project but is intended to be general and usable by any Python +package. +For more information, see the documentation at http://extension-helpers.readthedocs.io + +%package -n python3-extension-helpers +Summary: Utilities for building and installing packages with compiled extensions +Provides: python-extension-helpers +BuildRequires: python3-devel +BuildRequires: python3-setuptools +%description -n python3-extension-helpers +The **extension-helpers** package includes convenience helpers to assist with +building Python packages with compiled C/Cython extensions. It is developed by +the Astropy project but is intended to be general and usable by any Python +package. +For more information, see the documentation at http://extension-helpers.readthedocs.io + +%package help +Summary: Development documents and examples for extension-helpers +Provides: python3-extension-helpers-doc +%description help +The **extension-helpers** package includes convenience helpers to assist with +building Python packages with compiled C/Cython extensions. It is developed by +the Astropy project but is intended to be general and usable by any Python +package. +For more information, see the documentation at http://extension-helpers.readthedocs.io + +%prep +%autosetup -n extension-helpers-1.0.0 + +%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-extension-helpers -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri Feb 24 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.0-1 +- Package Spec generated @@ -0,0 +1 @@ +6825c71ff1369bd5a27d53098a6b44bf extension-helpers-1.0.0.tar.gz |