From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 1496F158176 for ; Sat, 11 Oct 2025 08:00:33 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 07A4D341036 for ; Sat, 11 Oct 2025 08:00:33 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id F0B001102C9; Sat, 11 Oct 2025 08:00:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E78071102C9 for ; Sat, 11 Oct 2025 08:00:31 +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 A34DE340EE4 for ; Sat, 11 Oct 2025 08:00:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E12CA274C for ; Sat, 11 Oct 2025 08:00:29 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1760169560.fd2f968a380fe822f93ed76d63416f83041e3a89.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/python/python-0.3.14.0.ebuild dev-lang/python/python-0.3.14.9999.ebuild dev-lang/python/python-0.3.15.9999.ebuild dev-lang/python/python-3.14.0.ebuild dev-lang/python/python-3.14.9999.ebuild dev-lang/python/python-3.15.9999.ebuild X-VCS-Directories: dev-lang/python/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fd2f968a380fe822f93ed76d63416f83041e3a89 X-VCS-Branch: master Date: Sat, 11 Oct 2025 08:00:29 +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: 1f9f0961-e5ab-47c2-8bcf-bba555baaa24 X-Archives-Hash: d54a2c207a5623f351b7f3e6f326eb42 commit: fd2f968a380fe822f93ed76d63416f83041e3a89 Author: Sam James gentoo org> AuthorDate: Sat Oct 11 07:59:20 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 11 07:59:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd2f968a dev-lang/python: skip test_pyrepl test for PGO I guess depending on the way Clang's profiling works, it may not save the equivalent of .gcov files cleanly on exit (or regularly flush them to disk) if killed. Closes: https://bugs.gentoo.org/964023 Signed-off-by: Sam James gentoo.org> dev-lang/python/python-0.3.14.0.ebuild | 4 ++++ dev-lang/python/python-0.3.14.9999.ebuild | 4 ++++ dev-lang/python/python-0.3.15.9999.ebuild | 4 ++++ dev-lang/python/python-3.14.0.ebuild | 4 ++++ dev-lang/python/python-3.14.9999.ebuild | 4 ++++ dev-lang/python/python-3.15.9999.ebuild | 4 ++++ 6 files changed, 24 insertions(+) diff --git a/dev-lang/python/python-0.3.14.0.ebuild b/dev-lang/python/python-0.3.14.0.ebuild index 1c94364453a7..efe2d8cadb93 100644 --- a/dev-lang/python/python-0.3.14.0.ebuild +++ b/dev-lang/python/python-0.3.14.0.ebuild @@ -360,6 +360,10 @@ src_configure() { # Hangs (actually runs indefinitely executing itself w/ many cpython builds) # bug #900429 -x test_tools + + # Test terminates abruptly which corrupts written profile data + # bug #964023 + -x test_pyrepl ) if has_version "app-arch/rpm" ; then diff --git a/dev-lang/python/python-0.3.14.9999.ebuild b/dev-lang/python/python-0.3.14.9999.ebuild index a82f1b2c6f4b..e0b4a11ba9b4 100644 --- a/dev-lang/python/python-0.3.14.9999.ebuild +++ b/dev-lang/python/python-0.3.14.9999.ebuild @@ -351,6 +351,10 @@ src_configure() { # Hangs (actually runs indefinitely executing itself w/ many cpython builds) # bug #900429 -x test_tools + + # Test terminates abruptly which corrupts written profile data + # bug #964023 + -x test_pyrepl ) if has_version "app-arch/rpm" ; then diff --git a/dev-lang/python/python-0.3.15.9999.ebuild b/dev-lang/python/python-0.3.15.9999.ebuild index 126aefe73c6b..bcd5eadcb57f 100644 --- a/dev-lang/python/python-0.3.15.9999.ebuild +++ b/dev-lang/python/python-0.3.15.9999.ebuild @@ -346,6 +346,10 @@ src_configure() { # Hangs (actually runs indefinitely executing itself w/ many cpython builds) # bug #900429 -x test_tools + + # Test terminates abruptly which corrupts written profile data + # bug #964023 + -x test_pyrepl ) if has_version "app-arch/rpm" ; then diff --git a/dev-lang/python/python-3.14.0.ebuild b/dev-lang/python/python-3.14.0.ebuild index 1ce0497e573d..fecf2ad12efb 100644 --- a/dev-lang/python/python-3.14.0.ebuild +++ b/dev-lang/python/python-3.14.0.ebuild @@ -377,6 +377,10 @@ src_configure() { # Hangs (actually runs indefinitely executing itself w/ many cpython builds) # bug #900429 -x test_tools + + # Test terminates abruptly which corrupts written profile data + # bug #964023 + -x test_pyrepl ) if has_version "app-arch/rpm" ; then diff --git a/dev-lang/python/python-3.14.9999.ebuild b/dev-lang/python/python-3.14.9999.ebuild index f40e1772bf94..614bb3b9d776 100644 --- a/dev-lang/python/python-3.14.9999.ebuild +++ b/dev-lang/python/python-3.14.9999.ebuild @@ -363,6 +363,10 @@ src_configure() { # Hangs (actually runs indefinitely executing itself w/ many cpython builds) # bug #900429 -x test_tools + + # Test terminates abruptly which corrupts written profile data + # bug #964023 + -x test_pyrepl ) if has_version "app-arch/rpm" ; then diff --git a/dev-lang/python/python-3.15.9999.ebuild b/dev-lang/python/python-3.15.9999.ebuild index fe95c1ff7303..36f2b24f1596 100644 --- a/dev-lang/python/python-3.15.9999.ebuild +++ b/dev-lang/python/python-3.15.9999.ebuild @@ -358,6 +358,10 @@ src_configure() { # Hangs (actually runs indefinitely executing itself w/ many cpython builds) # bug #900429 -x test_tools + + # Test terminates abruptly which corrupts written profile data + # bug #964023 + -x test_pyrepl ) if has_version "app-arch/rpm" ; then