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 D7EAE1584AD for ; Mon, 14 Apr 2025 05:49:57 +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 C0B903430E5 for ; Mon, 14 Apr 2025 05:49:57 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BC5FD1104B0; Mon, 14 Apr 2025 05:49:56 +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 bobolink.gentoo.org (Postfix) with ESMTPS id AE3331104B0 for ; Mon, 14 Apr 2025 05:49:56 +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 616403430E7 for ; Mon, 14 Apr 2025 05:49:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7FC21758 for ; Mon, 14 Apr 2025 05:49:54 +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: <1744609770.91f276f6fbf45fdf34c599d7a571a3a1ca20908c.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.12.ebuild dev-lang/python/python-3.12.10.ebuild dev-lang/python/python-3.13.3-r100.ebuild dev-lang/python/python-3.13.3.ebuild dev-lang/python/python-3.14.0_alpha7-r100.ebuild dev-lang/python/python-3.14.0_alpha7.ebuild X-VCS-Directories: dev-lang/python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 91f276f6fbf45fdf34c599d7a571a3a1ca20908c X-VCS-Branch: master Date: Mon, 14 Apr 2025 05:49:54 +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: 57c19049-0817-4076-8323-78da334233a8 X-Archives-Hash: 6c1412eae5715871201529e814f2da66 commit: 91f276f6fbf45fdf34c599d7a571a3a1ca20908c Author: Michał Górny gentoo org> AuthorDate: Mon Apr 14 05:49:30 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 14 05:49:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91f276f6 dev-lang/python: Skip test_gdb on arm* Signed-off-by: Michał Górny gentoo.org> dev-lang/python/python-3.11.12.ebuild | 5 +++++ dev-lang/python/python-3.12.10.ebuild | 5 +++++ dev-lang/python/python-3.13.3-r100.ebuild | 5 +++++ dev-lang/python/python-3.13.3.ebuild | 5 +++++ dev-lang/python/python-3.14.0_alpha7-r100.ebuild | 5 +++++ dev-lang/python/python-3.14.0_alpha7.ebuild | 5 +++++ 6 files changed, 30 insertions(+) diff --git a/dev-lang/python/python-3.11.12.ebuild b/dev-lang/python/python-3.11.12.ebuild index 7cd31e6eeb42..ff6ee57dda6f 100644 --- a/dev-lang/python/python-3.11.12.ebuild +++ b/dev-lang/python/python-3.11.12.ebuild @@ -245,6 +245,11 @@ src_configure() { -x test_strtod ) ;; + arm*) + COMMON_TEST_SKIPS+=( + -x test_gdb + ) + ;; mips*) COMMON_TEST_SKIPS+=( -x test_ctypes diff --git a/dev-lang/python/python-3.12.10.ebuild b/dev-lang/python/python-3.12.10.ebuild index 68ea197c567d..f4a9569ac1ec 100644 --- a/dev-lang/python/python-3.12.10.ebuild +++ b/dev-lang/python/python-3.12.10.ebuild @@ -248,6 +248,11 @@ src_configure() { -x test_strtod ) ;; + arm*) + COMMON_TEST_SKIPS+=( + -x test_gdb + ) + ;; mips*) COMMON_TEST_SKIPS+=( -x test_ctypes diff --git a/dev-lang/python/python-3.13.3-r100.ebuild b/dev-lang/python/python-3.13.3-r100.ebuild index f2f4b2b6ff30..a02ac6833e59 100644 --- a/dev-lang/python/python-3.13.3-r100.ebuild +++ b/dev-lang/python/python-3.13.3-r100.ebuild @@ -283,6 +283,11 @@ src_configure() { -x test_strtod ) ;; + arm*) + COMMON_TEST_SKIPS+=( + -x test_gdb + ) + ;; hppa*) COMMON_TEST_SKIPS+=( -x test_gdb diff --git a/dev-lang/python/python-3.13.3.ebuild b/dev-lang/python/python-3.13.3.ebuild index d33f2971cbf8..fc5eb4346c67 100644 --- a/dev-lang/python/python-3.13.3.ebuild +++ b/dev-lang/python/python-3.13.3.ebuild @@ -285,6 +285,11 @@ src_configure() { -x test_strtod ) ;; + arm*) + COMMON_TEST_SKIPS+=( + -x test_gdb + ) + ;; hppa*) COMMON_TEST_SKIPS+=( -x test_gdb diff --git a/dev-lang/python/python-3.14.0_alpha7-r100.ebuild b/dev-lang/python/python-3.14.0_alpha7-r100.ebuild index 2abe01749d3a..eff6e9f28d12 100644 --- a/dev-lang/python/python-3.14.0_alpha7-r100.ebuild +++ b/dev-lang/python/python-3.14.0_alpha7-r100.ebuild @@ -284,6 +284,11 @@ src_configure() { -x test_strtod ) ;; + arm*) + COMMON_TEST_SKIPS+=( + -x test_gdb + ) + ;; hppa*) COMMON_TEST_SKIPS+=( -x test_gdb diff --git a/dev-lang/python/python-3.14.0_alpha7.ebuild b/dev-lang/python/python-3.14.0_alpha7.ebuild index f4da576cf95f..53ffce4948b0 100644 --- a/dev-lang/python/python-3.14.0_alpha7.ebuild +++ b/dev-lang/python/python-3.14.0_alpha7.ebuild @@ -286,6 +286,11 @@ src_configure() { -x test_strtod ) ;; + arm*) + COMMON_TEST_SKIPS+=( + -x test_gdb + ) + ;; hppa*) COMMON_TEST_SKIPS+=( -x test_gdb