diff options
author | David Seifert <soap@gentoo.org> | 2021-06-28 19:11:27 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-06-28 19:11:27 +0200 |
commit | 4189f529dec8932bcccc9a2ec64c99b1750bf6a4 (patch) | |
tree | aaa4646e889fddc9b49ecd20cd08f341cc09aeb1 /app-admin/gixy | |
parent | games-board/fruit: EAPI 6->8, versionator--, prefix/cxx fix (diff) | |
download | gentoo-4189f529dec8932bcccc9a2ec64c99b1750bf6a4.tar.gz gentoo-4189f529dec8932bcccc9a2ec64c99b1750bf6a4.tar.bz2 gentoo-4189f529dec8932bcccc9a2ec64c99b1750bf6a4.zip |
app-admin/gixy: [QA] fix python_prepare_all
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-admin/gixy')
-rw-r--r-- | app-admin/gixy/gixy-0.1.20.ebuild | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/app-admin/gixy/gixy-0.1.20.ebuild b/app-admin/gixy/gixy-0.1.20.ebuild index c31b3f930086..6f531a1ac959 100644 --- a/app-admin/gixy/gixy-0.1.20.ebuild +++ b/app-admin/gixy/gixy-0.1.20.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -16,27 +16,17 @@ SRC_URI="https://github.com/yandex/gixy/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MPL-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" -RDEPEND=">=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}] +RDEPEND=" + >=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}] >=dev-python/cached-property-1.2.0[${PYTHON_USEDEP}] >=dev-python/configargparse-0.11.0[${PYTHON_USEDEP}] >=dev-python/jinja-2.8[${PYTHON_USEDEP}] >=dev-python/six-1.1.0[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/nose[${PYTHON_USEDEP}] - ${RDEPEND} - ) -" +distutils_enable_tests nose -python_prepare() { +python_prepare_all() { sed -i -e "/argparse/d" setup.py || die distutils-r1_python_prepare_all } - -python_test() { - nosetests -v || die -} |