Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/DBI/
Date: Fri, 11 Jan 2019 10:03:24
Message-Id: 1547200983.da0ca02d4d009136cf90dacb4c9fa8d07c41df28.kentnl@gentoo
1 commit: da0ca02d4d009136cf90dacb4c9fa8d07c41df28
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 11 10:00:22 2019 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 11 10:03:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da0ca02d
7
8 dev-perl/DBI: Workaround test failures with -jx w/ x > 70 bug #675164
9
10 Bug: https://bugs.gentoo.org/675164
11 Package-Manager: Portage-2.3.55, Repoman-2.3.12
12 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
13
14 dev-perl/DBI/DBI-1.637.0.ebuild | 6 +++++-
15 1 file changed, 5 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-perl/DBI/DBI-1.637.0.ebuild b/dev-perl/DBI/DBI-1.637.0.ebuild
18 index 70e87656bce..1676a747a16 100644
19 --- a/dev-perl/DBI/DBI-1.637.0.ebuild
20 +++ b/dev-perl/DBI/DBI-1.637.0.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 +# Copyright 1999-2019 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=6
27 @@ -27,6 +27,10 @@ DEPEND="${RDEPEND}
28 )
29 "
30 src_test() {
31 + if [[ $(makeopts_jobs) -gt 70 ]]; then
32 + einfo "Reducing jobs to 70. Bug: https://bugs.gentoo.org/675164"
33 + MAKEOPTS="${MAKEOPTS} -j70";
34 + fi
35 perl_rm_files t/pod-coverage.t t/pod.t
36 perl-module_src_test
37 }