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 26CF2158042 for ; Sun, 10 Nov 2024 03:03:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4289BE07EF; Sun, 10 Nov 2024 03:03:43 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 252A8E07EF for ; Sun, 10 Nov 2024 03:03: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 1D379335D77 for ; Sun, 10 Nov 2024 03:03:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78D4A1AB4 for ; Sun, 10 Nov 2024 03:03:40 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1731207775.26fb1617bbead3a20fbea645e7647ec9982cd38d.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pip/pip-24.3.1-r1.ebuild dev-python/pip/pip-24.3.1-r2.ebuild X-VCS-Directories: dev-python/pip/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 26fb1617bbead3a20fbea645e7647ec9982cd38d X-VCS-Branch: master Date: Sun, 10 Nov 2024 03:03:40 +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: f7dd5367-5cad-4fad-b176-f27067646a67 X-Archives-Hash: 3cdcf2c39202010b0e8716e65c6fbcbd commit: 26fb1617bbead3a20fbea645e7647ec9982cd38d Author: Eli Schwartz gentoo org> AuthorDate: Sun Nov 10 02:58:54 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Sun Nov 10 03:02:55 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26fb1617 dev-python/pip: fix minimum bounds for packaging dep We were waiting on an update to packaging before bumping pip (as it imports new API from packaging 24.2), but having gotten that update we didn't actually depend on it. This causes pip to fail to build, as packaging is used at build time in order to create shell completions (and obviously for testing as well) and nothing requires packaging to update at all, let alone requires it to come first in the build queue. Closes: https://bugs.gentoo.org/943156 Signed-off-by: Eli Schwartz gentoo.org> dev-python/pip/{pip-24.3.1-r1.ebuild => pip-24.3.1-r2.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/pip/pip-24.3.1-r1.ebuild b/dev-python/pip/pip-24.3.1-r2.ebuild similarity index 99% rename from dev-python/pip/pip-24.3.1-r1.ebuild rename to dev-python/pip/pip-24.3.1-r2.ebuild index fef0d38e70a2..aee9a90317e0 100644 --- a/dev-python/pip/pip-24.3.1-r1.ebuild +++ b/dev-python/pip/pip-24.3.1-r2.ebuild @@ -35,7 +35,7 @@ RDEPEND=" >=dev-python/distlib-0.3.9[${PYTHON_USEDEP}] >=dev-python/distro-1.9.0[${PYTHON_USEDEP}] >=dev-python/msgpack-1.0.8[${PYTHON_USEDEP}] - >=dev-python/packaging-24.1[${PYTHON_USEDEP}] + >=dev-python/packaging-24.2[${PYTHON_USEDEP}] >=dev-python/platformdirs-4.2.1[${PYTHON_USEDEP}] >=dev-python/pyproject-hooks-1.0.0[${PYTHON_USEDEP}] >=dev-python/requests-2.32.0[${PYTHON_USEDEP}]