diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-10 07:15:36 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 07:15:36 +0000 |
| commit | e4e0aaddd746d12e28a5b8bcd1a95a1933e1160d (patch) | |
| tree | 35b3f11d74315996098e673d641b3d199961c7bd | |
| parent | fa52b797c9e37e31bb9e641634e536228de17f8b (diff) | |
automatic import of python-spatialpandasopeneuler20.03
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-spatialpandas.spec | 115 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 117 insertions, 0 deletions
@@ -0,0 +1 @@ +/spatialpandas-0.4.7.tar.gz diff --git a/python-spatialpandas.spec b/python-spatialpandas.spec new file mode 100644 index 0000000..ecb1c75 --- /dev/null +++ b/python-spatialpandas.spec @@ -0,0 +1,115 @@ +%global _empty_manifest_terminate_build 0 +Name: python-spatialpandas +Version: 0.4.7 +Release: 1 +Summary: Pandas extension arrays for spatial/geometric operations +License: BSD-2-Clause +URL: https://github.com/holoviz/spatialpandas +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5f/8f/54e2f0e257ec80a376c83e804e9f22e836194077fac84e556d8cbaa8f972/spatialpandas-0.4.7.tar.gz +BuildArch: noarch + +Requires: python3-dask +Requires: python3-fsspec +Requires: python3-numba +Requires: python3-pandas +Requires: python3-param +Requires: python3-pyarrow +Requires: python3-snappy +Requires: python3-retrying +Requires: python3-datashader +Requires: python3-descartes +Requires: python3-geopandas +Requires: python3-holoviews +Requires: python3-matplotlib +Requires: python3-codecov +Requires: python3-flake8 +Requires: python3-hilbertcurve +Requires: python3-geopandas +Requires: python3-hypothesis +Requires: python3-keyring +Requires: python3-pytest-cov +Requires: python3-pytest +Requires: python3-rfc3986 +Requires: python3-scipy +Requires: python3-shapely +Requires: python3-twine + +%description +# Pandas and Dask extensions for vectorized spatial and geometric operations. +| | | +| --- | --- | +| Build Status | [](https://github.com/holoviz/spatialpandas/actions?query=workflow%3Atests) | +| Latest dev release | [](https://github.com/holoviz/spatialpandas/tags)| +| Latest release | [](https://github.com/holoviz/spatialpandas/releases) [](https://pypi.python.org/pypi/spatialpandas) [](https://anaconda.org/pyviz/spatialpandas) [](https://anaconda.org/conda-forge/spatialpandas) [](https://anaconda.org/anaconda/spatialpandas) | +| Python | [](https://pypi.org/project/spatialpandas/) + +%package -n python3-spatialpandas +Summary: Pandas extension arrays for spatial/geometric operations +Provides: python-spatialpandas +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-spatialpandas +# Pandas and Dask extensions for vectorized spatial and geometric operations. +| | | +| --- | --- | +| Build Status | [](https://github.com/holoviz/spatialpandas/actions?query=workflow%3Atests) | +| Latest dev release | [](https://github.com/holoviz/spatialpandas/tags)| +| Latest release | [](https://github.com/holoviz/spatialpandas/releases) [](https://pypi.python.org/pypi/spatialpandas) [](https://anaconda.org/pyviz/spatialpandas) [](https://anaconda.org/conda-forge/spatialpandas) [](https://anaconda.org/anaconda/spatialpandas) | +| Python | [](https://pypi.org/project/spatialpandas/) + +%package help +Summary: Development documents and examples for spatialpandas +Provides: python3-spatialpandas-doc +%description help +# Pandas and Dask extensions for vectorized spatial and geometric operations. +| | | +| --- | --- | +| Build Status | [](https://github.com/holoviz/spatialpandas/actions?query=workflow%3Atests) | +| Latest dev release | [](https://github.com/holoviz/spatialpandas/tags)| +| Latest release | [](https://github.com/holoviz/spatialpandas/releases) [](https://pypi.python.org/pypi/spatialpandas) [](https://anaconda.org/pyviz/spatialpandas) [](https://anaconda.org/conda-forge/spatialpandas) [](https://anaconda.org/anaconda/spatialpandas) | +| Python | [](https://pypi.org/project/spatialpandas/) + +%prep +%autosetup -n spatialpandas-0.4.7 + +%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-spatialpandas -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.7-1 +- Package Spec generated @@ -0,0 +1 @@ +a72484f7828bebc99a9614e1432eaed0 spatialpandas-0.4.7.tar.gz |
