From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1535973-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 315A515800D for <garchives@archives.gentoo.org>; Sat, 8 Jul 2023 18:29:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED878E08C9; Sat, 8 Jul 2023 18:29:16 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9087E08C9 for <gentoo-commits@lists.gentoo.org>; Sat, 8 Jul 2023 18:29:16 +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 292B0340E0A for <gentoo-commits@lists.gentoo.org>; Sat, 8 Jul 2023 18:29:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 888F4AC6 for <gentoo-commits@lists.gentoo.org>; Sat, 8 Jul 2023 18:29:14 +0000 (UTC) From: "Michał Górny" <mgorny@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, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1688840950.da2f445a42895c1a47eeafda7340449c8b9bbe68.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.12.0_beta3.ebuild X-VCS-Directories: dev-lang/python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: da2f445a42895c1a47eeafda7340449c8b9bbe68 X-VCS-Branch: master Date: Sat, 8 Jul 2023 18:29:14 +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: 7e2ed5d3-3957-472e-9bd0-097ca8038fcd X-Archives-Hash: bf6dddf216e1466a7aab8c9832114376 commit: da2f445a42895c1a47eeafda7340449c8b9bbe68 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Jul 8 18:28:22 2023 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Jul 8 18:29:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da2f445a dev-lang/python: Correct dev-python/ensurepip-* dependencies Make USE=ensurepip depend on dev-python/ensurepip-pip specifically since this is the only package that is actually required by ensurepip. Adjust test dependencies to include dev-python/ensurepip-setuptools and dev-python/ensurepip-wheel as well, as it is required by additional tests required by Python 3.12. Closes: https://bugs.gentoo.org/909151 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-lang/python/python-3.12.0_beta3.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-lang/python/python-3.12.0_beta3.ebuild b/dev-lang/python/python-3.12.0_beta3.ebuild index a413c1ef6a6c..8c769c87e1b7 100644 --- a/dev-lang/python/python-3.12.0_beta3.ebuild +++ b/dev-lang/python/python-3.12.0_beta3.ebuild @@ -50,7 +50,7 @@ RDEPEND=" >=sys-libs/zlib-1.1.3:= virtual/libcrypt:= virtual/libintl - ensurepip? ( dev-python/ensurepip-wheels ) + ensurepip? ( dev-python/ensurepip-pip ) gdbm? ( sys-libs/gdbm:=[berkdb] ) kernel_linux? ( sys-apps/util-linux:= ) ncurses? ( >=sys-libs/ncurses-5.2:= ) @@ -73,7 +73,9 @@ DEPEND=" bluetooth? ( net-wireless/bluez ) test? ( app-arch/xz-utils[extra-filters(+)] - dev-python/ensurepip-wheels + dev-python/ensurepip-pip + dev-python/ensurepip-setuptools + dev-python/ensurepip-wheel ) valgrind? ( dev-util/valgrind ) "