summaryrefslogtreecommitdiff
path: root/dev-python/meson-python/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-10-07 06:20:30 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-10-07 06:20:30 +0000
commitac6999787ec79739d8811bc31b14b4baf31bfbd3 (patch)
treea18ad86b3893407bf4854c7004f3bd19ef2c2088 /dev-python/meson-python/files
parent7197eaf3d967fb403bc29afaa7d7592e60e2c319 (diff)
downloadbaldeagleos-repo-ac6999787ec79739d8811bc31b14b4baf31bfbd3.tar.gz
baldeagleos-repo-ac6999787ec79739d8811bc31b14b4baf31bfbd3.tar.xz
baldeagleos-repo-ac6999787ec79739d8811bc31b14b4baf31bfbd3.zip
Adding metadata
Diffstat (limited to 'dev-python/meson-python/files')
-rw-r--r--dev-python/meson-python/files/meson-python-0.13.2_Mach-O_bundle.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-python/meson-python/files/meson-python-0.13.2_Mach-O_bundle.patch b/dev-python/meson-python/files/meson-python-0.13.2_Mach-O_bundle.patch
deleted file mode 100644
index 2531c93f41e2..000000000000
--- a/dev-python/meson-python/files/meson-python-0.13.2_Mach-O_bundle.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Support .bundle python modules at Prefix/macOS.
-
-Not forwarding to upstream because we are reflecting on the naming
-scheme of plugin modules on Prefix/macOS.
-
-Bug: https://bugs.gentoo.org/910401
-Signed-off-by: Benda Xu <heroxbd@gentoo.org>
-
-Index: meson-python-0.13.2/mesonpy/__init__.py
-===================================================================
---- meson-python-0.13.2.orig/mesonpy/__init__.py
-+++ meson-python-0.13.2/mesonpy/__init__.py
-@@ -129,7 +129,7 @@ _STYLES = _init_colors() # holds the co
-
- _SUFFIXES = importlib.machinery.all_suffixes()
- _EXTENSION_SUFFIXES = importlib.machinery.EXTENSION_SUFFIXES
--_EXTENSION_SUFFIX_REGEX = re.compile(r'^\.(?:(?P<abi>[^.]+)\.)?(?:so|pyd|dll)$')
-+_EXTENSION_SUFFIX_REGEX = re.compile(r'^\.(?:(?P<abi>[^.]+)\.)?(?:so|pyd|dll|bundle)$')
- assert all(re.match(_EXTENSION_SUFFIX_REGEX, x) for x in _EXTENSION_SUFFIXES)
-
-