diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-09 07:38:47 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-09 07:38:47 +0000 |
commit | 9d39e06ce6e889d3af10efade90c9992a9bc850c (patch) | |
tree | 11838e8625958714be82e035ac6af4b4b686ea9b | |
parent | f17f8d012bceadc73f943c7ee67878de5cf863e8 (diff) |
automatic import of python-fiona
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-fiona.spec | 88 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 90 insertions, 0 deletions
@@ -0,0 +1 @@ +/Fiona-1.9.1.tar.gz diff --git a/python-fiona.spec b/python-fiona.spec new file mode 100644 index 0000000..5f9123f --- /dev/null +++ b/python-fiona.spec @@ -0,0 +1,88 @@ +%global _empty_manifest_terminate_build 0 +Name: python-Fiona +Version: 1.9.1 +Release: 1 +Summary: Fiona reads and writes spatial data files +License: BSD 3-Clause +URL: https://pypi.org/project/Fiona/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/62/c4/05f25e319e1bffacaf521bf366c31b01acda7d1acf251d3e4f1f0d0270d3/Fiona-1.9.1.tar.gz + +Requires: python3-attrs +Requires: python3-certifi +Requires: python3-click +Requires: python3-click-plugins +Requires: python3-cligj +Requires: python3-munch +Requires: python3-setuptools +Requires: python3-Fiona[calc,s3,test] +Requires: python3-shapely +Requires: python3-boto3 +Requires: python3-Fiona[s3] +Requires: python3-pytest +Requires: python3-pytest-cov +Requires: python3-pytz + +%description + + +%package -n python3-Fiona +Summary: Fiona reads and writes spatial data files +Provides: python-Fiona +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-Fiona + + +%package help +Summary: Development documents and examples for Fiona +Provides: python3-Fiona-doc +%description help + + +%prep +%autosetup -n Fiona-1.9.1 + +%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-Fiona -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 1.9.1-1 +- Package Spec generated @@ -0,0 +1 @@ +2949061f4a222ec0facb060046c4aa5a Fiona-1.9.1.tar.gz |