dev-ada/langkit: fix dependency and try to respect -j1

Bug: https://bugs.gentoo.org/677816
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
This commit is contained in:
Tupone Alfredo
2019-07-07 21:57:09 +02:00
parent 86c103015e
commit 6d2d3967e7
2 changed files with 5 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1
inherit python-single-r1 multiprocessing
MYP=${PN}-gpl-${PV}
@@ -24,6 +24,7 @@ DEPEND="${PYTHON_DEPS}
dev-ada/gnatcoll-bindings[iconv,shared]
dev-python/mako
dev-python/pyyaml
<dev-python/pyyaml-5
dev-python/enum34
dev-python/funcy
dev-python/docutils
@@ -35,7 +36,7 @@ S="${WORKDIR}"/${MYP}-src
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
src_test() {
testsuite/testsuite.py --show-error-output | tee testsuite.log
testsuite/testsuite.py -j $(makeopts_jobs) --show-error-output | tee testsuite.log
grep -q FAILED testsuite.log && die "Test failed"
}

View File

@@ -5,7 +5,7 @@ EAPI=7
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1
inherit python-single-r1 multiprocessing
MYP=${P}-20190510-19B8C
@@ -36,7 +36,7 @@ S="${WORKDIR}"/${MYP}-src
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
src_test() {
testsuite/testsuite.py --show-error-output | tee testsuite.log
testsuite/testsuite.py -j $(makeopts_jobs) --show-error-output | tee testsuite.log
grep -q FAILED testsuite.log && die "Test failed"
}