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/python-ceilometerclient/
Date: Tue, 11 Feb 2020 19:06:54
Message-Id: 1581447996.3c452f64c930b85993c1c35073e3ffd332b49d48.prometheanfire@gentoo
1 commit: 3c452f64c930b85993c1c35073e3ffd332b49d48
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 11 19:05:31 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 11 19:06:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c452f64
7
8 dev-python/python-ceilometerclient: update to py37
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 RepoMan-Options: --force
12 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
13
14 ...ild => python-ceilometerclient-2.6.2-r2.ebuild} | 24 +++-------------------
15 1 file changed, 3 insertions(+), 21 deletions(-)
16
17 diff --git a/dev-python/python-ceilometerclient/python-ceilometerclient-2.6.2-r1.ebuild b/dev-python/python-ceilometerclient/python-ceilometerclient-2.6.2-r2.ebuild
18 similarity index 63%
19 rename from dev-python/python-ceilometerclient/python-ceilometerclient-2.6.2-r1.ebuild
20 rename to dev-python/python-ceilometerclient/python-ceilometerclient-2.6.2-r2.ebuild
21 index e5fcd00d4b4..86d42367d4d 100644
22 --- a/dev-python/python-ceilometerclient/python-ceilometerclient-2.6.2-r1.ebuild
23 +++ b/dev-python/python-ceilometerclient/python-ceilometerclient-2.6.2-r2.ebuild
24 @@ -1,8 +1,8 @@
25 # Copyright 1999-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=6
29 -PYTHON_COMPAT=( python3_6 )
30 +EAPI=7
31 +PYTHON_COMPAT=( python3_6 python3_7 )
32
33 inherit distutils-r1
34
35 @@ -13,23 +13,11 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
36 LICENSE="Apache-2.0"
37 SLOT="0"
38 KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
39 -IUSE="test"
40 -RESTRICT="!test? ( test )"
41
42 CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]"
43 DEPEND="
44 dev-python/setuptools[${PYTHON_USEDEP}]
45 - ${CDEPEND}
46 - test? (
47 - >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
48 - >=dev-python/fixtures-1.3.1[${PYTHON_USEDEP}]
49 - <dev-python/fixtures-2.0[${PYTHON_USEDEP}]
50 - >=dev-python/mock-1.2[${PYTHON_USEDEP}]
51 - >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
52 - >=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
53 - >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
54 - >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}]
55 - )"
56 + ${CDEPEND}"
57 RDEPEND="
58 ${CDEPEND}
59 >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
60 @@ -47,9 +35,3 @@ python_prepare_all() {
61 sed -i '/^hacking/d' test-requirements.txt || die
62 distutils-r1_python_prepare_all
63 }
64 -
65 -python_test() {
66 - testr init
67 - testr run || die "tests failed under python2.7"
68 - flake8 ceilometerclient/tests/ || die "run over tests folder by flake8 yielded error"
69 -}