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/installer/
Date: Sun, 16 Jan 2022 17:41:01
Message-Id: 1642354851.5134c005d0229af41fb9e15c9cf6629c8e8c4a5b.mgorny@gentoo
1 commit: 5134c005d0229af41fb9e15c9cf6629c8e8c4a5b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 15 20:05:22 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 16 17:40:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5134c005
7
8 dev-python/installer: Add 0.4.0_p20220115 snap with CLI patch
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/installer/Manifest | 2 +
13 .../installer/installer-0.4.0_p20220115.ebuild | 55 ++++++++++++++++++++++
14 2 files changed, 57 insertions(+)
15
16 diff --git a/dev-python/installer/Manifest b/dev-python/installer/Manifest
17 index 2d38fa076c4d..c8357cc23f43 100644
18 --- a/dev-python/installer/Manifest
19 +++ b/dev-python/installer/Manifest
20 @@ -1,2 +1,4 @@
21 DIST installer-0.4.0-py2.py3-none-any.whl.zip 451433 BLAKE2B 933b7e63b3d0306213789d493d4df112df26b432d63ecd1f8f21449520c34bd2ad542aac25069043fbb535c44f988dca927625eafd0a5a20489fc3ce2bcf84a2 SHA512 cf303bb422e329a36007b361034144a232ba021d4013bb8678dc7c326544e74ec9a3b3fe8b9d3696433dbbe90d2ce4a0ae8967fb054bd5ed49321d470be729a8
22 DIST installer-0.4.0.gh.tar.gz 466643 BLAKE2B 635854b3461995cda3b7afa507ca3fe35cae8210e79de0bbd46938c8f103d7840ceca8bb388c2c9533efc78150691f980c478485ee33bafe0bae6c08a6aef8c4 SHA512 13537c479bc8ead8f8b45c8e5c5182e8b1b32c2889df8015be7f517f390a9efbea6fa167e0886dfade6621a8a2d822bfd662ee0238d3d86689619ca4d5483b26
23 +DIST installer-0.4.0_p20220115-cli.patch 14552 BLAKE2B 6632c1472ae0a578f6c7ed0acf1bb0d89ece924626b68c0daa28d9a7d93826837adaf6b0d40f048c4f5c2986b4328ca565340137e7b7fa7f407f62ebddc70275 SHA512 f8c6369955e0bde2bff0b935c39748d02659bc6ca0341af405e2c1026cf145479ba0b908bd769cdc05f3cc920f881b894b6a5eb7ace643951e05250ec0486b80
24 +DIST installer-0.4.0_p20220115.gh.tar.gz 466532 BLAKE2B 6dea3f4bacb52c4983e111d420495ee157076342a823b7062c6e5b3e4d3b70e6b2e9cb024d0c7baba6f88ed70f4303ab071d1882bc9d8dd0726f82a3e406056f SHA512 fbb0d4c8642fa2cbe2fd3be2eef7044a0353f04c67ecce20aafed33a0d7877ff55872ca5ad51390ae7e02cdb7af5dbd57b662085b60d425be95da6643b061eaa
25
26 diff --git a/dev-python/installer/installer-0.4.0_p20220115.ebuild b/dev-python/installer/installer-0.4.0_p20220115.ebuild
27 new file mode 100644
28 index 000000000000..c6fad5e821fa
29 --- /dev/null
30 +++ b/dev-python/installer/installer-0.4.0_p20220115.ebuild
31 @@ -0,0 +1,55 @@
32 +# Copyright 2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_SETUPTOOLS=manual
38 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
39 +inherit distutils-r1
40 +
41 +EGIT_COMMIT="bf68f7b045ffc08784af03cf2433548c9ee9e8ca"
42 +DESCRIPTION="A library for installing Python wheels"
43 +HOMEPAGE="
44 + https://pypi.org/project/installer/
45 + https://github.com/pradyunsg/installer/
46 + https://installer.readthedocs.io/en/latest/
47 +"
48 +SRC_URI="
49 + https://github.com/pradyunsg/installer/archive/${EGIT_COMMIT}.tar.gz
50 + -> ${P}.gh.tar.gz
51 + https://files.pythonhosted.org/packages/py2.py3/${PN::1}/${PN}/${P%_p*}-py2.py3-none-any.whl
52 + -> ${P%_p*}-py2.py3-none-any.whl.zip
53 + https://patch-diff.githubusercontent.com/raw/pradyunsg/installer/pull/94.diff
54 + -> ${P}-cli.patch
55 +"
56 +S=${WORKDIR}/${PN}-${EGIT_COMMIT}
57 +
58 +LICENSE="MIT"
59 +SLOT="0"
60 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
61 +
62 +# NB: newer git doesn't use mock anymore
63 +BDEPEND="
64 + app-arch/unzip
65 + test? (
66 + dev-python/mock[${PYTHON_USEDEP}]
67 + )
68 +"
69 +
70 +distutils_enable_tests pytest
71 +
72 +PATCHES=(
73 + "${DISTDIR}"/${P}-cli.patch
74 +)
75 +
76 +# do not use any build system to avoid circular deps
77 +python_compile() { :; }
78 +
79 +python_test() {
80 + local -x PYTHONPATH=src
81 + epytest
82 +}
83 +
84 +python_install() {
85 + python_domodule src/installer "${WORKDIR}"/*.dist-info
86 +}