Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/inflection/
Date: Tue, 24 Jul 2018 23:41:46
Message-Id: 1532475679.77a2cb93cf8b1c4e7bf4ca8dd024cd07c66435c8.sbraz@gentoo
1 commit: 77a2cb93cf8b1c4e7bf4ca8dd024cd07c66435c8
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 24 23:27:38 2018 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 24 23:41:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77a2cb93
7
8 dev-python/inflection: add Python 3.7, more verbose tests, EAPI=7
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 dev-python/inflection/inflection-0.3.1.ebuild | 11 ++++-------
13 1 file changed, 4 insertions(+), 7 deletions(-)
14
15 diff --git a/dev-python/inflection/inflection-0.3.1.ebuild b/dev-python/inflection/inflection-0.3.1.ebuild
16 index 16c59e49cca..5ea6e6f3a81 100644
17 --- a/dev-python/inflection/inflection-0.3.1.ebuild
18 +++ b/dev-python/inflection/inflection-0.3.1.ebuild
19 @@ -2,7 +2,7 @@
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=7
23 -PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} )
24 +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6,7}} )
25
26 inherit distutils-r1
27
28 @@ -17,12 +17,9 @@ SLOT="0"
29 KEYWORDS="~amd64 ~x86"
30 IUSE="doc test"
31
32 -RDEPEND=""
33 -DEPEND="
34 +BDEPEND="
35 dev-python/setuptools[${PYTHON_USEDEP}]
36 - test? (
37 - dev-python/pytest[${PYTHON_USEDEP}]
38 - )
39 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )
40 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
41 "
42
43 @@ -34,5 +31,5 @@ python_compile_all() {
44 }
45
46 python_test() {
47 - py.test || die "Tests failed with ${EPYTHON}"
48 + pytest -vv || die "Tests failed with ${EPYTHON}"
49 }