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 4DBAB138334 for ; Sun, 3 Mar 2019 16:29:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50BA4E092D; Sun, 3 Mar 2019 16:29:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 0AFA1E092D for ; Sun, 3 Mar 2019 16:29:34 +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 99A51335D00 for ; Sun, 3 Mar 2019 16:29:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4275E542 for ; Sun, 3 Mar 2019 16:29:32 +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: <1551630562.d5337dedc68adc4dfcbfe8bb045c96554512aabf.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.13.3.ebuild dev-python/numpy/numpy-1.14.5.ebuild dev-python/numpy/numpy-1.15.4.ebuild dev-python/numpy/numpy-1.16.1.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: d5337dedc68adc4dfcbfe8bb045c96554512aabf X-VCS-Branch: master Date: Sun, 3 Mar 2019 16:29:32 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6001645d-e585-457e-89f0-5fdc4869368f X-Archives-Hash: c8c0a943ef22392bfbd75fbcfef58f9f commit: d5337dedc68adc4dfcbfe8bb045c96554512aabf Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Mar 3 16:29:22 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Mar 3 16:29:22 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5337ded dev-python/numpy: force MAKEOPTS=-j1 for all USE configurations ...even failing for USE=lapack on some systems. Bug: https://bugs.gentoo.org/660754 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Thomas Deutschmann gentoo.org> dev-python/numpy/numpy-1.13.3.ebuild | 2 +- dev-python/numpy/numpy-1.14.5.ebuild | 2 +- dev-python/numpy/numpy-1.15.4.ebuild | 2 +- dev-python/numpy/numpy-1.16.1.ebuild | 2 +- dev-python/numpy/numpy-9999.ebuild | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-python/numpy/numpy-1.13.3.ebuild b/dev-python/numpy/numpy-1.13.3.ebuild index 38ab8f14ce3..a5c8d4c1b90 100644 --- a/dev-python/numpy/numpy-1.13.3.ebuild +++ b/dev-python/numpy/numpy-1.13.3.ebuild @@ -127,7 +127,7 @@ python_prepare_all() { } python_compile() { - use !lapack && export MAKEOPTS=-j1 #660754 + export MAKEOPTS=-j1 #660754 local python_makeopts_jobs="" python_is_python3 || python_makeopts_jobs="-j $(makeopts_jobs)" diff --git a/dev-python/numpy/numpy-1.14.5.ebuild b/dev-python/numpy/numpy-1.14.5.ebuild index e48e1dc7034..91878ae0ac9 100644 --- a/dev-python/numpy/numpy-1.14.5.ebuild +++ b/dev-python/numpy/numpy-1.14.5.ebuild @@ -114,7 +114,7 @@ python_prepare_all() { } python_compile() { - use !lapack && export MAKEOPTS=-j1 #660754 + export MAKEOPTS=-j1 #660754 local python_makeopts_jobs="" python_is_python3 || python_makeopts_jobs="-j $(makeopts_jobs)" diff --git a/dev-python/numpy/numpy-1.15.4.ebuild b/dev-python/numpy/numpy-1.15.4.ebuild index 5e43b353b72..61c12ef0dd5 100644 --- a/dev-python/numpy/numpy-1.15.4.ebuild +++ b/dev-python/numpy/numpy-1.15.4.ebuild @@ -109,7 +109,7 @@ python_prepare_all() { } python_compile() { - use !lapack && export MAKEOPTS=-j1 #660754 + export MAKEOPTS=-j1 #660754 local python_makeopts_jobs="" python_is_python3 || python_makeopts_jobs="-j $(makeopts_jobs)" diff --git a/dev-python/numpy/numpy-1.16.1.ebuild b/dev-python/numpy/numpy-1.16.1.ebuild index ecb913628ef..66327cf6314 100644 --- a/dev-python/numpy/numpy-1.16.1.ebuild +++ b/dev-python/numpy/numpy-1.16.1.ebuild @@ -112,7 +112,7 @@ python_prepare_all() { } python_compile() { - use !lapack && export MAKEOPTS=-j1 #660754 + export MAKEOPTS=-j1 #660754 local python_makeopts_jobs="" python_is_python3 || python_makeopts_jobs="-j $(makeopts_jobs)" diff --git a/dev-python/numpy/numpy-9999.ebuild b/dev-python/numpy/numpy-9999.ebuild index 7232ea8a951..1a6cd293f26 100644 --- a/dev-python/numpy/numpy-9999.ebuild +++ b/dev-python/numpy/numpy-9999.ebuild @@ -104,7 +104,7 @@ python_prepare_all() { } python_compile() { - use !lapack && export MAKEOPTS=-j1 #660754 + export MAKEOPTS=-j1 #660754 distutils-r1_python_compile -j $(makeopts_jobs) ${NUMPY_FCONFIG} }