From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1680570-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BA4C4158042 for <garchives@archives.gentoo.org>; Wed, 16 Oct 2024 14:42:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D31DE07C5; Wed, 16 Oct 2024 14:42:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 38709E07C5 for <gentoo-commits@lists.gentoo.org>; Wed, 16 Oct 2024 14:42:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6C1CF342FAE for <gentoo-commits@lists.gentoo.org>; Wed, 16 Oct 2024 14:42:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C72F11E06 for <gentoo-commits@lists.gentoo.org>; Wed, 16 Oct 2024 14:42:12 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1729089727.0f07b98d8745bd805d6ed9ab433504916e3fae0f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/python/python-3.13.0-r100.ebuild dev-lang/python/python-3.13.0.ebuild dev-lang/python/python-3.14.0_alpha1.ebuild X-VCS-Directories: dev-lang/python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0f07b98d8745bd805d6ed9ab433504916e3fae0f X-VCS-Branch: master Date: Wed, 16 Oct 2024 14:42:12 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7444cec6-6c10-4e4c-bafd-246dbd8caeac X-Archives-Hash: 83b1e56dc7505db3166f59e8ad86c616 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 )