commit: 93d1dfca086bd2d4cca9d00d5952c77d38e902c6 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Wed Oct 4 15:47:24 2023 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Wed Oct 4 21:44:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93d1dfca
dev-python/shiboken2: remove unused patches Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/33189 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> .../files/shiboken2-5.15.6-fix-pyside2-compile.patch | 11 ----------- .../shiboken2/files/shiboken2-5.15.8-py-limited-api.patch | 11 ----------- 2 files changed, 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.