Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-service/
Date: Tue, 02 Jun 2020 18:40:46
Message-Id: 1591123231.960918bd2037f01b5995cd701217c5c98f9830ae.prometheanfire@gentoo
1 commit: 960918bd2037f01b5995cd701217c5c98f9830ae
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 2 18:23:02 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 2 18:40:31 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=960918bd
7
8 dev-python/oslo-service: 2.1.1 bump
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-python/oslo-service/Manifest | 1 +
14 dev-python/oslo-service/oslo-service-2.1.1.ebuild | 47 +++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/dev-python/oslo-service/Manifest b/dev-python/oslo-service/Manifest
18 index 9594d9b86d9..6e845341b7f 100644
19 --- a/dev-python/oslo-service/Manifest
20 +++ b/dev-python/oslo-service/Manifest
21 @@ -1 +1,2 @@
22 DIST oslo.service-1.40.2.tar.gz 80334 BLAKE2B 6000ba70c414ae6396f8be3911511b073f0f6a73a3a98e92e0c662b42a637b4cccbe684ceb1df2613aedad3fbd430ff588dca001997293563f39525efba05d99 SHA512 e412ae3d96e7e7f5f40238b3b9d9623a36347c3d8c6e06baa11133da71d4f5e55bd1ac2f43b45a2f84f725f84c59ec6870bc557fb623ab681bbeec27bffd086d
23 +DIST oslo.service-2.1.1.tar.gz 81030 BLAKE2B f6221d9e3d7624dccb614b2dbe6529937fd00495db80cddd9412c53fdacd4a5c5a5fe33468ab53c65e0cb741e82519de971f19d662e633f658641c978dcf0b2b SHA512 8d2beba973444eb6ef32c011928376b6ba61388837178f9043105100f05644137d9bf6ae235c4c7260b05d956bfda42890dcd5727dd4d6f9559e7206f7139f95
24
25 diff --git a/dev-python/oslo-service/oslo-service-2.1.1.ebuild b/dev-python/oslo-service/oslo-service-2.1.1.ebuild
26 new file mode 100644
27 index 00000000000..d318fd27e7b
28 --- /dev/null
29 +++ b/dev-python/oslo-service/oslo-service-2.1.1.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{6,7} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Library for running OpenStack services"
40 +HOMEPAGE="https://pypi.org/project/oslo.service/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/oslo.service/oslo.service-${PV}.tar.gz"
42 +S="${WORKDIR}/oslo.service-${PV}"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm64 ~x86"
47 +IUSE=""
48 +
49 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
50 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
51 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
52 + ${CDEPEND}"
53 +RDEPEND="
54 + ${CDEPEND}
55 + >=dev-python/webob-1.7.1[${PYTHON_USEDEP}]
56 + >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
57 + >=dev-python/eventlet-0.22.0[${PYTHON_USEDEP}]
58 + !~dev-python/eventlet-0.23.0[${PYTHON_USEDEP}]
59 + !~dev-python/eventlet-0.25.0[${PYTHON_USEDEP}]
60 + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
61 + >=dev-python/greenlet-0.4.10[${PYTHON_USEDEP}]
62 + >=dev-python/oslo-utils-3.40.2[${PYTHON_USEDEP}]
63 + >=dev-python/oslo-concurrency-3.25.0[${PYTHON_USEDEP}]
64 + >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
65 + >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}]
66 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
67 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
68 + >=dev-python/pastedeploy-1.5.0[${PYTHON_USEDEP}]
69 + >=dev-python/routes-2.3.1[${PYTHON_USEDEP}]
70 + >=dev-python/paste-2.0.2[${PYTHON_USEDEP}]
71 + >=dev-python/yappi-1.0[${PYTHON_USEDEP}]
72 +"
73 +
74 +python_prepare_all() {
75 + sed -i '/^hacking/d' test-requirements.txt || die
76 + distutils-r1_python_prepare_all
77 +}