diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-09-01 01:06:02 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-09-01 01:19:43 -0400 |
commit | 81baa4f22c4992cad8d8926985a6b81cc970eb7e (patch) | |
tree | 292f03fd3958ded4e04a4d7bcfd84d1e2c296508 /dev-python/sip/files | |
parent | dev-python/sip: add 6.7.11 (diff) | |
download | gentoo-81baa4f22c4992cad8d8926985a6b81cc970eb7e.tar.gz gentoo-81baa4f22c4992cad8d8926985a6b81cc970eb7e.tar.bz2 gentoo-81baa4f22c4992cad8d8926985a6b81cc970eb7e.zip |
dev-python/sip: drop 4.19.25-r1 (last of SLOT=0)
Debated doing last-rites (as noted in bug #896878) but,
given this is py3.10-only, any revdeps left in overlays are
likely aleady in a poor state either way.
Closes: https://bugs.gentoo.org/896878
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-python/sip/files')
-rw-r--r-- | dev-python/sip/files/sip-4.18-darwin.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-python/sip/files/sip-4.18-darwin.patch b/dev-python/sip/files/sip-4.18-darwin.patch deleted file mode 100644 index 6dd45ac024e3..000000000000 --- a/dev-python/sip/files/sip-4.18-darwin.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -ru sip-4.18.orig/siputils.py sip-4.18/siputils.py ---- sip-4.18.orig/siputils.py 2016-04-16 22:38:22.662502890 +0200 -+++ sip-4.18/siputils.py 2016-04-16 22:38:39.881551111 +0200 -@@ -946,8 +946,6 @@ - """ - if self.generator in ("MSVC", "MSVC.NET", "MSBUILD", "BMAKE"): - plib = clib + ".lib" -- elif sys.platform == "darwin" and framework: -- plib = "-framework " + clib - else: - plib = "-l" + clib - -@@ -962,8 +960,6 @@ - """ - if self.generator in ("MSVC", "MSVC.NET", "MSBUILD", "BMAKE"): - prl_name = os.path.join(self.config.qt_lib_dir, clib + ".prl") -- elif sys.platform == "darwin" and framework: -- prl_name = os.path.join(self.config.qt_lib_dir, clib + ".framework", clib + ".prl") - else: - prl_name = os.path.join(self.config.qt_lib_dir, "lib" + clib + ".prl") - -@@ -1639,7 +1635,7 @@ - if sys.platform == "win32": - ext = "pyd" - elif sys.platform == "darwin": -- ext = "so" -+ ext = "bundle" - elif sys.platform == "cygwin": - ext = "dll" - else: |