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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 401AE138351 for ; Fri, 24 Apr 2020 16:53:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 713B3E0A44; Fri, 24 Apr 2020 16:53:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5D242E0A44 for ; Fri, 24 Apr 2020 16:53:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CB4C734F05E for ; Fri, 24 Apr 2020 16:53:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C56E1ED for ; Fri, 24 Apr 2020 16:53:23 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1587747177.68e5fe99597eee7c72a0072077141c57f9ea6a34.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/yasm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/yasm/yasm-1.3.0.ebuild dev-lang/yasm/yasm-9999.ebuild X-VCS-Directories: dev-lang/yasm/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 68e5fe99597eee7c72a0072077141c57f9ea6a34 X-VCS-Branch: master Date: Fri, 24 Apr 2020 16:53:23 +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: 4ebef8ad-f517-423e-b92d-ba2dcc9a9784 X-Archives-Hash: cc366b5583d5d7432d799e82c60d83e2 commit: 68e5fe99597eee7c72a0072077141c57f9ea6a34 Author: Mike Gilbert gentoo org> AuthorDate: Fri Apr 24 16:51:22 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Apr 24 16:52:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68e5fe99 dev-lang/yasm: run tests with a single job Closes: https://bugs.gentoo.org/718870 Signed-off-by: Mike Gilbert gentoo.org> dev-lang/yasm/yasm-1.3.0.ebuild | 3 ++- dev-lang/yasm/yasm-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-lang/yasm/yasm-1.3.0.ebuild b/dev-lang/yasm/yasm-1.3.0.ebuild index 53906bb765c..fab7341fef1 100644 --- a/dev-lang/yasm/yasm-1.3.0.ebuild +++ b/dev-lang/yasm/yasm-1.3.0.ebuild @@ -40,5 +40,6 @@ src_configure() { } src_test() { - emake check + # https://bugs.gentoo.org/718870 + emake -j1 check } diff --git a/dev-lang/yasm/yasm-9999.ebuild b/dev-lang/yasm/yasm-9999.ebuild index bb7aeeb4452..df73fec26ad 100644 --- a/dev-lang/yasm/yasm-9999.ebuild +++ b/dev-lang/yasm/yasm-9999.ebuild @@ -67,5 +67,6 @@ src_configure() { } src_test() { - emake check + # https://bugs.gentoo.org/718870 + emake -j1 check }