From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 73C24138239 for ; Thu, 20 Sep 2018 12:59:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8506EE08DD; Thu, 20 Sep 2018 12:59:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5B61FE08DD for ; Thu, 20 Sep 2018 12:59:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A467F335CC3 for ; Thu, 20 Sep 2018 12:59:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C38638A for ; Thu, 20 Sep 2018 12:58:58 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1537448328.0b5b4b4c8770a61a9eb28ca5fc45ceca65a7ee6d.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/numpy/numpy-1.10.4.ebuild dev-python/numpy/numpy-1.13.3.ebuild dev-python/numpy/numpy-1.14.5.ebuild dev-python/numpy/numpy-9999.ebuild X-VCS-Directories: dev-python/numpy/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 0b5b4b4c8770a61a9eb28ca5fc45ceca65a7ee6d X-VCS-Branch: master Date: Thu, 20 Sep 2018 12:58:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f4a6f96e-1fbb-4007-a7ed-43cba391c7e9 X-Archives-Hash: 31ee398109ec85ec02a9211124578896 commit: 0b5b4b4c8770a61a9eb28ca5fc45ceca65a7ee6d Author: Thomas Deutschmann gentoo org> AuthorDate: Thu Sep 20 12:50:41 2018 +0000 Commit: Thomas Deutschmann gentoo 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} }