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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF5751581CF for ; Thu, 12 Jun 2025 13:32:11 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A95013423E7 for ; Thu, 12 Jun 2025 13:32:11 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id ADBD21104DB; Thu, 12 Jun 2025 13:32:10 +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 A4ACD1104DB for ; Thu, 12 Jun 2025 13:32:10 +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 5FCAC3423E7 for ; Thu, 12 Jun 2025 13:32:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95918651 for ; Thu, 12 Jun 2025 13:32:08 +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: <1749735065.738c6f3d837e63d38f4f1182f3e116d94d8830bb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygobject/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pygobject/pygobject-3.50.1.ebuild X-VCS-Directories: dev-python/pygobject/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 738c6f3d837e63d38f4f1182f3e116d94d8830bb X-VCS-Branch: master Date: Thu, 12 Jun 2025 13:32:08 +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: 69fa3518-0270-41f1-bdd1-e6c33d7dbb88 X-Archives-Hash: 15b43ce5b88e9fd77213c4cfd4b54509 commit: 738c6f3d837e63d38f4f1182f3e116d94d8830bb Author: Sam James gentoo org> AuthorDate: Thu Jun 12 13:31:05 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 12 13:31:05 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=738c6f3d dev-python/pygobject: enable py3.14 in 3.50.1 Skip another test on top of what we do in 3.52.3. Not ideal but necessary after 8f77956b94905fe72e58efb1625d16a2f3af94c6 and better than recursively dropping py3.14 I think. Signed-off-by: Sam James gentoo.org> dev-python/pygobject/pygobject-3.50.1.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-python/pygobject/pygobject-3.50.1.ebuild b/dev-python/pygobject/pygobject-3.50.1.ebuild index c0e6bbecf434..77e6355e9be9 100644 --- a/dev-python/pygobject/pygobject-3.50.1.ebuild +++ b/dev-python/pygobject/pygobject-3.50.1.ebuild @@ -6,8 +6,7 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=no GNOME_TARBALL_SUFFIX="gz" -# py3.14: https://gitlab.gnome.org/GNOME/pygobject/-/issues/694 -PYTHON_COMPAT=( python3_{11..13} pypy3_11 ) +PYTHON_COMPAT=( python3_{11..14} pypy3_11 ) inherit gnome.org meson virtualx xdg distutils-r1 @@ -65,6 +64,12 @@ python_test() { local -x GIO_USE_VOLUME_MONITOR="unix" # prevent udisks-related failures in chroots, bug #449484 local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 local -x XDG_CACHE_HOME="${T}/${EPYTHON}" + + if [[ ${EPYTHON} == python3.14* ]] ; then + # https://gitlab.gnome.org/GNOME/pygobject/-/issues/694 + local -x PYTEST_ADDOPTS="-k 'not (ref_count or has_two_refs or iteration_refs)'" + fi + meson_src_test --timeout-multiplier 3 || die "test failed for ${EPYTHON}" }