diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-10 17:03:05 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 17:03:05 +0000 |
| commit | 8b0e0b55160c2834144d66f6c927a440ea6ce8b9 (patch) | |
| tree | 45ad6649779f3468df617dc19aee7ac82a3fcf3d /python-pygeos.spec | |
| parent | 85773dfa7cbc569487eed227f79023e6d14d340c (diff) | |
automatic import of python-pygeos
Diffstat (limited to 'python-pygeos.spec')
| -rw-r--r-- | python-pygeos.spec | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/python-pygeos.spec b/python-pygeos.spec new file mode 100644 index 0000000..8ea63e6 --- /dev/null +++ b/python-pygeos.spec @@ -0,0 +1,78 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pygeos +Version: 0.14 +Release: 1 +Summary: GEOS wrapped in numpy ufuncs +License: BSD 3-Clause +URL: https://github.com/pygeos/pygeos +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ca/1f/07cda42b8a478ddfeb8b0bb328a10b2759ae75f8a60026238c0e33c9ef80/pygeos-0.14.tar.gz + +Requires: python3-numpy +Requires: python3-sphinx +Requires: python3-numpydoc +Requires: python3-pytest + +%description + + +%package -n python3-pygeos +Summary: GEOS wrapped in numpy ufuncs +Provides: python-pygeos +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-pygeos + + +%package help +Summary: Development documents and examples for pygeos +Provides: python3-pygeos-doc +%description help + + +%prep +%autosetup -n pygeos-0.14 + +%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-pygeos -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.14-1 +- Package Spec generated |
