Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpy/
Date: Thu, 20 Sep 2018 12:59:03
Message-Id: 1537448328.0b5b4b4c8770a61a9eb28ca5fc45ceca65a7ee6d.whissi@gentoo
1 commit: 0b5b4b4c8770a61a9eb28ca5fc45ceca65a7ee6d
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 20 12:50:41 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 20 12:58:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b5b4b4c
7
8 dev-python/numpy: force MAKEOPTS=-j1
9
10 Looks like nobody cares. To allow users to build that package in
11 the meanwhile, let's force MAKEOPTS=-j1.
12
13 Bug: https://bugs.gentoo.org/660754
14 Package-Manager: Portage-2.3.49, Repoman-2.3.10
15
16 dev-python/numpy/numpy-1.10.4.ebuild | 2 ++
17 dev-python/numpy/numpy-1.13.3.ebuild | 2 ++
18 dev-python/numpy/numpy-1.14.5.ebuild | 2 ++
19 dev-python/numpy/numpy-9999.ebuild | 2 ++
20 4 files changed, 8 insertions(+)
21
22 diff --git a/dev-python/numpy/numpy-1.10.4.ebuild b/dev-python/numpy/numpy-1.10.4.ebuild
23 index 73fc16097f8..19b3f9751ad 100644
24 --- a/dev-python/numpy/numpy-1.10.4.ebuild
25 +++ b/dev-python/numpy/numpy-1.10.4.ebuild
26 @@ -117,6 +117,8 @@ python_prepare_all() {
27 }
28
29 python_compile() {
30 + export MAKEOPTS=-j1 # bug #660754
31 +
32 distutils-r1_python_compile \
33 $(usex python_targets_python3_5 "" "-j $(makeopts_jobs)") \
34 ${NUMPY_FCONFIG}
35
36 diff --git a/dev-python/numpy/numpy-1.13.3.ebuild b/dev-python/numpy/numpy-1.13.3.ebuild
37 index c618235d2a4..7242f677775 100644
38 --- a/dev-python/numpy/numpy-1.13.3.ebuild
39 +++ b/dev-python/numpy/numpy-1.13.3.ebuild
40 @@ -127,6 +127,8 @@ python_prepare_all() {
41 }
42
43 python_compile() {
44 + export MAKEOPTS=-j1 # bug #660754
45 +
46 local python_makeopts_jobs=""
47 python_is_python3 || python_makeopts_jobs="-j $(makeopts_jobs)"
48 distutils-r1_python_compile \
49
50 diff --git a/dev-python/numpy/numpy-1.14.5.ebuild b/dev-python/numpy/numpy-1.14.5.ebuild
51 index cbedba5f96f..1b047af1659 100644
52 --- a/dev-python/numpy/numpy-1.14.5.ebuild
53 +++ b/dev-python/numpy/numpy-1.14.5.ebuild
54 @@ -114,6 +114,8 @@ python_prepare_all() {
55 }
56
57 python_compile() {
58 + export MAKEOPTS=-j1 # bug #660754
59 +
60 local python_makeopts_jobs=""
61 python_is_python3 || python_makeopts_jobs="-j $(makeopts_jobs)"
62 distutils-r1_python_compile \
63
64 diff --git a/dev-python/numpy/numpy-9999.ebuild b/dev-python/numpy/numpy-9999.ebuild
65 index aa2a3abfa0e..dd08eecdb02 100644
66 --- a/dev-python/numpy/numpy-9999.ebuild
67 +++ b/dev-python/numpy/numpy-9999.ebuild
68 @@ -104,6 +104,8 @@ python_prepare_all() {
69 }
70
71 python_compile() {
72 + export MAKEOPTS=-j1 # bug #660754
73 +
74 distutils-r1_python_compile -j $(makeopts_jobs) ${NUMPY_FCONFIG}
75 }