Bas Couwenberg pushed to branch experimental at Debian GIS Project / python-shapely
Commits: 6adf634d by Bas Couwenberg at 2021-10-20T06:17:22+02:00 New upstream version 1.8~rc2 - - - - - 3acea789 by Bas Couwenberg at 2021-10-20T06:17:27+02:00 Update upstream source from tag 'upstream/1.8_rc2' Update to upstream version '1.8~rc2' with Debian dir e3f9a4ca11699652b7ae2c9d267ce34bd6354e12 - - - - - 8f0ddfbe by Bas Couwenberg at 2021-10-20T06:17:41+02:00 New upstream release candidate. - - - - - dab7c996 by Bas Couwenberg at 2021-10-20T06:18:07+02:00 Drop load_dll.patch, applied upstream. - - - - - 52fc0cc5 by Bas Couwenberg at 2021-10-20T06:19:00+02:00 Set distribution to experimental. - - - - - 7 changed files: - CHANGES.txt - debian/changelog - − debian/patches/load_dll.patch - debian/patches/series - + pyproject.toml - shapely/__init__.py - shapely/geos.py Changes: ===================================== CHANGES.txt ===================================== @@ -1,6 +1,21 @@ Changes ======= +1.8rc2 (2021-10-19) +------------------- + +Build: + +A pyproject.toml file has been added to specify build dependencies for the +_vectorized and _speedups modules (#1128). To install shapely without these +build dependencies, use the features of your build tool that disable PEP 517 +and 518 support. + +Bug fixes: + +- Part of PR #1042, which added a new primary GEOS library name to be searched + for, has been reverted by PR #1201. + 1.8rc1 (2021-10-04) ------------------- ===================================== debian/changelog ===================================== @@ -1,8 +1,10 @@ -python-shapely (1.8~rc1-1~exp2) UNRELEASED; urgency=medium +python-shapely (1.8~rc2-1~exp1) experimental; urgency=medium + * New upstream release candidate. * Ignore test failures on mips*el. + * Drop load_dll.patch, applied upstream. - -- Bas Couwenberg <[email protected]> Tue, 19 Oct 2021 07:29:20 +0200 + -- Bas Couwenberg <[email protected]> Wed, 20 Oct 2021 06:18:46 +0200 python-shapely (1.8~rc1-1~exp1) experimental; urgency=medium ===================================== debian/patches/load_dll.patch deleted ===================================== @@ -1,17 +0,0 @@ -Description: Fix loading geos_c library on Linux. - FileNotFoundError: [Errno 2] No such file or directory: b'liblibgeos_c.a' -Author: Bas Couwenberg <[email protected]> -Forwarded: https://github.com/Toblerity/Shapely/pull/1201 -Applied-Upstream: https://github.com/Toblerity/Shapely/commit/f34db15203672537fe9c1dd714e224d293843b1d - ---- a/shapely/geos.py -+++ b/shapely/geos.py -@@ -96,7 +96,7 @@ if sys.platform.startswith('linux'): - 'libgeos_c.so.1', - 'libgeos_c.so', - ] -- _lgeos = load_dll('libgeos_c', fallbacks=alt_paths) -+ _lgeos = load_dll('geos_c', fallbacks=alt_paths) - - # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen - # manpage says, "If filename is NULL, then the returned handle is for the ===================================== debian/patches/series ===================================== @@ -1,3 +1,2 @@ 0004-Remove-externally-referenced-image.patch cython3.patch -load_dll.patch ===================================== pyproject.toml ===================================== @@ -0,0 +1,2 @@ +[build-system] +requires = ["setuptools", "wheel", "cython", "oldest-supported-numpy"] ===================================== shapely/__init__.py ===================================== @@ -1 +1 @@ -__version__ = "1.8rc1" +__version__ = "1.8rc2" ===================================== shapely/geos.py ===================================== @@ -96,7 +96,7 @@ if sys.platform.startswith('linux'): 'libgeos_c.so.1', 'libgeos_c.so', ] - _lgeos = load_dll('libgeos_c', fallbacks=alt_paths) + _lgeos = load_dll('geos_c', fallbacks=alt_paths) # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen # manpage says, "If filename is NULL, then the returned handle is for the View it on GitLab: https://salsa.debian.org/debian-gis-team/python-shapely/-/compare/4767dcbe8e7d649df95ab6bd2080369d1be4eb95...52fc0cc5fc379b5897c07ed9c1a232f3d3c8c521 -- View it on GitLab: https://salsa.debian.org/debian-gis-team/python-shapely/-/compare/4767dcbe8e7d649df95ab6bd2080369d1be4eb95...52fc0cc5fc379b5897c07ed9c1a232f3d3c8c521 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
