From: Michał Górny Date: Thu, 19 Mar 2020 06:37:13 +0000 (+0100) Subject: dev-python/jsmin: Modernize, py3.{7,8} X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=be8e7594c4887aae23be3790e13423bb242acf44;p=gentoo.git dev-python/jsmin: Modernize, py3.{7,8} Bug: https://bugs.gentoo.org/711808 Signed-off-by: Michał Górny --- diff --git a/dev-python/jsmin/jsmin-2.2.2.ebuild b/dev-python/jsmin/jsmin-2.2.2.ebuild index 76dc206a48e6..4a73f6c17ca0 100644 --- a/dev-python/jsmin/jsmin-2.2.2.ebuild +++ b/dev-python/jsmin/jsmin-2.2.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python3_6 ) +PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 @@ -16,8 +16,6 @@ IUSE="" LICENSE="MIT" SLOT="0" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - python_test() { - "${PYTHON}" -m ${PN}.test || die + "${EPYTHON}" -m jsmin.test -v || die "Tests failed with ${EPYTHON}" }