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 D7073138359 for ; Fri, 24 Jul 2020 12:03:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A0D0E0876; Fri, 24 Jul 2020 12:03:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 50228E0876 for ; Fri, 24 Jul 2020 12:03:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2E18534F217 for ; Fri, 24 Jul 2020 12:03:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 291A02EF for ; Fri, 24 Jul 2020 12:03:48 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1595592210.07473f74b43a0d9ae4d7a0d5784ba3444ed020a9.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/hpx/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/hpx/hpx-9999.ebuild X-VCS-Directories: sys-cluster/hpx/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 07473f74b43a0d9ae4d7a0d5784ba3444ed020a9 X-VCS-Branch: master Date: Fri, 24 Jul 2020 12:03:48 +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: 17123f41-e9f3-467b-83b3-e335dc4acfec X-Archives-Hash: 8f9d98aee3ba96e0e2fdf56993104a41 commit: 07473f74b43a0d9ae4d7a0d5784ba3444ed020a9 Author: Kurt Kanzenbach kmk-computers de> AuthorDate: Sun Jul 12 14:22:36 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Jul 24 12:03:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07473f74 sys-cluster/hpx: Sync live ebuild Package-Manager: Portage-2.3.99, Repoman-2.3.23 Signed-off-by: Kurt Kanzenbach kmk-computers.de> Closes: https://github.com/gentoo/gentoo/pull/16679 Signed-off-by: Joonas Niilola gentoo.org> sys-cluster/hpx/hpx-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild index 25019566f39..168825c65b0 100644 --- a/sys-cluster/hpx/hpx-9999.ebuild +++ b/sys-cluster/hpx/hpx-9999.ebuild @@ -12,7 +12,7 @@ else SRC_URI="https://stellar.cct.lsu.edu/files/${PN}_${PV}.tar.gz" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" fi -inherit cmake fortran-2 python-single-r1 check-reqs +inherit cmake fortran-2 python-single-r1 check-reqs multiprocessing DESCRIPTION="C++ runtime system for parallel and distributed applications" HOMEPAGE="https://stellar.cct.lsu.edu/tag/hpx/" @@ -58,7 +58,7 @@ hpx_memory_requirement() { if [[ -z ${MAKEOPTS} ]] ; then echo "2G" else - local jobs=`echo ${MAKEOPTS} | cut -d j -f 2` + local jobs=$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)") echo "${jobs}G" fi }