Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/ghostscript-gpl/
Date: Sat, 25 Sep 2021 03:05:39
Message-Id: 1632539080.2cb90af63cbe0372a74eaee522915bf75fe63641.sam@gentoo
1 commit: 2cb90af63cbe0372a74eaee522915bf75fe63641
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 25 03:04:40 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 25 03:04:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cb90af6
7
8 app-text/ghostscript-gpl: force -j1 for now in 9.54.0
9
10 Pending investigation upstream but it's not obvious
11 to users what to do. Especially important given
12 the vulnerability fixed that users are able to build
13 the new one.
14
15 Bug: https://bugs.gentoo.org/800125
16 Signed-off-by: Sam James <sam <AT> gentoo.org>
17
18 app-text/ghostscript-gpl/ghostscript-gpl-9.54.0-r1.ebuild | 6 ++++--
19 1 file changed, 4 insertions(+), 2 deletions(-)
20
21 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
22 index 42bd941db91..fd72246a2b0 100644
23 --- a/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0-r1.ebuild
24 +++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0-r1.ebuild
25 @@ -164,10 +164,12 @@ src_configure() {
26 }
27
28 src_compile() {
29 - emake so all
30 + # Forcing j1 for both emake calls for now
31 + # See bug #800125
32 + emake -j1 so all
33
34 cd ijs || die
35 - emake
36 + emake -j1
37 }
38
39 src_install() {