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: Sat, 18 Mar 2023 06:00:40
Message-Id: 1679118840.7d193bde719f4e70ec95a9526c5a2eb7af4bfdad.mgorny@gentoo
1 commit: 7d193bde719f4e70ec95a9526c5a2eb7af4bfdad
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 18 05:52:00 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 18 05:54:00 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d193bde
7
8 dev-python/installer: Bump to 0.7.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/installer/Manifest | 2 ++
13 dev-python/installer/installer-0.7.0.ebuild | 39 +++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-python/installer/Manifest b/dev-python/installer/Manifest
17 index ef2653b968aa..b6db2da200d8 100644
18 --- a/dev-python/installer/Manifest
19 +++ b/dev-python/installer/Manifest
20 @@ -1,2 +1,4 @@
21 DIST installer-0.6.0-py3-none-any.whl.zip 452554 BLAKE2B 58a38d07256ed4fde3ab9495d47c117966155067fb6e903e2c1979272055b252e81f514cc67f5d0cda12e870f0a4f68f4c44bbfd6af38628e64726bdbcb17b50 SHA512 eca4f06e078c920085090a24c6083fceba2d52e433b21e1f2fb4d4e2e457f0dcca0e0307fb3239ab6018a92a3cb2e797499f050264ca2918bd268699357140b7
22 DIST installer-0.6.0.gh.tar.gz 469015 BLAKE2B c7e297724a634377d312ef408627e40c8a8aa7f67824331b657d13aa2908df2a59b935d7774437aa56b4b41bc7418f6f2e575c1e0fb6b282a124cf0440f74b89 SHA512 0952bbf245359d6f660f98e59096ed3d57facb5bad0e9715fe525bd52f50cce198b481811d2ba4d204776f7ae9bec9c3431ae044d6ef9a8db8d873c170cf13fb
23 +DIST installer-0.7.0-py3-none-any.whl.zip 453838 BLAKE2B 59bb698e7a4232a5254b6f6c4a042c68a22a26e15c1205707d3c9734513e92bf4518a09341619eab9ef0023ee65fcaa9837a4befb7a2452f1592411654374595 SHA512 8e10013521238ef8fb2f5ab4bd00f6154c05046011cad8824d96b7cdc4ed235b87e534d1e163a47a11dbfb5bb3cf19d9a2ea3edd1e9c9ce5fbc9a375010c36dc
24 +DIST installer-0.7.0.tar.gz 474349 BLAKE2B 76b86d14c0f4f0eba091ff08ef27e1b2f23c93318d197b3c41f5fef45eb11acc54bb1d35e3afc1e0dd98b30cc4cd3d9963ab1ba0bfe9d294ee3d0933ddaa24db SHA512 e89c2d28ca73d9c4291d645dda675fdcfcaba2e4f8765b9fa4a2f211e27711510f3d171b96a6b024c11808ba7f06b7b560a7cb31fafba815bd5c7396f26789f7
25
26 diff --git a/dev-python/installer/installer-0.7.0.ebuild b/dev-python/installer/installer-0.7.0.ebuild
27 new file mode 100644
28 index 000000000000..d7a6feac4803
29 --- /dev/null
30 +++ b/dev-python/installer/installer-0.7.0.ebuild
31 @@ -0,0 +1,39 @@
32 +# Copyright 2022-2023 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +# please keep this ebuild at EAPI 8 -- sys-apps/portage dep
36 +EAPI=8
37 +
38 +DISTUTILS_USE_PEP517=no
39 +PYTHON_COMPAT=( python3_{9..11} pypy3 )
40 +
41 +inherit distutils-r1 pypi
42 +
43 +DESCRIPTION="A library for installing Python wheels"
44 +HOMEPAGE="
45 + https://pypi.org/project/installer/
46 + https://github.com/pypa/installer/
47 + https://installer.readthedocs.io/en/latest/
48 +"
49 +SRC_URI+="
50 + $(pypi_wheel_url --unpack)
51 +"
52 +
53 +LICENSE="MIT"
54 +SLOT="0"
55 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
56 +
57 +BDEPEND="
58 + app-arch/unzip
59 +"
60 +
61 +distutils_enable_tests pytest
62 +
63 +python_compile() {
64 + python_domodule src/installer "${WORKDIR}"/*.dist-info
65 +}
66 +
67 +python_install() {
68 + distutils-r1_python_install
69 + python_optimize
70 +}