summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-10-04 17:47:24 +0200
committerConrad Kostecki <conikost@gentoo.org>2023-10-04 23:44:16 +0200
commit93d1dfca086bd2d4cca9d00d5952c77d38e902c6 (patch)
treeb65f2b35949814e384712b95461b719fcd7ac3c4 /dev-python/shiboken2
parentdev-scheme/guile-ssh: remove unused patch (diff)
downloadgentoo-93d1dfca086bd2d4cca9d00d5952c77d38e902c6.tar.gz
gentoo-93d1dfca086bd2d4cca9d00d5952c77d38e902c6.tar.bz2
gentoo-93d1dfca086bd2d4cca9d00d5952c77d38e902c6.zip
dev-python/shiboken2: remove unused patches
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/33189 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-python/shiboken2')
-rw-r--r--dev-python/shiboken2/files/shiboken2-5.15.6-fix-pyside2-compile.patch11
-rw-r--r--dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch11
2 files changed, 0 insertions, 22 deletions
diff --git a/dev-python/shiboken2/files/shiboken2-5.15.6-fix-pyside2-compile.patch b/dev-python/shiboken2/files/shiboken2-5.15.6-fix-pyside2-compile.patch
deleted file mode 100644
index 1af6ad5aef7d..000000000000
--- a/dev-python/shiboken2/files/shiboken2-5.15.6-fix-pyside2-compile.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/libshiboken/embed/signature_bootstrap.py 2022-09-08 23:54:19.419724864 +0200
-+++ b/libshiboken/embed/signature_bootstrap.py 2022-09-08 23:55:04.494277606 +0200
-@@ -211,7 +211,7 @@
- return self if self._mod2path.get(fullname) else None
-
- def load_module(self, fullname):
-- import importlib
-+ import importlib.machinery
- import sys
-
- filename = self._mod2path.get(fullname)
diff --git a/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch b/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch
deleted file mode 100644
index 143eb24a103a..000000000000
--- a/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/libshiboken/pep384impl.cpp 2022-09-23 08:47:20.000000000 +0200
-+++ b/libshiboken/pep384impl.cpp 2023-01-04 08:07:17.000000000 +0100
-@@ -751,7 +751,7 @@
- #endif // IS_PY2
- Shiboken::AutoDecRef privateobj(PyObject_GetAttr(
- reinterpret_cast<PyObject *>(Py_TYPE(self)), Shiboken::PyMagicName::name()));
--#ifndef Py_LIMITED_API
-+#if !defined(Py_LIMITED_API) && PY_VERSION_HEX < 0x03010000
- return _Py_Mangle(privateobj, name);
- #else
- // PYSIDE-1436: _Py_Mangle is no longer exposed; implement it always.