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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 11364158042 for ; Mon, 28 Oct 2024 19:44:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 572BEE08AB; Mon, 28 Oct 2024 19:44:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 3E716E08AB for ; Mon, 28 Oct 2024 19:44:38 +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 7E3E8343085 for ; Mon, 28 Oct 2024 19:44:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E1E0AE7 for ; Mon, 28 Oct 2024 19:44:36 +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: <1730144671.b7ff4bc8b51d0e0c70cad78e6db27b800be913c9.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.11.10_p1.ebuild dev-lang/python/python-3.12.7_p1.ebuild 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-r100.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: b7ff4bc8b51d0e0c70cad78e6db27b800be913c9 X-VCS-Branch: master Date: Mon, 28 Oct 2024 19:44:36 +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: 3bc6351c-3c0c-4a7b-b6ea-1e9fb47d5592 X-Archives-Hash: 5658a3d7b80e1c57b387c47d61fc2eac commit: b7ff4bc8b51d0e0c70cad78e6db27b800be913c9 Author: Michał Górny gentoo org> AuthorDate: Mon Oct 28 19:33:52 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 28 19:44:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7ff4bc8 dev-lang/python: Skip test_gdb on ppc64 & sparc The gdb tests are failing on devboxes. They were previously covered by the unconditional `-x test_gdb` but that's been narrowed to `-x test_pretty_print`, missing that other tests fail on these architectures. Signed-off-by: Michał Górny gentoo.org> dev-lang/python/python-3.11.10_p1.ebuild | 2 ++ dev-lang/python/python-3.12.7_p1.ebuild | 2 ++ 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-r100.ebuild | 2 ++ dev-lang/python/python-3.14.0_alpha1.ebuild | 2 ++ 6 files changed, 12 insertions(+) diff --git a/dev-lang/python/python-3.11.10_p1.ebuild b/dev-lang/python/python-3.11.10_p1.ebuild index 3fc2272abc67..89a7bd307b68 100644 --- a/dev-lang/python/python-3.11.10_p1.ebuild +++ b/dev-lang/python/python-3.11.10_p1.ebuild @@ -255,6 +255,7 @@ src_configure() { powerpc64-*) # big endian COMMON_TEST_SKIPS+=( -x test_descr + -x test_gdb ) ;; riscv*) @@ -270,6 +271,7 @@ src_configure() { -x test_ctypes -x test_descr + -x test_gdb # bug 931908 -x test_exceptions ) diff --git a/dev-lang/python/python-3.12.7_p1.ebuild b/dev-lang/python/python-3.12.7_p1.ebuild index 840cc5b45017..57c5914cd26f 100644 --- a/dev-lang/python/python-3.12.7_p1.ebuild +++ b/dev-lang/python/python-3.12.7_p1.ebuild @@ -258,6 +258,7 @@ src_configure() { powerpc64-*) # big endian COMMON_TEST_SKIPS+=( -x test_descr + -x test_gdb ) ;; riscv*) @@ -273,6 +274,7 @@ src_configure() { -x test_ctypes -x test_descr + -x test_gdb # bug 931908 -x test_exceptions ) diff --git a/dev-lang/python/python-3.13.0-r100.ebuild b/dev-lang/python/python-3.13.0-r100.ebuild index b71dde63eb03..58686dbacc88 100644 --- a/dev-lang/python/python-3.13.0-r100.ebuild +++ b/dev-lang/python/python-3.13.0-r100.ebuild @@ -293,6 +293,7 @@ src_configure() { powerpc64-*) # big endian COMMON_TEST_SKIPS+=( -x test_descr + -x test_gdb ) ;; riscv*) @@ -308,6 +309,7 @@ src_configure() { -x test_ctypes -x test_descr + -x test_gdb # bug 931908 -x test_exceptions ) diff --git a/dev-lang/python/python-3.13.0.ebuild b/dev-lang/python/python-3.13.0.ebuild index 74cbac81ba9e..3bceddd3d86f 100644 --- a/dev-lang/python/python-3.13.0.ebuild +++ b/dev-lang/python/python-3.13.0.ebuild @@ -295,6 +295,7 @@ src_configure() { powerpc64-*) # big endian COMMON_TEST_SKIPS+=( -x test_descr + -x test_gdb ) ;; riscv*) @@ -310,6 +311,7 @@ src_configure() { -x test_ctypes -x test_descr + -x test_gdb # bug 931908 -x test_exceptions ) diff --git a/dev-lang/python/python-3.14.0_alpha1-r100.ebuild b/dev-lang/python/python-3.14.0_alpha1-r100.ebuild index 9c556e225cfc..6f5aada1411d 100644 --- a/dev-lang/python/python-3.14.0_alpha1-r100.ebuild +++ b/dev-lang/python/python-3.14.0_alpha1-r100.ebuild @@ -294,6 +294,7 @@ src_configure() { powerpc64-*) # big endian COMMON_TEST_SKIPS+=( -x test_descr + -x test_gdb ) ;; riscv*) @@ -309,6 +310,7 @@ src_configure() { -x test_ctypes -x test_descr + -x test_gdb # bug 931908 -x test_exceptions ) diff --git a/dev-lang/python/python-3.14.0_alpha1.ebuild b/dev-lang/python/python-3.14.0_alpha1.ebuild index acbfbfe8de8e..7f9f751bb5f4 100644 --- a/dev-lang/python/python-3.14.0_alpha1.ebuild +++ b/dev-lang/python/python-3.14.0_alpha1.ebuild @@ -296,6 +296,7 @@ src_configure() { powerpc64-*) # big endian COMMON_TEST_SKIPS+=( -x test_descr + -x test_gdb ) ;; riscv*) @@ -311,6 +312,7 @@ src_configure() { -x test_ctypes -x test_descr + -x test_gdb # bug 931908 -x test_exceptions )