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/python-distutils-extra/
Date: Sun, 05 Jun 2022 14:11:52
Message-Id: 1654438304.f952ff0542696f623ca1686f3e185c2317159722.mgorny@gentoo
1 commit: f952ff0542696f623ca1686f3e185c2317159722
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 13:42:28 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 14:11:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f952ff05
7
8 dev-python/python-distutils-extra: Bump to 2.46
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-distutils-extra/Manifest | 1 +
13 .../python-distutils-extra-2.46.ebuild | 38 ++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/dev-python/python-distutils-extra/Manifest b/dev-python/python-distutils-extra/Manifest
17 index beb806cef343..6cf1d54b5c1a 100644
18 --- a/dev-python/python-distutils-extra/Manifest
19 +++ b/dev-python/python-distutils-extra/Manifest
20 @@ -1 +1,2 @@
21 DIST python-distutils-extra-2.45.tar.bz2 38094 BLAKE2B b8c0adcb92d07e087e10389c9671e9eca78a9a634d0092c1633e184fb9d128b006903ce8f2c9deb504b3d1557a8afc78e3edea7f1a2e95734c55099b4a21dd41 SHA512 04d2be290726d7ceed599031bfa960468c6a8654c8d9105dd77cb5744f6908d1c9a6732095692aebde1f1e042ef70b2695d41586663e4d539ee96247a39f02a1
22 +DIST python-distutils-extra-2.46.tar.bz2 38178 BLAKE2B 66bded2a07a65a45e7b5a36c1846a0927db8cc38c158754c660ea854244736325b9b186de1739666e228199b32ff6184676a78f132689a996a9a417562dc0926 SHA512 78dd97f40e805dd106fae279770fbd28af75a01a0c514cdb937dccd87948cb8ae2413dbab43d624365b44a29e6da7b0a1290502a0a0d63e8abb700ae9b9c5cb1
23
24 diff --git a/dev-python/python-distutils-extra/python-distutils-extra-2.46.ebuild b/dev-python/python-distutils-extra/python-distutils-extra-2.46.ebuild
25 new file mode 100644
26 index 000000000000..5e898d180bee
27 --- /dev/null
28 +++ b/dev-python/python-distutils-extra/python-distutils-extra-2.46.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..11} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Gettext support, themed icons and scrollkeeper-based documentation in distutils"
40 +HOMEPAGE="
41 + https://salsa.debian.org/python-team/packages/python-distutils-extra/
42 + https://launchpad.net/python-distutils-extra/
43 +"
44 +SRC_URI="
45 + https://salsa.debian.org/python-team/packages/python-distutils-extra/-/archive/${PV}/${P}.tar.bz2
46 +"
47 +
48 +LICENSE="GPL-2+"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
51 +IUSE="test"
52 +RESTRICT="!test? ( test )"
53 +
54 +DOCS=( doc/{README,FAQ} )
55 +
56 +BDEPEND="
57 + test? (
58 + dev-libs/gobject-introspection
59 + dev-python/httplib2[${PYTHON_USEDEP}]
60 + dev-python/pygobject[${PYTHON_USEDEP}]
61 + dev-util/intltool
62 + )
63 +"
64 +
65 +python_test() {
66 + "${EPYTHON}" test/auto.py -v || die "Tests fail with ${EPYTHON}"
67 +}