summaryrefslogtreecommitdiff
path: root/dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-06-14 21:00:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-06-14 21:00:41 +0100
commit6d188c306165730f12f6ad48a334a6b3931a4d82 (patch)
treed5247cbb2e22d5dd6c18410b8a6f8073d89ce4f3 /dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch
parent9f5eab244b3f7fe17a3a6dfc8cd0a91aeee35c69 (diff)
dev-python/wxpython : slot 3 stuck in python2, drop
Diffstat (limited to 'dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch')
-rw-r--r--dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch b/dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch
deleted file mode 100644
index 5e4221d5..00000000
--- a/dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Portage preserve-libs removes the linker name (.so) of a library but leaves
-the soname (.so.4) and realname (.so.4.0) installed. findLib searches for
-mywxlibname.* and returns true if anything is found. Disaster ensues.
-
-
---- a/wxPython/config.py
-+++ b/wxPython/config.py
-@@ -612,7 +612,7 @@ def findLib(name, libdirs):
- dirs = libdirs[:]
- for d in dirs:
- p = os.path.join(d, name)
-- if glob.glob(p+'*') != []:
-+ if glob.glob(p+'*.so') != []:
- return True
- return False
-