dev-python/more-itertools: Enable py3.8, modernize
authorMichał Górny <mgorny@gentoo.org>
Sat, 16 Nov 2019 09:53:18 +0000 (10:53 +0100)
committerMichał Górny <mgorny@gentoo.org>
Sat, 16 Nov 2019 11:01:15 +0000 (12:01 +0100)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
dev-python/more-itertools/more-itertools-5.0.0.ebuild
dev-python/more-itertools/more-itertools-7.0.0.ebuild

index 76d7ff3d2c983a37a6405483d3ff579df9e76dfb..f1084c6e2e42109820eee8292bd90f7e1925a0cb 100644 (file)
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6,7}} )
+PYTHON_COMPAT=( python{2_7,3_{5,6,7,8}} pypy{,3} )
 
 inherit distutils-r1
 
@@ -14,26 +14,30 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
+IUSE="doc"
 
 RDEPEND="<dev-python/six-2.0[${PYTHON_USEDEP}]"
-DEPEND="
+BDEPEND="
        dev-python/setuptools[${PYTHON_USEDEP}]
        doc? (
-               dev-python/sphinx[${PYTHON_USEDEP}]
-               dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+               $(python_gen_any_dep '
+                       dev-python/sphinx[${PYTHON_USEDEP}]
+                       dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+               ' python3_{5,6,7} pypy{,3})
        )
-       test? ( ${RDEPEND} )
 "
 
+distutils_enable_tests unittest
+
+python_check_deps() {
+       use doc || return 0
+       has_version "dev-python/sphinx[${PYTHON_USEDEP}]" &&
+               has_version "dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]"
+}
+
 python_compile_all() {
        if use doc; then
                sphinx-build docs docs/_build/html || die
                HTML_DOCS=( docs/_build/html/. )
        fi
 }
-
-python_test() {
-       "${EPYTHON}" -m unittest discover -v || die "tests fail with ${EPYTHON}"
-}
index 9671e3461b2eb846bb4d208ce596f15c0f96d02a..b68c576d0f850e22e76116d154fd4b02da5ce0f6 100644 (file)
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{5,6,7} pypy{,3} )
+PYTHON_COMPAT=( python3_{5,6,7,8} pypy{,3} )
 
 inherit distutils-r1
 
@@ -16,22 +16,27 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc"
 
-RDEPEND=""
-DEPEND="
+BDEPEND="
        dev-python/setuptools[${PYTHON_USEDEP}]
        doc? (
-               dev-python/sphinx[${PYTHON_USEDEP}]
-               dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+               $(python_gen_any_dep '
+                       dev-python/sphinx[${PYTHON_USEDEP}]
+                       dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+               ' python3_{5,6,7} pypy{,3})
        )
 "
 
+distutils_enable_tests unittest
+
+python_check_deps() {
+       use doc || return 0
+       has_version "dev-python/sphinx[${PYTHON_USEDEP}]" &&
+               has_version "dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]"
+}
+
 python_compile_all() {
        if use doc; then
                sphinx-build docs docs/_build/html || die
                HTML_DOCS=( docs/_build/html/. )
        fi
 }
-
-python_test() {
-       "${EPYTHON}" -m unittest discover -v || die "tests fail with ${EPYTHON}"
-}