Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-reports/
Date: Thu, 22 Feb 2018 19:59:22
Message-Id: 1519329532.ac3cb80f37eaa09d1a1cd2977791d04e584bbc30.prometheanfire@gentoo
1 commit: ac3cb80f37eaa09d1a1cd2977791d04e584bbc30
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 22 19:01:00 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 19:58:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3cb80f
7
8 dev-python/oslo-reports: 1.26.0 bup
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/oslo-reports/Manifest | 1 +
13 dev-python/oslo-reports/oslo-reports-1.26.0.ebuild | 41 ++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/oslo-reports/Manifest b/dev-python/oslo-reports/Manifest
17 index 702bbeedb96..ce83e59d921 100644
18 --- a/dev-python/oslo-reports/Manifest
19 +++ b/dev-python/oslo-reports/Manifest
20 @@ -1 +1,2 @@
21 DIST oslo.reports-1.22.1.tar.gz 48151 BLAKE2B f3867bf3c6c7fd207b1e730e8c96098d74b42239107999194bcef295ae0a86048bed7f47498a5d4a0186d15d48f97d897850fd2558eaae7bc386b9401c01155a SHA512 c2c7f35fe80df9393cb1d9add59a7be95586ee078074548795f881c8515073946bcf3dfda02536850b943f346a6b81bfffa1d9f461f0cafdf6163da09b6d07d4
22 +DIST oslo.reports-1.26.0.tar.gz 48691 BLAKE2B 670c3c7205dd2ceba1559d296cbb697045aa088f7343614e82c9c5983166f34e90af33de43c55b1d865715c840ea3a12fcff697a798a5eb0b2a120a39c4895c8 SHA512 e4a8bb5cdfaf1cb82f53fc56060f2e6bfde85ad6933326faab2ce8f8181231510700712d191c1429cb264f70a79695a069fe9dae93aa4a70aafa3efe37898603
23
24 diff --git a/dev-python/oslo-reports/oslo-reports-1.26.0.ebuild b/dev-python/oslo-reports/oslo-reports-1.26.0.ebuild
25 new file mode 100644
26 index 00000000000..68cdd6bbdb7
27 --- /dev/null
28 +++ b/dev-python/oslo-reports/oslo-reports-1.26.0.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="generified reports for openstack"
39 +HOMEPAGE="http://docs.openstack.org/developer/oslo.reports"
40 +SRC_URI="mirror://pypi/${PN:0:1}/oslo.reports/oslo.reports-${PV}.tar.gz"
41 +S="${WORKDIR}/oslo.reports-${PV}"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~x86"
46 +IUSE=""
47 +
48 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
49 + !~dev-python/pbr-2.1.0"
50 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
51 + ${CDEPEND}"
52 +RDEPEND="
53 + ${CDEPEND}
54 + >=dev-python/jinja-2.8[${PYTHON_USEDEP}]
55 + !~dev-python/jinja-2.9.0[${PYTHON_USEDEP}]
56 + !~dev-python/jinja-2.9.1[${PYTHON_USEDEP}]
57 + !~dev-python/jinja-2.9.2[${PYTHON_USEDEP}]
58 + !~dev-python/jinja-2.9.3[${PYTHON_USEDEP}]
59 + !~dev-python/jinja-2.9.4[${PYTHON_USEDEP}]
60 + >=dev-python/oslo-serialization-1.18.0[${PYTHON_USEDEP}]
61 + !~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
62 + >=dev-python/psutil-3.2.2[${PYTHON_USEDEP}]
63 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
64 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
65 + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]"
66 +
67 +python_prepare_all() {
68 + sed -i '/^hacking/d' test-requirements.txt || die
69 + distutils-r1_python_prepare_all
70 +}