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: Mon, 01 Jun 2020 05:56:26
Message-Id: 1590990977.447ac2c236c86186124d37011b89b70b853a3f81.mgorny@gentoo
1 commit: 447ac2c236c86186124d37011b89b70b853a3f81
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 1 05:40:08 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 1 05:56:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=447ac2c2
7
8 dev-python/stevedore: Bump to 1.32.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/stevedore/Manifest | 1 +
13 dev-python/stevedore/stevedore-1.32.0.ebuild | 39 ++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-python/stevedore/Manifest b/dev-python/stevedore/Manifest
17 index ce2af7bfbbf..26a589adaf1 100644
18 --- a/dev-python/stevedore/Manifest
19 +++ b/dev-python/stevedore/Manifest
20 @@ -1 +1,2 @@
21 DIST stevedore-1.31.0.tar.gz 505482 BLAKE2B c69ecf61b32ab996f23aa913a9f226f64164b94e9420da8b7dd5a8ba568a228bd2f536052ab9378167fd2fe2e0d8d7b42515580a966eeffb5beeaf55dbba69ad SHA512 07b641b63766eddd094690acad81c1417a9721d785f81ca11da0ec2afed455d1beedfea5be4dcfd833d9379d650b193e26207ec0411d274bdf399ea2acd321a0
22 +DIST stevedore-1.32.0.tar.gz 510344 BLAKE2B 96de6598245e88900ba0f0bd69b976425fc5be2c783f32c551ebb2536dc5fde7fab18121947f3f9caa4d7d822372ad502d272285cc66368bfc39c566821a0160 SHA512 98c66b9ac827f69737cc2522029108831380b4bf4c633786d9819b52be930f6116ce5bfab58e724a2efad147830fcb6353409322fc5e01617d35d1c8aafb0259
23
24 diff --git a/dev-python/stevedore/stevedore-1.32.0.ebuild b/dev-python/stevedore/stevedore-1.32.0.ebuild
25 new file mode 100644
26 index 00000000000..96df662c46e
27 --- /dev/null
28 +++ b/dev-python/stevedore/stevedore-1.32.0.ebuild
29 @@ -0,0 +1,39 @@
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 ~arm64 ~hppa ~ia64 ~ppc64 ~sparc ~x86"
47 +
48 +RDEPEND="
49 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
50 +"
51 +BDEPEND="
52 + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
53 + test? (
54 + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
55 + )
56 +"
57 +
58 +distutils_enable_tests unittest
59 +distutils_enable_sphinx 'doc/source' \
60 + '>=dev-python/openstackdocstheme-1.18.1' \
61 + '>=dev-python/reno-2.5.0' \
62 + '>=dev-python/sphinx-2.0.0'
63 +
64 +python_prepare_all() {
65 + # Delete spurious data in requirements.txt
66 + sed -e '/^pbr/d' -i requirements.txt || die
67 + distutils-r1_python_prepare_all
68 +}