Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ensurepip-setuptools/
Date: Thu, 18 Aug 2022 18:11:55
Message-Id: 1660846299.0ad98bf29f1696fd403c4c05fcbebe1be36f38d3.arthurzam@gentoo
1 commit: 0ad98bf29f1696fd403c4c05fcbebe1be36f38d3
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 18 18:11:23 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 18 18:11:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ad98bf2
7
8 dev-python/ensurepip-setuptools: add 65.1.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/ensurepip-setuptools/Manifest | 1 +
13 .../ensurepip-setuptools-65.1.0.ebuild | 27 ++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/ensurepip-setuptools/Manifest b/dev-python/ensurepip-setuptools/Manifest
17 index c86590636a50..deb7cbedb88f 100644
18 --- a/dev-python/ensurepip-setuptools/Manifest
19 +++ b/dev-python/ensurepip-setuptools/Manifest
20 @@ -1 +1,2 @@
21 DIST setuptools-65.0.2-py3-none-any.whl 1233332 BLAKE2B 0c0d0db73452d15947097f3d453f01bb42ef150b50122b7a1f39212f663064284bc313a04c3dbe99e8da7e614d72a963d6c9f0c8f486f5d84131a06718b288c8 SHA512 11d9975468166bf7db9a9da44d893a67daacc5f309da1b521278a95a33fa2b3574cae10840c9943de54bf5d411e54697f91b62a3bfb5a6a3bc69b804af2a1365
22 +DIST setuptools-65.1.0-py3-none-any.whl 1232689 BLAKE2B db8f85b99b1d47af55d484d77ecafe5122abe9ab8dcec565659bb91c16aa26513c00d8684ca3b7b57e629d512b42273188a00ee0a0958bba5097ce150869609f SHA512 1072a826964ec3413c5bcd3f930a2f314b87b0b77714ddc948573841fbb871a898843211beaff0bcc5e003fcaab678de5d2b9a3a9fa864beced1bf2af282d048
23
24 diff --git a/dev-python/ensurepip-setuptools/ensurepip-setuptools-65.1.0.ebuild b/dev-python/ensurepip-setuptools/ensurepip-setuptools-65.1.0.ebuild
25 new file mode 100644
26 index 000000000000..96c75c915768
27 --- /dev/null
28 +++ b/dev-python/ensurepip-setuptools/ensurepip-setuptools-65.1.0.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +MY_PN=${PN#ensurepip-}
36 +WHL=${MY_PN}-${PV}-py3-none-any.whl
37 +
38 +DESCRIPTION="Shared setuptools wheel for ensurepip Python module"
39 +HOMEPAGE="https://pypi.org/project/setuptools/"
40 +SRC_URI="
41 + https://files.pythonhosted.org/packages/py3/${MY_PN::1}/${MY_PN}/${WHL}
42 +"
43 +S=${DISTDIR}
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
48 +
49 +RDEPEND="
50 + !<dev-python/ensurepip-wheels-100
51 +"
52 +
53 +src_install() {
54 + insinto /usr/lib/python/ensurepip
55 + doins "${WHL}"
56 +}