From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7F6F0158094 for ; Fri, 9 Sep 2022 14:43:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA5B0E0916; Fri, 9 Sep 2022 14:43:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF865E0916 for ; Fri, 9 Sep 2022 14:43:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A92A734111A for ; Fri, 9 Sep 2022 14:43:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2CC45A4 for ; Fri, 9 Sep 2022 14:43:29 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1662734587.881a6712cd47c459923415c8c86e3bd3d8aa0d3b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild X-VCS-Directories: sys-devel/autoconf-dickey/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 881a6712cd47c459923415c8c86e3bd3d8aa0d3b X-VCS-Branch: master Date: Fri, 9 Sep 2022 14:43:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: df9ceb24-5d46-49c0-9ac0-87356ba93119 X-Archives-Hash: 6c3461f153f2fa168c64519d856b4501 commit: 881a6712cd47c459923415c8c86e3bd3d8aa0d3b Author: Sam James gentoo org> AuthorDate: Fri Sep 9 14:43:07 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 9 14:43:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881a6712 sys-devel/autoconf-dickey: force -j1 for tests They still fail, but very differently. May just be because of grep 3.8. Closes: https://bugs.gentoo.org/869278 Signed-off-by: Sam James gentoo.org> sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild index c02432050d58..f3ca0509bac2 100644 --- a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild +++ b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild @@ -39,3 +39,8 @@ src_configure() { econf "${myeconfargs[@]}" } + +src_test() { + # -j1 for bug #869278 + emake -j1 check +}