diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-11-26 09:34:30 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-11-27 00:18:28 +0100 |
commit | 8cb2c8d12925f14c373b6e00d34a4caf0668f5d8 (patch) | |
tree | e3d30a98a27e43fa6a4e1fd448dfc115e28e0db0 /app-portage | |
parent | media-sound/pulseeffects: thanks to Jorge for his work on this package (diff) | |
download | gentoo-8cb2c8d12925f14c373b6e00d34a4caf0668f5d8.tar.gz gentoo-8cb2c8d12925f14c373b6e00d34a4caf0668f5d8.tar.bz2 gentoo-8cb2c8d12925f14c373b6e00d34a4caf0668f5d8.zip |
app-portage/gemato: Update -9999 to use setuptools
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/gemato/gemato-9999.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app-portage/gemato/gemato-9999.ebuild b/app-portage/gemato/gemato-9999.ebuild index 2df8e801b285..2475d8627bb5 100644 --- a/app-portage/gemato/gemato-9999.ebuild +++ b/app-portage/gemato/gemato-9999.ebuild @@ -24,8 +24,9 @@ RDEPEND=" gpg? ( app-crypt/gnupg ) lzma? ( $(python_gen_cond_dep 'dev-python/backports-lzma[${PYTHON_USEDEP}]' python2_7 pypy) ) sha3? ( $(python_gen_cond_dep 'dev-python/pysha3[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) )" -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" python_test() { - "${PYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}" + esetup.py test } |