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/flask-appconfig/
Date: Wed, 03 Oct 2018 21:39:04
Message-Id: 1538602731.529e398d4e699a066617923f34b5e548b04f64a2.sbraz@gentoo
1 commit: 529e398d4e699a066617923f34b5e548b04f64a2
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 3 21:24:18 2018 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 3 21:38:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=529e398d
7
8 dev-python/flask-appconfig: add Python 3.7 support, missing doc dep
9
10 Also make tests verbose.
11
12 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
13 Package-Manager: Portage-2.3.49, Repoman-2.3.11
14
15 dev-python/flask-appconfig/flask-appconfig-0.11.1-r1.ebuild | 11 +++++++----
16 1 file changed, 7 insertions(+), 4 deletions(-)
17
18 diff --git a/dev-python/flask-appconfig/flask-appconfig-0.11.1-r1.ebuild b/dev-python/flask-appconfig/flask-appconfig-0.11.1-r1.ebuild
19 index 2e1c7689325..85f4e59c812 100644
20 --- a/dev-python/flask-appconfig/flask-appconfig-0.11.1-r1.ebuild
21 +++ b/dev-python/flask-appconfig/flask-appconfig-0.11.1-r1.ebuild
22 @@ -1,8 +1,8 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 +# Copyright 1999-2018 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 -PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} )
29 +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6,7}} )
30
31 inherit distutils-r1
32
33 @@ -24,7 +24,10 @@ RDEPEND="
34 "
35 DEPEND="
36 dev-python/setuptools[${PYTHON_USEDEP}]
37 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
38 + doc? (
39 + dev-python/alabaster[${PYTHON_USEDEP}]
40 + dev-python/sphinx[${PYTHON_USEDEP}]
41 + )
42 test? (
43 ${RDEPEND}
44 dev-python/pytest[${PYTHON_USEDEP}]
45 @@ -46,5 +49,5 @@ python_compile_all() {
46 }
47
48 python_test() {
49 - py.test || die "Tests failed with ${EPYTHON}"
50 + pytest -vv || die "Tests failed with ${EPYTHON}"
51 }