Files
termux-packages/x11-packages/qt5-qtwebengine/0030-fix-six-for-python-312.patch
termux-pacman-bot 9ec5260572 bump(x11/qt5-qtwebengine): 5.15.19 (#25944)
* fix(x11/qt5-qtwebengine): fix build with NDK r28c

- Copy and paste patch for newer libc++ from FreeBSD 0ddd6468fb

* bump(x11/qt5-qtwebengine): 5.15.19

- Also rebuild after `libvpx` 1.15.2 https://github.com/termux/termux-packages/pull/25916
2025-09-02 23:05:21 +00:00

58 lines
1.7 KiB
Diff

Patch from Arch Linux: https://gitlab.archlinux.org/archlinux/packaging/packages/qt5-webengine/-/blob/ee7fd7639a1ab69fc9b1eeff3dabdb52c8bd231f/python3.12-six.patch
Cherry-pick from https://github.com/benjaminp/six/commit/25916292d96f5f09
--- a/src/3rdparty/chromium/third_party/protobuf/third_party/six/six.py
+++ b/src/3rdparty/chromium/third_party/protobuf/third_party/six/six.py
@@ -71,6 +71,11 @@ else:
MAXSIZE = int((1 << 63) - 1)
del X
+if PY34:
+ from importlib.util import spec_from_loader
+else:
+ spec_from_loader = None
+
def _add_doc(func, doc):
"""Add documentation to a function."""
@@ -186,6 +191,11 @@ class _SixMetaPathImporter(object):
return self
return None
+ def find_spec(self, fullname, path, target=None):
+ if fullname in self.known_modules:
+ return spec_from_loader(fullname, self)
+ return None
+
def __get_module(self, fullname):
try:
return self.known_modules[fullname]
--- a/src/3rdparty/chromium/tools/grit/third_party/six/__init__.py
+++ b/src/3rdparty/chromium/tools/grit/third_party/six/__init__.py
@@ -71,6 +71,11 @@ else:
MAXSIZE = int((1 << 63) - 1)
del X
+if PY34:
+ from importlib.util import spec_from_loader
+else:
+ spec_from_loader = None
+
def _add_doc(func, doc):
"""Add documentation to a function."""
@@ -186,6 +191,11 @@ class _SixMetaPathImporter(object):
return self
return None
+ def find_spec(self, fullname, path, target=None):
+ if fullname in self.known_modules:
+ return spec_from_loader(fullname, self)
+ return None
+
def __get_module(self, fullname):
try:
return self.known_modules[fullname]