summaryrefslogtreecommitdiff
path: root/dev-python/shapely/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-02-15 21:50:55 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-02-15 21:50:55 +0000
commit4540b44fc06d88f61fe449f282e93eb20581dc95 (patch)
tree5f5b5c279d1cbb7f7bfeef8ab3362677a3fa8539 /dev-python/shapely/files
parente84f6493df97257f7a0706489cd51eb0fe6f934d (diff)
downloadbaldeagleos-repo-4540b44fc06d88f61fe449f282e93eb20581dc95.tar.gz
baldeagleos-repo-4540b44fc06d88f61fe449f282e93eb20581dc95.tar.xz
baldeagleos-repo-4540b44fc06d88f61fe449f282e93eb20581dc95.zip
Adding metadata
Diffstat (limited to 'dev-python/shapely/files')
-rw-r--r--dev-python/shapely/files/shapely-2.0.2-c99.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-python/shapely/files/shapely-2.0.2-c99.patch b/dev-python/shapely/files/shapely-2.0.2-c99.patch
deleted file mode 100644
index a51fc8883103..000000000000
--- a/dev-python/shapely/files/shapely-2.0.2-c99.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-https://github.com/shapely/shapely/pull/1945
-
-From 9795506bba84e96418466ae84573c0cf8654bbeb Mon Sep 17 00:00:00 2001
-From: "Benjamin A. Beasley" <code@musicinmybrain.net>
-Date: Sun, 3 Dec 2023 11:36:36 -0500
-Subject: [PATCH] Fix incompatible pointer type passed to GEOSPolygonize_r
-
---- a/src/ufuncs.c
-+++ b/src/ufuncs.c
-@@ -2160,7 +2160,7 @@ static void polygonize_func(char** args, const npy_intp* dimensions, const npy_i
-
- GEOS_INIT;
-
-- GEOSGeometry** geoms = malloc(sizeof(void*) * dimensions[1]);
-+ const GEOSGeometry** geoms = malloc(sizeof(void*) * dimensions[1]);
- if (geoms == NULL) {
- errstate = PGERR_NO_MALLOC;
- goto finish;
-