commit: 0b5b4b4c8770a61a9eb28ca5fc45ceca65a7ee6d Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> AuthorDate: Thu Sep 20 12:50:41 2018 +0000 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> CommitDate: Thu Sep 20 12:58:48 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b5b4b4c
dev-python/numpy: force MAKEOPTS=-j1 Looks like nobody cares. To allow users to build that package in the meanwhile, let's force MAKEOPTS=-j1. Bug: https://bugs.gentoo.org/660754 Package-Manager: Portage-2.3.49, Repoman-2.3.10 dev-python/numpy/numpy-1.10.4.ebuild | 2 ++ dev-python/numpy/numpy-1.13.3.ebuild | 2 ++ dev-python/numpy/numpy-1.14.5.ebuild | 2 ++ dev-python/numpy/numpy-9999.ebuild | 2 ++ 4 files changed, 8 insertions(+) diff --git a/dev-python/numpy/numpy-1.10.4.ebuild b/dev-python/numpy/numpy-1.10.4.ebuild index 73fc16097f8..19b3f9751ad 100644 --- a/dev-python/numpy/numpy-1.10.4.ebuild +++ b/dev-python/numpy/numpy-1.10.4.ebuild @@ -117,6 +117,8 @@ python_prepare_all() { } python_compile() { + export MAKEOPTS=-j1 # bug #660754 + distutils-r1_python_compile \ $(usex python_targets_python3_5 "" "-j $(makeopts_jobs)") \ ${NUMPY_FCONFIG} diff --git a/dev-python/numpy/numpy-1.13.3.ebuild b/dev-python/numpy/numpy-1.13.3.ebuild index c618235d2a4..7242f677775 100644 --- a/dev-python/numpy/numpy-1.13.3.ebuild +++ b/dev-python/numpy/numpy-1.13.3.ebuild @@ -127,6 +127,8 @@ python_prepare_all() { } python_compile() { + export MAKEOPTS=-j1 # bug #660754 + local python_makeopts_jobs="" python_is_python3 || python_makeopts_jobs="-j $(makeopts_jobs)" distutils-r1_python_compile \ diff --git a/dev-python/numpy/numpy-1.14.5.ebuild b/dev-python/numpy/numpy-1.14.5.ebuild index cbedba5f96f..1b047af1659 100644 --- a/dev-python/numpy/numpy-1.14.5.ebuild +++ b/dev-python/numpy/numpy-1.14.5.ebuild @@ -114,6 +114,8 @@ python_prepare_all() { } python_compile() { + export MAKEOPTS=-j1 # bug #660754 + local python_makeopts_jobs="" python_is_python3 || python_makeopts_jobs="-j $(makeopts_jobs)" distutils-r1_python_compile \ diff --git a/dev-python/numpy/numpy-9999.ebuild b/dev-python/numpy/numpy-9999.ebuild index aa2a3abfa0e..dd08eecdb02 100644 --- a/dev-python/numpy/numpy-9999.ebuild +++ b/dev-python/numpy/numpy-9999.ebuild @@ -104,6 +104,8 @@ python_prepare_all() { } python_compile() { + export MAKEOPTS=-j1 # bug #660754 + distutils-r1_python_compile -j $(makeopts_jobs) ${NUMPY_FCONFIG} }
