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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 481D6158010 for ; Sun, 5 Feb 2023 11:49:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 745BCE07D0; Sun, 5 Feb 2023 11:49:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 5FA7FE07D0 for ; Sun, 5 Feb 2023 11:49:12 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87197340AB6 for ; Sun, 5 Feb 2023 11:49:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3211883C for ; Sun, 5 Feb 2023 11:49:09 +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: <1675597729.4e82e5179c55d0685667727af272f3caa89f784f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ensurepip-setuptools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ensurepip-setuptools/ensurepip-setuptools-67.1.0.ebuild X-VCS-Directories: dev-python/ensurepip-setuptools/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4e82e5179c55d0685667727af272f3caa89f784f X-VCS-Branch: master Date: Sun, 5 Feb 2023 11:49:09 +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: 5f1fce21-39f0-4186-a0db-843275493641 X-Archives-Hash: 9a186a384415d3494a047c746963394a commit: 4e82e5179c55d0685667727af272f3caa89f784f Author: Michał Górny gentoo org> AuthorDate: Sun Feb 5 11:48:49 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 5 11:48:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e82e517 dev-python/ensurepip-setuptools: Use pypi.eclass in 67.1.0 too Signed-off-by: Michał Górny gentoo.org> .../ensurepip-setuptools/ensurepip-setuptools-67.1.0.ebuild | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dev-python/ensurepip-setuptools/ensurepip-setuptools-67.1.0.ebuild b/dev-python/ensurepip-setuptools/ensurepip-setuptools-67.1.0.ebuild index 22682736bd2f..c13c3370cbbe 100644 --- a/dev-python/ensurepip-setuptools/ensurepip-setuptools-67.1.0.ebuild +++ b/dev-python/ensurepip-setuptools/ensurepip-setuptools-67.1.0.ebuild @@ -3,14 +3,11 @@ EAPI=8 -MY_PN=${PN#ensurepip-} -WHL=${MY_PN}-${PV}-py3-none-any.whl +inherit pypi DESCRIPTION="Shared setuptools wheel for ensurepip Python module" HOMEPAGE="https://pypi.org/project/setuptools/" -SRC_URI=" - https://files.pythonhosted.org/packages/py3/${MY_PN::1}/${MY_PN}/${WHL} -" +SRC_URI="$(pypi_wheel_url "${PN#ensurepip-}")" S=${DISTDIR} LICENSE="MIT" @@ -23,5 +20,5 @@ RDEPEND=" src_install() { insinto /usr/lib/python/ensurepip - doins "${WHL}" + doins "${A}" }