- Don't use and test NumPy for python36 flavor: not available on Tumbleweed (NEP29) - Make sure to test shapely.vectorized on remaining flavors by changing the working dir. OBS-URL: https://build.opensuse.org/request/show/886265 OBS-URL: https://build.opensuse.org/package/show/Application:Geo/python-Shapely?expand=0&rev=23
96 lines
3.3 KiB
RPMSpec
96 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package python-Shapely
|
|
#
|
|
# Copyright (c) 2021 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/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%define oldpython python
|
|
%bcond_without test
|
|
%define skip_python2 1
|
|
Name: python-Shapely
|
|
Version: 1.7.1
|
|
Release: 0
|
|
Summary: Geospatial geometries, predicates, and operations
|
|
License: BSD-3-Clause
|
|
URL: https://github.com/Toblerity/Shapely
|
|
Source: https://files.pythonhosted.org/packages/source/S/Shapely/Shapely-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM Shapely-fix-svg-collection-pr1042.patch -- from gh#Toblerity/Shapely#1042 fix svg test
|
|
Patch0: Shapely-fix-svg-collection-pr1042.patch
|
|
BuildRequires: %{python_module Cython >= 0.19}
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: geos-devel >= 3.3
|
|
BuildRequires: python-rpm-macros
|
|
%if 0%{suse_version} >= 1550
|
|
BuildRequires: %{python_module matplotlib if (%python-base without python36-base)}
|
|
BuildRequires: %{python_module numpy-devel if (%python-base without python36-base)}
|
|
%else
|
|
# Application:Geo does not have the support for boolean build requirements within the
|
|
# python_module macro for the SLE/Leap repos
|
|
BuildRequires: %{python_module numpy-devel}
|
|
%if 0%{?suse_version} > 1320
|
|
BuildRequires: %{python_module matplotlib}
|
|
%endif
|
|
%endif
|
|
Requires: geos >= 3.3
|
|
Recommends: python-numpy
|
|
Provides: python-shapely = %{version}
|
|
Obsoletes: python-shapely < %{version}
|
|
%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`"
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
# Those are just needed to build cython extension
|
|
# Not for distribute
|
|
rm -fv %{buildroot}%{_prefix}/shapely/_geos.pxi
|
|
rm -frv %{buildroot}%{_prefix}/shapely
|
|
%python_expand rm %{buildroot}%{$python_sitearch}/shapely/*/*.c
|
|
|
|
%check
|
|
# make sure not to import the source dir without compiled shapely.vectorized during tests
|
|
mkdir testenv
|
|
cp -r 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}*-info
|
|
|
|
%changelog
|