commit: 0aedd9eb5aeb4031c90d60f6d8d05c36e7f6daed
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 24 06:35:25 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 24 18:19:27 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aedd9eb
dev-python/flask-babelex: enable py3.10, cleanup python_test
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/flask-babelex/flask-babelex-0.9.4.ebuild | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
b/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
index aadb87785dd..8c709a50a16 100644
--- a/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
+++ b/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
MY_PN="Flask-BabelEx"
@@ -17,16 +17,13 @@ S="${WORKDIR}/${MY_P}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
RDEPEND="dev-python/flask[${PYTHON_USEDEP}]
>=dev-python/Babel-1[${PYTHON_USEDEP}]
>=dev-python/speaklater-1.2[${PYTHON_USEDEP}]
>=dev-python/jinja-2.5[${PYTHON_USEDEP}]"
-BDEPEND="
- test? ( ${RDEPEND} )"
+distutils_enable_tests unittest
distutils_enable_sphinx docs \
dev-python/flask-sphinx-themes
@@ -34,5 +31,5 @@ PATCHES=( "${FILESDIR}/${PN}-0.9.3-tests-fix.patch" )
python_test() {
cd tests || die
- "${EPYTHON}" tests.py || die "Testing failed with ${EPYTHON}"
+ eunittest
}