From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 53922158090 for ; Sat, 5 Oct 2024 08:28:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D83CE29D6; Sat, 5 Oct 2024 08:28:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8609EE29D6 for ; Sat, 5 Oct 2024 08:28:35 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CCAED34312E for ; Sat, 5 Oct 2024 08:28:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D8841FBE for ; Sat, 5 Oct 2024 08:28:33 +0000 (UTC) From: "Michał Górny" 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" Message-ID: <1728116906.4a4aba1ecd0b9b8e39bc5715fb11b48f87b01d08.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_rc3.ebuild X-VCS-Directories: dev-lang/python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4a4aba1ecd0b9b8e39bc5715fb11b48f87b01d08 X-VCS-Branch: master Date: Sat, 5 Oct 2024 08:28:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f4931617-a899-46af-bb55-547ba9b186c6 X-Archives-Hash: a4a800953eef0c198c994c01b7eea7da commit: 4a4aba1ecd0b9b8e39bc5715fb11b48f87b01d08 Author: Michał Górny gentoo org> AuthorDate: Sat Oct 5 08:21:36 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Oct 5 08:28:26 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a4aba1e dev-lang/python: Run check-reqs for PGO builds too Extend check-reqs to USE=pgo without FEATURES=test, as we tend to run the same largefile tests in both cases. Signed-off-by: Michał Górny gentoo.org> dev-lang/python/python-3.13.0_rc3.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-lang/python/python-3.13.0_rc3.ebuild b/dev-lang/python/python-3.13.0_rc3.ebuild index c97f9faaa41a..c71af7471360 100644 --- a/dev-lang/python/python-3.13.0_rc3.ebuild +++ b/dev-lang/python/python-3.13.0_rc3.ebuild @@ -120,7 +120,9 @@ declare -rA PYTHON_KERNEL_CHECKS=( ) pkg_pretend() { - use test && check-reqs_pkg_pretend + if use pgo || use test; then + check-reqs_pkg_pretend + fi if ! use gil || use jit; then ewarn "USE=-gil and USE=jit flags are considered experimental upstream. Using" @@ -134,8 +136,9 @@ pkg_pretend() { pkg_setup() { if [[ ${MERGE_TYPE} != binary ]]; then use jit && llvm-r1_pkg_setup - use test && check-reqs_pkg_setup if use test || use pgo; then + check-reqs_pkg_setup + local CONFIG_CHECK for f in "${!PYTHON_KERNEL_CHECKS[@]}"; do CONFIG_CHECK+="~${f} "