1
0

Accepting request 1009741 from home:jayvdb:py-submit

3.4k github stars and lots of other packages depending on this
https://www.wheelodex.org/projects/geopandas/rdepends/

OBS-URL: https://build.opensuse.org/request/show/1009741
OBS-URL: https://build.opensuse.org/package/show/Application:Geo/python-geopandas?expand=0&rev=1
This commit is contained in:
Dirk Stoecker 2022-10-11 15:27:11 +00:00 committed by Git OBS Bridge
commit 5e6667f018
5 changed files with 124 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
geopandas-0.11.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f0f0c8d0423d30cf81de2056d853145c4362739350a7f8f2d72cc7409ef1eca1
size 1043439

14
python-geopandas.changes Normal file
View File

@ -0,0 +1,14 @@
-------------------------------------------------------------------
Fri Sep 16 01:58:53 UTC 2022 - John Vandenberg <jayvdb@gmail.com>
- Update to v0.11.1
-------------------------------------------------------------------
Fri Aug 21 12:39:37 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
- Update to v0.8.1
-------------------------------------------------------------------
Tue Dec 10 16:28:25 UTC 2019 - Todd R <toddrme2178@gmail.com>
- initial version for v0.6.2

83
python-geopandas.spec Normal file
View File

@ -0,0 +1,83 @@
#
# spec file for package python-geopandas
#
# Copyright (c) 2022 SUSE LLC.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-geopandas
Version: 0.11.1
Release: 0
License: BSD-3-Clause
Summary: Geographic pandas extensions
Url: http://geopandas.org
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/g/geopandas/geopandas-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module setuptools}
# SECTION test requirements
BuildRequires: %{python_module Fiona}
BuildRequires: %{python_module folium}
# mapclassify not yet available
#BuildRequires: %%{python_module mapclassify}
BuildRequires: %{python_module pandas >= 0.23.0}
BuildRequires: %{python_module pygeos}
BuildRequires: %{python_module pyproj}
BuildRequires: %{python_module shapely}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module geopy}
BuildRequires: %{python_module Rtree}
BuildRequires: %{python_module matplotlib}
BuildRequires: %{python_module scipy}
BuildRequires: libgdal-devel
BuildRequires: proj
BuildRequires: proj-devel
# /SECTION
BuildRequires: fdupes
Requires: python-Fiona
Requires: python-pandas >= 0.23.0
Requires: python-pyproj
Requires: python-shapely
Recommends: python-geopy
Recommends: python-matplotlib
BuildArch: noarch
%python_subpackages
%description
Geopandas combines the capabilities of pandas and shapely, providing geospatial
operations in pandas and a high-level interface to multiple geometries to shapely.
GeoPandas enables you to easily do operations in python that would otherwise
require a spatial database such as PostGIS.
%prep
%setup -q -n geopandas-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest -rs -k 'not test_overlay'
%files %{python_files}
%doc README.md
%license LICENSE.txt
%{python_sitelib}/geopandas*/
%changelog