- Remove upper bound on Cython, Cython 3 is supported.
- Update to 2.0.2
these features are used.
* Added new `shapely.ops.substring` function
* Added new `shapely.ops.clip_by_rect` function
* shapely.wkb.dumps` now accepts an `srid` integer keyword argument
equality, preventing instances of base and derived classes from
* Remove packaging module requirement added in 1.5.10 (#305). Distutils can't
* Fix for 64 bit speedups compatibility (#274).
* Added Provides lowercase
sc
OBS-URL: https://build.opensuse.org/package/show/Application:Geo/python-Shapely?expand=0&rev=46
88 lines
3.2 KiB
RPMSpec
88 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package python-Shapely
|
|
#
|
|
# Copyright (c) 2024 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-Shapely
|
|
Version: 2.0.6
|
|
Release: 0
|
|
Summary: Geospatial geometries, predicates, and operations
|
|
License: BSD-3-Clause
|
|
URL: https://github.com/shapely/shapely
|
|
Source: https://files.pythonhosted.org/packages/source/s/shapely/shapely-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM Fix incompatible pointer type passed to GEOSPolygonize_r gh#shapely/shapely#1945
|
|
Patch: https://github.com/shapely/shapely/pull/1945.patch
|
|
BuildRequires: %{python_module Cython}
|
|
BuildRequires: %{python_module devel >= 3.8}
|
|
BuildRequires: %{python_module numpy-devel >= 1.25}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
# SECTION test
|
|
BuildRequires: %{python_module pytest}
|
|
# Don't test with matplotlib until 15.x has python311-matplotlib.
|
|
# (It's currently in devel:languages:python:backports but not in the Leap :Update repositories)
|
|
%if 0%{?suse_version} > 1500
|
|
BuildRequires: %{python_module matplotlib}
|
|
%endif
|
|
# /SECTION
|
|
BuildRequires: fdupes
|
|
BuildRequires: geos-devel >= 3.5
|
|
BuildRequires: python-rpm-macros
|
|
# Shapely calls the GEOS libs libgeos and libgeos_c via ctypes in python scripts, undetected by rpm ld analyzer.
|
|
# (libgeos_c1 is detected due to some Cython optimized lib, but libgeos3 is not)
|
|
Requires: %(rpm -q --requires geos-devel | sed -rne 's/^(libgeos3.* = .*)-.*/\1/p')
|
|
Requires: (python-numpy >= 1.14 with python-numpy < 3)
|
|
Provides: python-shapely = %{version}-%{release}
|
|
Obsoletes: python-shapely < %{version}-%{release}
|
|
%python_subpackages
|
|
|
|
%description
|
|
Shapely is a Python package for manipulation and analysis of
|
|
planar geometric objects. It is based on the GEOS (the
|
|
engine of PostGIS) and JTS (from which GEOS is ported) libraries.
|
|
Shapely is not concerned with data formats or coordinate systems,
|
|
but can be readily integrated with packages that are like WorldMill
|
|
and pyproj.
|
|
|
|
%prep
|
|
%autosetup -p1 -n shapely-%{version}
|
|
|
|
%build
|
|
CFLAGS="%{optflags} `geos-config --cflags` LDFLAGS=`geos-config --clibs`"
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%check
|
|
# make sure not to import the source dir without compiled shapely.vectorized during tests
|
|
mkdir testenv
|
|
cp -r shapely/tests setup.cfg testenv
|
|
pushd testenv
|
|
%pytest_arch -ra
|
|
popd
|
|
|
|
%files %{python_files}
|
|
%license LICENSE.txt
|
|
%doc CREDITS.txt README.rst docs/*
|
|
%{python_sitearch}/shapely
|
|
%{python_sitearch}/shapely-%{version}.dist-info
|
|
|
|
%changelog
|