File python-Shapely.spec of Package python-Shapely
#
# spec file for package python-Shapely
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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/
#
Name: python-Shapely
Version: 1.5.9
Release: 0
Summary: Geospatial geometries, predicates, and operations
License: BSD-3-Clause
Group: Development/Libraries/Python
Url: http://pypi.python.org/pypi/Shapely
Source: http://pypi.python.org/packages/source/S/Shapely/Shapely-%{version}.tar.gz
BuildRequires: geos-devel >= 3.3
BuildRequires: python-Cython
BuildRequires: python-devel
BuildRequires: python-numpy-devel
BuildRequires: python-pytest
BuildRequires: python-pytest-cov
BuildRequires: python-setuptools
#BuildRequires: python-setuptools_cython
Requires: geos >= 3.3
Requires: python-ctypes
Provides: python-shapely = %{version}
Obsoletes: python-shapely < %{version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%endif
%description
Shapely is a BSD-licensed Python package for manipulation and analysis of
planar geometric objects. It is based on the widely deployed 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
%setup -q -n Shapely-%{version}
%build
CFLAGS="%{optflags} `geos-config --cflags` LDFLAGS=`geos-config --clibs`"
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
# Those are just needed to build cython extension
# Not for distribute
rm -fv %{buildroot}%{_prefix}/shapely/_geos.pxi
rm -frv %{buildroot}%{_prefix}/shapely
%check
python setup.py test
%files
%defattr(-,root,root,-)
%doc CREDITS.txt LICENSE.txt README.rst docs/*
%{python_sitearch}/*
%changelog