Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/python/
Date: Mon, 09 May 2022 23:38:37
Message-Id: 1652139411.62f0eea1054b7db5a761b03957c57e53ee2b070a.sam@gentoo
1 commit: 62f0eea1054b7db5a761b03957c57e53ee2b070a
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 9 23:36:51 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon May 9 23:36:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62f0eea1
7
8 dev-lang/python: add -j1 in install to 3.11.0_beta1
9
10 Not doing it just for PGO as I don't know if it's exclusive to that,
11 or just more likely there.
12
13 Obviously just a temporary thing.
14
15 Bug: https://bugs.gentoo.org/843458
16 Signed-off-by: Sam James <sam <AT> gentoo.org>
17
18 dev-lang/python/python-3.11.0_beta1-r1.ebuild | 3 ++-
19 1 file changed, 2 insertions(+), 1 deletion(-)
20
21 diff --git a/dev-lang/python/python-3.11.0_beta1-r1.ebuild b/dev-lang/python/python-3.11.0_beta1-r1.ebuild
22 index b26c9312a617..1afeef7be7a4 100644
23 --- a/dev-lang/python/python-3.11.0_beta1-r1.ebuild
24 +++ b/dev-lang/python/python-3.11.0_beta1-r1.ebuild
25 @@ -329,7 +329,8 @@ src_test() {
26 src_install() {
27 local libdir=${ED}/usr/lib/python${PYVER}
28
29 - emake DESTDIR="${D}" altinstall
30 + # -j1 hack for now for bug #843458
31 + emake -j1 DESTDIR="${D}" altinstall
32
33 # Fix collisions between different slots of Python.
34 rm "${ED}/usr/$(get_libdir)/libpython3.so" || die