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-debug/
Date: Fri, 04 Sep 2020 19:01:05
Message-Id: 1599246025.6e03d87b5b6a87cc763ad9aa6b1bb9979f0a8d1b.sbraz@gentoo
1 commit: 6e03d87b5b6a87cc763ad9aa6b1bb9979f0a8d1b
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 2 22:09:19 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 4 19:00:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e03d87b
7
8 dev-python/flask-debug: add Python 3.8 and 3.9 support
9
10 Also switch to distutils_enable_* functions.
11
12 Package-Manager: Portage-3.0.3, Repoman-2.3.23
13 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
14
15 dev-python/flask-debug/flask-debug-0.4.3-r1.ebuild | 30 ++++++++++++++++++++++
16 1 file changed, 30 insertions(+)
17
18 diff --git a/dev-python/flask-debug/flask-debug-0.4.3-r1.ebuild b/dev-python/flask-debug/flask-debug-0.4.3-r1.ebuild
19 new file mode 100644
20 index 00000000000..9fad701cf38
21 --- /dev/null
22 +++ b/dev-python/flask-debug/flask-debug-0.4.3-r1.ebuild
23 @@ -0,0 +1,30 @@
24 +# Copyright 1999-2020 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} )
30 +
31 +inherit distutils-r1
32 +
33 +MY_PN="Flask-Debug"
34 +DESCRIPTION="Flask extension that displays various debugging insights during development"
35 +HOMEPAGE="https://github.com/mbr/Flask-Debug"
36 +# PyPI tarballs don't include tests
37 +# https://github.com/mbr/Flask-Debug/pull/2
38 +SRC_URI="https://github.com/mbr/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +
44 +RDEPEND="
45 + dev-python/flask[${PYTHON_USEDEP}]
46 + dev-python/inflection[${PYTHON_USEDEP}]
47 + dev-python/jinja[${PYTHON_USEDEP}]
48 +"
49 +
50 +S="${WORKDIR}/${MY_PN}-${PV}"
51 +
52 +distutils_enable_tests pytest
53 +distutils_enable_sphinx docs dev-python/alabaster