From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1545042-garchives=archives.gentoo.org@lists.gentoo.org> 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 ACCD015800A for <garchives@archives.gentoo.org>; Sat, 12 Aug 2023 01:11:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9DDB2BC015; Sat, 12 Aug 2023 01:11:43 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0E3B2BC015 for <gentoo-commits@lists.gentoo.org>; Sat, 12 Aug 2023 01:11:43 +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 B222534067D for <gentoo-commits@lists.gentoo.org>; Sat, 12 Aug 2023 01:11:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED970B8B for <gentoo-commits@lists.gentoo.org>; Sat, 12 Aug 2023 01:11:40 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1691802682.851391700b66ab56c1fa516afc7b3d24e302ed63.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/mercurial/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/mercurial/mercurial-6.4.4.ebuild dev-vcs/mercurial/mercurial-6.5.ebuild dev-vcs/mercurial/mercurial-9999.ebuild X-VCS-Directories: dev-vcs/mercurial/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 851391700b66ab56c1fa516afc7b3d24e302ed63 X-VCS-Branch: master Date: Sat, 12 Aug 2023 01:11:40 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: af9fe901-52ab-43a1-a955-80550624f43b X-Archives-Hash: dcb40b23d1c0f0fb85ffc632ae7c5651 commit: 851391700b66ab56c1fa516afc7b3d24e302ed63 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Aug 12 01:11:02 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Aug 12 01:11:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85139170 dev-vcs/mercurial: disable py3.12 Broken at runtime as tries to import 'imp'. Bug: https://bugs.gentoo.org/912155 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-vcs/mercurial/mercurial-6.4.4.ebuild | 2 +- dev-vcs/mercurial/mercurial-6.5.ebuild | 2 +- dev-vcs/mercurial/mercurial-9999.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-vcs/mercurial/mercurial-6.4.4.ebuild b/dev-vcs/mercurial/mercurial-6.4.4.ebuild index 408c952f82e3..44e2cf2cb430 100644 --- a/dev-vcs/mercurial/mercurial-6.4.4.ebuild +++ b/dev-vcs/mercurial/mercurial-6.4.4.ebuild @@ -6,7 +6,7 @@ EAPI=8 CARGO_OPTIONAL=1 DISTUTILS_EXT=1 DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="threads(+)" CRATES=" diff --git a/dev-vcs/mercurial/mercurial-6.5.ebuild b/dev-vcs/mercurial/mercurial-6.5.ebuild index 10706551f157..57bda0ffce8c 100644 --- a/dev-vcs/mercurial/mercurial-6.5.ebuild +++ b/dev-vcs/mercurial/mercurial-6.5.ebuild @@ -6,7 +6,7 @@ EAPI=8 CARGO_OPTIONAL=1 DISTUTILS_USE_PEP517="setuptools" DISTUTILS_EXT=1 -PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="threads(+)" CRATES=" diff --git a/dev-vcs/mercurial/mercurial-9999.ebuild b/dev-vcs/mercurial/mercurial-9999.ebuild index 73929298674e..37ad4921e53e 100644 --- a/dev-vcs/mercurial/mercurial-9999.ebuild +++ b/dev-vcs/mercurial/mercurial-9999.ebuild @@ -6,7 +6,7 @@ EAPI=8 CARGO_OPTIONAL=1 DISTUTILS_USE_PEP517="setuptools" DISTUTILS_EXT=1 -PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="threads(+)" inherit bash-completion-r1 cargo elisp-common distutils-r1 mercurial flag-o-matic multiprocessing