commit: 0f07b98d8745bd805d6ed9ab433504916e3fae0f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 16 14:18:46 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct 16 14:42:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f07b98d
dev-lang/python: Fix PYTHON_KERNEL_CHECKS to be declared globally
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-lang/python/python-3.13.0-r100.ebuild | 2 +-
dev-lang/python/python-3.13.0.ebuild | 2 +-
dev-lang/python/python-3.14.0_alpha1.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-lang/python/python-3.13.0-r100.ebuild
b/dev-lang/python/python-3.13.0-r100.ebuild
index 42c893fb4e74..5c1412b4dc79 100644
--- a/dev-lang/python/python-3.13.0-r100.ebuild
+++ b/dev-lang/python/python-3.13.0-r100.ebuild
@@ -114,7 +114,7 @@ QA_PKGCONFIG_VERSION=${PYVER%t}
# false positives -- functions specific to *BSD
QA_CONFIG_IMPL_DECL_SKIP=( chflags lchflags )
-declare -rA PYTHON_KERNEL_CHECKS=(
+declare -rgA PYTHON_KERNEL_CHECKS=(
["CROSS_MEMORY_ATTACH"]="test_external_inspection" #bug 938589
["DNOTIFY"]="test_fcntl" # bug 938662
)
diff --git a/dev-lang/python/python-3.13.0.ebuild
b/dev-lang/python/python-3.13.0.ebuild
index 9216c5683e4c..ffd6571fce4b 100644
--- a/dev-lang/python/python-3.13.0.ebuild
+++ b/dev-lang/python/python-3.13.0.ebuild
@@ -114,7 +114,7 @@ QA_PKGCONFIG_VERSION=${PYVER}
# false positives -- functions specific to *BSD
QA_CONFIG_IMPL_DECL_SKIP=( chflags lchflags )
-declare -rA PYTHON_KERNEL_CHECKS=(
+declare -rgA PYTHON_KERNEL_CHECKS=(
["CROSS_MEMORY_ATTACH"]="test_external_inspection" #bug 938589
["DNOTIFY"]="test_fcntl" # bug 938662
)
diff --git a/dev-lang/python/python-3.14.0_alpha1.ebuild
b/dev-lang/python/python-3.14.0_alpha1.ebuild
index f24f450871b4..283706da8629 100644
--- a/dev-lang/python/python-3.14.0_alpha1.ebuild
+++ b/dev-lang/python/python-3.14.0_alpha1.ebuild
@@ -116,7 +116,7 @@ QA_PKGCONFIG_VERSION=${PYVER}
# false positives -- functions specific to *BSD
QA_CONFIG_IMPL_DECL_SKIP=( chflags lchflags )
-declare -rA PYTHON_KERNEL_CHECKS=(
+declare -rgA PYTHON_KERNEL_CHECKS=(
["CROSS_MEMORY_ATTACH"]="test_external_inspection" #bug 938589
["DNOTIFY"]="test_fcntl" # bug 938662
)