Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ensurepip-wheels/
Date: Sun, 07 Aug 2022 07:53:11
Message-Id: 1659856967.060ad2f40a97a443be1b6b07690f7e0d63ae12cc.mgorny@gentoo
1 commit: 060ad2f40a97a443be1b6b07690f7e0d63ae12cc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 7 07:22:47 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 7 07:22:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=060ad2f4
7
8 dev-python/ensurepip-wheels: Bump to 63.4.2.22.2.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ensurepip-wheels/Manifest | 1 +
13 .../ensurepip-wheels-63.4.2.22.2.2.ebuild | 28 ++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-python/ensurepip-wheels/Manifest b/dev-python/ensurepip-wheels/Manifest
17 index 7ba246d840b9..1ead5902c13a 100644
18 --- a/dev-python/ensurepip-wheels/Manifest
19 +++ b/dev-python/ensurepip-wheels/Manifest
20 @@ -2,3 +2,4 @@ DIST pip-22.2.1-py3-none-any.whl 2044666 BLAKE2B 702699d059273182f248acb48f6f6c9
21 DIST pip-22.2.2-py3-none-any.whl 2044706 BLAKE2B 254427e593e44d9f1ce48276fd40f214e8ca9d27b6c31b7a6ed5fa4566df6b1f723215c6a1766a534ce18174f2363c383dbff19368d1b89f1519a53bebd34215 SHA512 142d3144c14b692c645613d98bf35dd91193128d5e21b61a8a702548f1247fac662499d6e39b65c0aa9a0444d2d92983fd8c410439796626485a4e1be99a102f
22 DIST setuptools-63.3.0-py3-none-any.whl 1228351 BLAKE2B 5a7a8d864b5fc992952a4c7f0230c3ebb6f33c7b4fc965ca8bfa4cf3b57948e8353f59074f7374e3d002866333d3ad5fd072ccd479f8470cbfcd14aa635efc54 SHA512 f2df66493fb9520b50e3e93560b17e5aa6f01e5fde27028a550249beb54f3ea6b2d8f0a2bcc57afaff193e38d5b217544c0623b254ac300652aed444abf06a14
23 DIST setuptools-63.4.1-py3-none-any.whl 1228875 BLAKE2B 8f5a91764f509311f217d9cec6030c8318138d2d60bf8e8cf8ab0d7e9a9d578c1f644aaf30988846c4f22b962b10fa47c2e92cf63ffe0186acaf697c8eb96cc9 SHA512 c73f075f80a97d77906ed9acc1850ab4e458c1d4423a3f9a4b71bd677d7bd0e3ea291683942cd2cc9a91d454e905ea9732e169711c5218a8047997049e0c5536
24 +DIST setuptools-63.4.2-py3-none-any.whl 1230330 BLAKE2B 8190129907edb6a5a3607fc8caae995070d5740c849cd31510efa43271fddd58c5c21cb1d60a4647473b10ba90a6220e06db92413847cbf71e11e43571def2ab SHA512 8b2a56c840220c616a13ec19b424981b9767f4e39b98a3ba0b99904beb63f4d6d6c28ada37a25d482c1838063ccd09d260b12cc7d00aeca78b95cde49928211e
25
26 diff --git a/dev-python/ensurepip-wheels/ensurepip-wheels-63.4.2.22.2.2.ebuild b/dev-python/ensurepip-wheels/ensurepip-wheels-63.4.2.22.2.2.ebuild
27 new file mode 100644
28 index 000000000000..691136b4b5bb
29 --- /dev/null
30 +++ b/dev-python/ensurepip-wheels/ensurepip-wheels-63.4.2.22.2.2.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +SETUPTOOLS_WHL=setuptools-$(ver_cut 1-3)-py3-none-any.whl
38 +PIP_WHL=pip-$(ver_cut 4-)-py3-none-any.whl
39 +
40 +DESCRIPTION="Shared wheels for ensurepip Python module"
41 +HOMEPAGE="
42 + https://pypi.org/project/pip/
43 + https://pypi.org/project/setuptools/
44 +"
45 +SRC_URI="
46 + https://files.pythonhosted.org/packages/py3/p/pip/${PIP_WHL}
47 + https://files.pythonhosted.org/packages/py3/s/setuptools/${SETUPTOOLS_WHL}
48 +"
49 +S=${DISTDIR}
50 +
51 +# combined license of setuptools and pip (with its bundled deps)
52 +LICENSE="Apache-2.0 BSD BSD-2 ISC LGPL-2.1+ MIT MPL-2.0 PSF-2"
53 +SLOT="0"
54 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
55 +
56 +src_install() {
57 + insinto /usr/lib/python/ensurepip
58 + doins "${PIP_WHL}" "${SETUPTOOLS_WHL}"
59 +}