Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/community/python-shapely/load_dll_c.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/python-shapely/load_dll_c.patch')
-rw-r--r--community/python-shapely/load_dll_c.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/community/python-shapely/load_dll_c.patch b/community/python-shapely/load_dll_c.patch
deleted file mode 100644
index 8efc8ec5..00000000
--- a/community/python-shapely/load_dll_c.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -rauN Shapely-1.7.0/shapely/geos.py Shapely-1.7.0-load_dll-patch/shapely/geos.py
---- Shapely-1.7.0/shapely/geos.py 2019-12-31 18:31:44.000000000 +0100
-+++ Shapely-1.7.0-load_dll-patch/shapely/geos.py 2020-04-23 08:46:30.677274478 +0200
-@@ -87,7 +87,8 @@
- _lgeos = load_dll('geos_c', fallbacks=alt_paths)
- # Necessary for environments with only libc.musl
- c_alt_paths = [
-- 'libc.musl-x86_64.so.1'
-+ 'libc.musl-x86_64.so.1',
-+ 'libc.so.6'
- ]
- free = load_dll('c', fallbacks=c_alt_paths).free
- free.argtypes = [c_void_p]