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-setuptools/
Date: Thu, 03 Nov 2022 19:51:42
Message-Id: 1667505080.ef4d2691be05cbe2b190af3dc5cf014e24e1a66e.mgorny@gentoo
1 commit: ef4d2691be05cbe2b190af3dc5cf014e24e1a66e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 3 19:50:38 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 3 19:51:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef4d2691
7
8 dev-python/ensurepip-setuptools: Bump to 65.5.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ensurepip-setuptools/Manifest | 1 +
13 .../ensurepip-setuptools-65.5.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 2fc773a1ad29..8648f7527005 100644
18 --- a/dev-python/ensurepip-setuptools/Manifest
19 +++ b/dev-python/ensurepip-setuptools/Manifest
20 @@ -1 +1,2 @@
21 DIST setuptools-65.4.1-py3-none-any.whl 1232518 BLAKE2B 545caa5f7c551090e3dcb71c388477c4aad8aaee1dbf4a7f7fc08f27a296a81a055310b41c3d4af7cb3cf375c5ab465fec29ef3e29456281f56b7df544dd0eca SHA512 c0bc3f5f3b7c8a8b83df4d12f5f99d41ea910220abc16e8b93e3b533dc8d665802608c447e8c1eb070c19c24b1baa83faf2ac42488f95808ed585c169afadd58
22 +DIST setuptools-65.5.0-py3-none-any.whl 1232695 BLAKE2B 4079fddb68bcd123a3864a1a1bc42b88b40343caebbf4365bf7eb6379e73c7792eea36b53d7a4e63a4621f64a74fd440f555092e6a251e0943dd6eb526f89b0d SHA512 b179096ad073fd1fc2c9b68b4eecc6df5cb5e54250020b16a689f7c89ddad75ec88b8031fe4249cd609ee18e1aa22e7bc011d9ddb32b7b661e57f0645879e710
23
24 diff --git a/dev-python/ensurepip-setuptools/ensurepip-setuptools-65.5.0.ebuild b/dev-python/ensurepip-setuptools/ensurepip-setuptools-65.5.0.ebuild
25 new file mode 100644
26 index 000000000000..96c75c915768
27 --- /dev/null
28 +++ b/dev-python/ensurepip-setuptools/ensurepip-setuptools-65.5.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 +}