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-pip/
Date: Tue, 31 Jan 2023 11:22:33
Message-Id: 1675164145.2d48118eda5dfa773c5c3fec32947a82dfd47c16.mgorny@gentoo
1 commit: 2d48118eda5dfa773c5c3fec32947a82dfd47c16
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 31 11:11:11 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 11:22:25 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d48118e
7
8 dev-python/ensurepip-pip: Bump to 23.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ensurepip-pip/Manifest | 1 +
13 dev-python/ensurepip-pip/ensurepip-pip-23.0.ebuild | 27 ++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/ensurepip-pip/Manifest b/dev-python/ensurepip-pip/Manifest
17 index f3e58ec59c9f..2f3601caaf60 100644
18 --- a/dev-python/ensurepip-pip/Manifest
19 +++ b/dev-python/ensurepip-pip/Manifest
20 @@ -1 +1,2 @@
21 DIST pip-22.3.1-py3-none-any.whl 2051534 BLAKE2B b15f5eac6b3d8d12b382aabfb7fc920bea564be7f9133050d7cb0b4627a92c1de19676dced6bcb79971701898bb1606f3ea1b44349ab35527de90936c0057c71 SHA512 f09c2a48e85108514c20fdc58466b9be6a9b7f234241ccd46e23249f690bd1ec03fa5e60c9df80f4cf31a9be64d7d59b2fa786c1d7779e284fec42b04bffc257
22 +DIST pip-23.0-py3-none-any.whl 2056044 BLAKE2B 3b7183fe28c8f5ed64fceee3332795615218a1263d196b461a872a91676613c1c307a68702c92b6c23d9373b29e381ad6b2c8ba811a694d9dbef429be05077b8 SHA512 7bf9f3507dab29922e9f901b0584a9a84906031dc40a58537dbc001c6c49dee5a3df4ee0c21af923c7ffbafd80fbd37beea3d04e7dd607c0b2811c1df80d7be5
23
24 diff --git a/dev-python/ensurepip-pip/ensurepip-pip-23.0.ebuild b/dev-python/ensurepip-pip/ensurepip-pip-23.0.ebuild
25 new file mode 100644
26 index 000000000000..971c00d30abe
27 --- /dev/null
28 +++ b/dev-python/ensurepip-pip/ensurepip-pip-23.0.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 2022-2023 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 pip wheel for ensurepip Python module"
39 +HOMEPAGE="https://pypi.org/project/pip/"
40 +SRC_URI="
41 + https://files.pythonhosted.org/packages/py3/${MY_PN::1}/${MY_PN}/${WHL}
42 +"
43 +S=${DISTDIR}
44 +
45 +LICENSE="Apache-2.0 BSD BSD-2 ISC LGPL-2.1+ MIT MPL-2.0 PSF-2"
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 +}