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 9461615838C for ; Tue, 30 Jan 2024 09:35:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 971772BC01B; Tue, 30 Jan 2024 09:35:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 784212BC01B for ; Tue, 30 Jan 2024 09:35:34 +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 A814F3430D2 for ; Tue, 30 Jan 2024 09:35:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCB8BEC0 for ; Tue, 30 Jan 2024 09:35:31 +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: <1706607243.3e490bfd160ab363c9c1df0430eb08052c99fedf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/fwts/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/fwts/fwts-22.03.00.ebuild sys-apps/fwts/fwts-23.11.00.ebuild X-VCS-Directories: sys-apps/fwts/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3e490bfd160ab363c9c1df0430eb08052c99fedf X-VCS-Branch: master Date: Tue, 30 Jan 2024 09:35:31 +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: d8b6dd62-e14f-4c75-86cd-6ceaee65ed30 X-Archives-Hash: bb7c79ad0ce8eeca93f234416f89a120 commit: 3e490bfd160ab363c9c1df0430eb08052c99fedf Author: Sam James gentoo org> AuthorDate: Tue Jan 30 09:33:51 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 30 09:34:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e490bfd sys-apps/fwts: backport -j1 to 22.03.00. Backport the -j1 added in ce0d6536cc59402682b39018e70014612c729148 to 22.03.00. Closes: https://bugs.gentoo.org/870109 Signed-off-by: Sam James gentoo.org> sys-apps/fwts/fwts-22.03.00.ebuild | 7 ++++++- sys-apps/fwts/fwts-23.11.00.ebuild | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sys-apps/fwts/fwts-22.03.00.ebuild b/sys-apps/fwts/fwts-22.03.00.ebuild index 093cc1bcb881..8f0cfe82ca3d 100644 --- a/sys-apps/fwts/fwts-22.03.00.ebuild +++ b/sys-apps/fwts/fwts-22.03.00.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -44,6 +44,11 @@ src_prepare() { eautoreconf } +src_compile() { + # https://github.com/fwts/fwts/issues/7 (bug #870109) + emake -j1 --shuffle=none +} + src_install() { default diff --git a/sys-apps/fwts/fwts-23.11.00.ebuild b/sys-apps/fwts/fwts-23.11.00.ebuild index fc9c4f7e275a..f66a3bd4ac5c 100644 --- a/sys-apps/fwts/fwts-23.11.00.ebuild +++ b/sys-apps/fwts/fwts-23.11.00.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -43,7 +43,7 @@ src_prepare() { } src_compile() { - # https://github.com/fwts/fwts/issues/7 + # https://github.com/fwts/fwts/issues/7 (bug #870109) emake -j1 --shuffle=none }