From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1324086-garchives=archives.gentoo.org@lists.gentoo.org>
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 8755F158012
	for <garchives@archives.gentoo.org>; Sat, 25 Sep 2021 03:05:39 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id CE8E6E0924;
	Sat, 25 Sep 2021 03:05:38 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 60798E0924
	for <gentoo-commits@lists.gentoo.org>; Sat, 25 Sep 2021 03:05:38 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 142F0342A75
	for <gentoo-commits@lists.gentoo.org>; Sat, 25 Sep 2021 03:05:37 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id A4C378E
	for <gentoo-commits@lists.gentoo.org>; Sat, 25 Sep 2021 03:05:35 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1632539080.2cb90af63cbe0372a74eaee522915bf75fe63641.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/ghostscript-gpl/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-text/ghostscript-gpl/ghostscript-gpl-9.54.0-r1.ebuild
X-VCS-Directories: app-text/ghostscript-gpl/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 2cb90af63cbe0372a74eaee522915bf75fe63641
X-VCS-Branch: master
Date: Sat, 25 Sep 2021 03:05:35 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 806a638d-ab88-44fd-9b04-9e2d9b58f2d6
X-Archives-Hash: a11519dbc506b69a565033d6461388c2

commit:     2cb90af63cbe0372a74eaee522915bf75fe63641
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 25 03:04:40 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 25 03:04:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cb90af6

app-text/ghostscript-gpl: force -j1 for now in 9.54.0

Pending investigation upstream but it's not obvious
to users what to do. Especially important given
the vulnerability fixed that users are able to build
the new one.

Bug: https://bugs.gentoo.org/800125
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-text/ghostscript-gpl/ghostscript-gpl-9.54.0-r1.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0-r1.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0-r1.ebuild
index 42bd941db91..fd72246a2b0 100644
--- a/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0-r1.ebuild
+++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0-r1.ebuild
@@ -164,10 +164,12 @@ src_configure() {
 }
 
 src_compile() {
-	emake so all
+	# Forcing j1 for both emake calls for now
+	# See bug #800125
+	emake -j1 so all
 
 	cd ijs || die
-	emake
+	emake -j1
 }
 
 src_install() {