diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-11-19 07:56:04 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-11-19 10:42:42 +0100 |
commit | d25d998156a7e4ed61f86150c5c69b42ea768a0c (patch) | |
tree | d99b4426db8565cc205f2d1e1b1fea5b86a4c3b2 /dev-python/ensurepip-setuptools | |
parent | dev-python/setuptools: Bump to 65.6.0 (diff) | |
download | gentoo-d25d998156a7e4ed61f86150c5c69b42ea768a0c.tar.gz gentoo-d25d998156a7e4ed61f86150c5c69b42ea768a0c.tar.bz2 gentoo-d25d998156a7e4ed61f86150c5c69b42ea768a0c.zip |
dev-python/ensurepip-setuptools: Bump to 65.6.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/ensurepip-setuptools')
-rw-r--r-- | dev-python/ensurepip-setuptools/Manifest | 1 | ||||
-rw-r--r-- | dev-python/ensurepip-setuptools/ensurepip-setuptools-65.6.0.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/ensurepip-setuptools/Manifest b/dev-python/ensurepip-setuptools/Manifest index 06974779641b..6c551b7e9297 100644 --- a/dev-python/ensurepip-setuptools/Manifest +++ b/dev-python/ensurepip-setuptools/Manifest @@ -1 +1,2 @@ DIST setuptools-65.5.1-py3-none-any.whl 1232712 BLAKE2B 7ffda4e3e3e148a2ec55964ddb2a191710e6b5c8ec77c2f1af0cb2427992bce90c1fe309c916e404afe7cac8dcb87e8ef6351d0946432a455bdd91a9b6550884 SHA512 8fe0472001b1589caf81f1e0fe17777e524f003fc414d0a17a431209ba5aa8292741bdf13ae4346227afba2491099ea7369bf767ce621ef3fa38dda7b304b5c0 +DIST setuptools-65.6.0-py3-none-any.whl 1233669 BLAKE2B 7e373901fd822df571141422bb6ca308646383faff85d5e4cbae8907c1e7430045c28ac4b6492a12ca182122e83c8fbb8fdfa0c36d585166f9aa649b8b0d48cc SHA512 5184fcc94393b9f057bf49b5cc822304966c7e6391623b8c5de476f5c765a8d65e72c07a70422c6b7b77d634671808445c19e042cba9080f9d6f9c1a545e1bad diff --git a/dev-python/ensurepip-setuptools/ensurepip-setuptools-65.6.0.ebuild b/dev-python/ensurepip-setuptools/ensurepip-setuptools-65.6.0.ebuild new file mode 100644 index 000000000000..96c75c915768 --- /dev/null +++ b/dev-python/ensurepip-setuptools/ensurepip-setuptools-65.6.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN=${PN#ensurepip-} +WHL=${MY_PN}-${PV}-py3-none-any.whl + +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} +" +S=${DISTDIR} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + !<dev-python/ensurepip-wheels-100 +" + +src_install() { + insinto /usr/lib/python/ensurepip + doins "${WHL}" +} |