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/stevedore/
Date: Wed, 02 Sep 2020 22:05:11
Message-Id: 1599084304.7ddb9c3c918e5712713c04dc661a85b8d1981451.mgorny@gentoo
1 commit: 7ddb9c3c918e5712713c04dc661a85b8d1981451
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 2 21:54:43 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 2 22:05:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ddb9c3c
7
8 dev-python/stevedore: Bump to 3.2.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/stevedore/Manifest | 1 +
13 dev-python/stevedore/stevedore-3.2.1.ebuild | 43 +++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/stevedore/Manifest b/dev-python/stevedore/Manifest
17 index 946dca57d4a..1cffd3212a6 100644
18 --- a/dev-python/stevedore/Manifest
19 +++ b/dev-python/stevedore/Manifest
20 @@ -1 +1,2 @@
21 DIST stevedore-3.2.0.tar.gz 510559 BLAKE2B 69faa75eed9efff36a0dd5f91730dd22936af646bd54e1f8c47da5d3bc3d33e949714ac81898747336bcd8acbdd1bb2addc68fb64add825493ad29fb22393fee SHA512 89b6c88ff41bd9429561886fa2e7cbeef1658e955266b61e1ac9809812ee8e290ecb39819618a12b1a6e080d2e86ea03d951a0a31f7ff4920d8b22bb55420439
22 +DIST stevedore-3.2.1.tar.gz 511635 BLAKE2B 82f2a2f385018db799af45f444b90e34ca2fb5f1bb03db654315aa80f456a51415a11c692d27d4a5d4f5fc4e3f52d6fbee5ea8c94225cde6f14fcff8be6905e5 SHA512 1a1fbfc44ab318ae21567412c8f112de898c69fe5dadc82141a82048f6006f16c281159aca3411c4c81f492495232c338d260f2e6f0595dc6cf6203ac1595af2
23
24 diff --git a/dev-python/stevedore/stevedore-3.2.1.ebuild b/dev-python/stevedore/stevedore-3.2.1.ebuild
25 new file mode 100644
26 index 00000000000..9bd342f667d
27 --- /dev/null
28 +++ b/dev-python/stevedore/stevedore-3.2.1.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{6..9} )
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Manage dynamic plugins for Python applications"
41 +HOMEPAGE="https://github.com/openstack/stevedore https://pypi.org/project/stevedore/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~sparc ~x86"
47 +
48 +RDEPEND="
49 + $(python_gen_cond_dep '
50 + >=dev-python/importlib_metadata-1.7.0[${PYTHON_USEDEP}]
51 + ' python3_{6,7})
52 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
53 +"
54 +BDEPEND="
55 + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
56 + test? (
57 + dev-python/sphinx[${PYTHON_USEDEP}]
58 + dev-python/testtools[${PYTHON_USEDEP}]
59 + )
60 +"
61 +
62 +distutils_enable_tests unittest
63 +distutils_enable_sphinx 'doc/source' \
64 + '>=dev-python/openstackdocstheme-1.18.1' \
65 + '>=dev-python/reno-2.5.0' \
66 + '>=dev-python/sphinx-2.0.0'
67 +
68 +python_prepare_all() {
69 + # Delete spurious data in requirements.txt
70 + sed -e '/^pbr/d' -i requirements.txt || die
71 + distutils-r1_python_prepare_all
72 +}