# No python-descartes build for EPEL8: # https://bugzilla.redhat.com/show_bug.cgi?id=1937749 %bcond_with descartes Name: python-shapely Version: 1.7.1 Release: 9%{?dist} Summary: Manipulation and analysis of geometric objects in the Cartesian plane License: BSD URL: https://github.com/Toblerity/Shapely Source0: %{url}/archive/%{version}%{?prerel}.tar.gz # Backport a relevant subset of commit # 611a0b3b2047bf8a49db32dc4b30684a10f5b6eb, which fixes # https://github.com/Toblerity/Shapely/issues/1079 (Test failure with geos # 3.9.0) and corresponds to https://github.com/Toblerity/Shapely/pull/1042/ # (Expand CI and tests to support GEOS 3.9.0beta2). The particular test vectors # must be adjusted in the backport because # https://github.com/Toblerity/Shapely/pull/1031 is not in 1.7.1; # in particular, “WKTWriter.defaults = {}” is still in tests/__init__.py. Patch1: shapely-1.7.1-611a0b3b-subset.patch # Fix test failures in test_wkb.py on big-endian platforms (s390x); fixes # RHBZ#1937719 and upstream bug # https://github.com/Toblerity/Shapely/issues/1102 by applying the contents of # https://github.com/Toblerity/Shapely/pull/1103. Patch2: shapely-1.7.1-test_wkb-endianness.patch BuildRequires: gcc BuildRequires: geos-devel BuildRequires: python%{python3_pkgversion}-devel BuildRequires: python%{python3_pkgversion}-setuptools BuildRequires: python%{python3_pkgversion}-Cython # Vendored upstream, but we remove the vendored copy: BuildRequires: python%{python3_pkgversion}-packaging # Vectorize extra (and tests) BuildRequires: python%{python3_pkgversion}-numpy # Tests BuildRequires: python%{python3_pkgversion}-pytest BuildRequires: python%{python3_pkgversion}-pluggy # Tests and documentation BuildRequires: python%{python3_pkgversion}-matplotlib # Documentation BuildRequires: make #BuildRequires: python3dist(sphinx) #BuildRequires: python3-docutils #%if %{with descartes} #BuildRequires: python3dist(descartes) >= 1.0.1 #%endif %global _description %{expand: Shapely is a package for creation, manipulation, and analysis of planar geometry objects – designed especially for developers of cutting edge geographic information systems. In a nutshell: Shapely lets you do PostGIS-ish stuff outside the context of a database using idiomatic Python. You can use this package with python-matplotlib and numpy. See README.rst for more information!} %description %_description %{?python_extras_subpkg:%python_extras_subpkg -n python%{python3_pkgversion}-shapely -i %{python3_sitearch}/*.egg-info vectorized} %package -n python%{python3_pkgversion}-shapely Summary: Manipulation and analysis of geometric objects in the Cartesian plane %if 0%{?fedora} == 32 %py_provides python%{python3_pkgversion}-shapely %endif %description -n python%{python3_pkgversion}-shapely %_description %package doc Summary: Documentation for %{name} BuildArch: noarch %description doc %_description %prep %autosetup -p1 -n Shapely-%{version}%{?prerel} # Remove vendored python-packaging rm -rf _vendor sed -r -i 's/_vendor\.//g' setup.py # Currently, the GitHub tarball does not ship with pre-generated Cython C # sources. We preventively check for them anyway, as they must be removed if # they do appear. find . -type f -name '*.c' -print -delete %build %py3_build #%make_build -C docs html SPHINXOPTS='%{?_smp_mflags}' #rm -vf docs/_build/html/.buildinfo %check # Ensure the “un-built” package is not imported. Otherwise compiled extensions # cannot be tested. mkdir empty cd empty ln -s ../tests/ %pytest %install %py3_install # Ensure that neither Cython source files nor Cython-generated C source files # are installed; they are not useful. find %{buildroot}%{python3_sitearch}/shapely \ -type f \( -name '*.pyx' -o -name '*.c' \) -print -delete %files -n python%{python3_pkgversion}-shapely %license LICENSE.txt %exclude %{python3_sitearch}/shapely/examples/ %{python3_sitearch}/shapely/ %{python3_sitearch}/Shapely-%{version}%{?prerel}-py*.egg-info/ #%files doc #%license LICENSE.txt #%doc CHANGES.txt #%doc CITATION.txt #%doc CODE_OF_CONDUCT.md #%doc CREDITS.txt #%doc FAQ.rst #%doc GEOS-C-API.txt #%doc README.rst #%doc docs/design.rst #%doc docs/_build/html #%doc shapely/examples/ %changelog * Fri Mar 12 2021 Benjamin A. Beasley - 1.7.1-9 - Fix skipped tests for vectorized extensions - Fix tests that failed on s390x because they assumed the host was little-endian (RHBZ#1937719, https://github.com/Toblerity/Shapely/issues/1102) * Thu Mar 11 2021 Benjamin A. Beasley - 1.7.1-8 - EPEL8 spec begins to diverge from Fedora - Build without descartes in EPEL8 * Thu Mar 11 2021 Benjamin A. Beasley - 1.7.1-7 - Rename bootstrap conditional to “descartes” * Thu Mar 11 2021 Benjamin A. Beasley - 1.7.1-6 - Switch to python3dist(…) style BR’s * Thu Mar 11 2021 Benjamin A. Beasley - 1.7.1-5 - Add bootstrap conditional to break circular dependency with python-descartes, used for HTML documentation * Wed Mar 10 2021 Benjamin A. Beasley - 1.7.1-4 - Use %%url macro to shorten Source0 URL - Use expand: to clean up description macro - Improve whitespace consistency - Drop python_provide macro, which is obsolete in Fedora - Fix SvgTestCase.test_collection failing with geos 3.9.0 (https://github.com/Toblerity/Shapely/issues/1079, RHBZ #1907955) - Improve handling of Cython and Cython-generated C source files - Use the %%pytest macro instead of deprecated “python3 setup.py test”; this also ensures we test the built package rather than re-compiling extensions in %%check - Add metapackage for “vectorized” extra - Install LICENSE.txt - Add a -doc subpackage and build the HTML documentation - Work around s390x test failures; RHBZ to be filed * Sat Feb 13 2021 Sandro Mani - 1.7.1-3 - Rebuild (geos) * Wed Jan 27 2021 Fedora Release Engineering - 1.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Fri Aug 21 2020 Volker Fröhlich - 1.7.1-1 - New upstream release * Wed Jul 29 2020 Fedora Release Engineering - 1.7.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Wed Jun 17 2020 Miro Hrončok - 1.7.0-4 - Update to 1.7.0 final (#1795751) * Tue May 26 2020 Miro Hrončok - 1.7-3b1 - Rebuilt for Python 3.9 * Thu Jan 30 2020 Fedora Release Engineering - 1.7-2b1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Fri Jan 17 2020 Volker Fröhlich - 1.7-1.b1 * Tue Jan 07 2020 Volker Fröhlich - 1.7-1.a3 - New upstream release - Don't run cython on our own - Change source URL - Remove generated C file unconditionally * Thu Oct 03 2019 Miro Hrončok - 1.6.4-9.post2 - Rebuilt for Python 3.8.0rc1 (#1748018) * Mon Aug 19 2019 Miro Hrončok - 1.6.4-8.post2 - Rebuilt for Python 3.8 * Fri Jul 26 2019 Fedora Release Engineering - 1.6.4-7.post2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Sat Feb 02 2019 Fedora Release Engineering - 1.6.4-6.post2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Fri Jan 04 2019 Miro Hrončok - 1.6.4-5.post2 - Remove python2 subpackage * Thu Aug 02 2018 Volker Fröhlich - 1.6.4-4.post2 - New upstream release - Add missing BR on gcc (Cython) * Sat Jul 14 2018 Fedora Release Engineering - 1.6.4-3.post1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Thu Jul 05 2018 Volker Fröhlich - 1.6.4-2.post1 - Merge Miro's pull request removing filter_provides and correcting the python_provide macro; Also adding it to the Python 3 sub-package * Wed Jul 04 2018 Volker Fröhlich - 1.6.4-1.post1 - New upstream release - Use unambiguous python2 macros * Tue Jun 19 2018 Miro Hrončok - 1.5.16-13 - Rebuilt for Python 3.7 * Wed Feb 28 2018 Iryna Shcherbina - 1.5.16-12 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) * Fri Feb 16 2018 2018 Lumír Balhar - 1.5.16-11 - Fix directory ownership * Fri Feb 09 2018 Fedora Release Engineering - 1.5.16-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 1.5.16-9 - Python 2 binary package renamed to python2-shapely See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 * Thu Aug 03 2017 Fedora Release Engineering - 1.5.16-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Thu Jul 27 2017 Fedora Release Engineering - 1.5.16-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Fri Jul 07 2017 Igor Gnatenko - 1.5.16-6 - Rebuild due to bug in RPM (RHBZ #1468476) * Sat Feb 11 2017 Fedora Release Engineering - 1.5.16-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Mon Dec 19 2016 Miro Hrončok - 1.5.16-4 - Rebuild for Python 3.6 * Sat Oct 15 2016 Peter Robinson - 1.5.16-3 - rebuilt for matplotlib-2.0.0 * Tue Jul 19 2016 Fedora Release Engineering - 1.5.16-2 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Sat May 28 2016 Volker Fröhlich - 1.5.16-1 - New upstream release * Tue Mar 29 2016 Volker Fröhlich - 1.5.15-1 - New upstream release * Wed Mar 02 2016 Miro Hrončok - 1.5.13-1 - Update to 1.5.13 (#1181550) - BR pytest and matplotlib for tests * Wed Mar 02 2016 Miro Hrončok - 1.5.13-1 - Update to 1.5.13 (#1181550) - BR pytest and matplotlib for tests * Thu Feb 04 2016 Fedora Release Engineering - 1.5.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Tue Nov 10 2015 Fedora Release Engineering - 1.5.2-3 - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 * Thu Jun 18 2015 Fedora Release Engineering - 1.5.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Mon Jan 5 2015 Volker Fröhlich - 1.5.2-1 - New upstream release * Sat Dec 6 2014 Volker Fröhlich - 1.5.1-1 - New upstream release * Tue Nov 4 2014 Volker Fröhlich - 1.4.4-1 - New upstream release * Wed Oct 8 2014 Volker Fröhlich - 1.4.3-1 - New upstream release * Tue Sep 30 2014 Volker Fröhlich - 1.4.2-1 - New upstream release * Wed Sep 24 2014 Volker Fröhlich - 1.4.1-1 - New upstream release * Thu Sep 18 2014 Volker Fröhlich - 1.4.0-1 - New upstream release - Add BR on Cython/python3-cython and build the C extension - Update URL - Remove the obsolete encoding patch * Sun Aug 17 2014 Fedora Release Engineering - 1.3.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild * Sat Jun 07 2014 Fedora Release Engineering - 1.3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Wed May 28 2014 Kalev Lember - 1.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 * Fri May 23 2014 Volker Fröhlich - 1.3.2-1 - New upstream release * Thu Apr 24 2014 Volker Fröhlich - 1.3.1-1 - New upstream release * Sat Apr 19 2014 Volker Fröhlich - 1.3.0-2 - Replace obsolete python-setuptools-devel with python-setuptools * Wed Feb 12 2014 Volker Fröhlich - 1.3.0-1 - New upstream release - Use a better summary - Add Python 3 builds - Change BR python-devel to python2-devel * Mon Sep 16 2013 Volker Fröhlich - 1.2.18-1 - New upstream release * Sun Aug 04 2013 Fedora Release Engineering - 1.2.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Sun Jan 27 2013 Volker Fröhlich - 1.2.17-1 - New upstream release * Tue Sep 18 2012 Volker Fröhlich - 1.2.16-1 - New upstream release * Sat Jul 21 2012 Fedora Release Engineering - 1.2.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Thu Jun 28 2012 Volker Fröhlich - 1.2.15-1 - New upstream release - Pyx file is no longer part of the sources, thus Cython is no longer BR - Chaintest is working fine now, drop the patch * Sun Apr 8 2012 Volker Fröhlich - 1.2.14-1 - Update for release 1.2.14 - Remove duplicate PKG-INFO file - Correct description -- pointing to README.rst now - Add patch that corrects the attribute chaining test - Tests now work fine, therefore respect their outcome - Remove ready-made _speedups.c * Sat Jan 14 2012 Fedora Release Engineering - 1.2.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Tue Aug 16 2011 Volker Fröhlich - 1.2.13-1 - Update for release 1.2.13 * Tue Aug 16 2011 Volker Fröhlich - 1.2.12-1 - Update for release 1.2.12 - Don't ship tests - Label examples as documentation * Mon Aug 15 2011 Volker Fröhlich - 1.2.11-2 - BR numpy for the tests * Mon Aug 15 2011 Ville Skyttä - 1.2.11-2 - BR geos-devel to actually build arch specific bits - Drop unneeded geos dep * Fri Aug 12 2011 Volker Fröhlich - 1.2.11-1 - Updated for 1.2.11 - Switch away from noarch - Remove useless clean section and rm in install - Debian patch to rebuild Cython .c file - Avoid private provides for .so - Extend package description * Fri Apr 01 2011 Volker Fröhlich - 1.2.9-1 - Updated for 1.2.9 - Added tests again, but ignore the results * Fri Feb 25 2011 Volker Fröhlich - 1.2.8-1 - Updated for 1.2.8 - Disable tests * Wed Feb 09 2011 Fedora Release Engineering - 1.2.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Sat Nov 27 2010 Volker Fröhlich - 1.2.7-2 - Explained excluded files; added check section * Wed Nov 24 2010 Volker Fröhlich - 1.2.7-1 - Initial package for Fedora