dev-python/reedsolomon: fix ebuild, add necessary dependency

Unfortunately the buildtime dependency dev-python/cython is missing.
This ebuild fixes this.

Closes: https://bugs.gentoo.org/757486
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Martin Dummer <martin.dummer@gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/18465
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Martin Dummer
2020-11-30 22:47:14 +01:00
committed by Joonas Niilola
parent 2cc5c8b1b4
commit 271cb56e62

View File

@@ -16,6 +16,10 @@ KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="
dev-python/cython[${PYTHON_USEDEP}]
"
python_test() {
${EPYTHON} tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
${EPYTHON} tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"