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 C8B14139360 for ; Fri, 6 Aug 2021 08:38:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF56CE078A; Fri, 6 Aug 2021 08:38:54 +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 B2131E078A for ; Fri, 6 Aug 2021 08:38:54 +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 51B43335D02 for ; Fri, 6 Aug 2021 08:38:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02F917A2 for ; Fri, 6 Aug 2021 08:38:52 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1628239117.fa7a1d7e6126d198b5e01ba98dd44b965f403aaa.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/flocq/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/flocq/flocq-3.4.0-r1.ebuild sci-mathematics/flocq/flocq-3.4.0.ebuild X-VCS-Directories: sci-mathematics/flocq/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: fa7a1d7e6126d198b5e01ba98dd44b965f403aaa X-VCS-Branch: master Date: Fri, 6 Aug 2021 08:38:52 +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: 0c978138-9fd8-423d-a8f7-5ce4e9481a56 X-Archives-Hash: e44d0132fa0b8bae95ecaf106f25ad85 commit: fa7a1d7e6126d198b5e01ba98dd44b965f403aaa Author: Lucas Mitrak lucasmitrak com> AuthorDate: Thu Aug 5 21:10:07 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Aug 6 08:38:37 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fa7a1d7e sci-mathematics/flocq: EAPI bump, add multiprocessing to remake * EAPI bump from 7 to 8 * Add multiprocessing to remake using the $(makeopts_jobs) variable Currently, sci-mathematics/flocq does not have multiprocessing even though the homepage [1] states this is available. This is done by adding --jobs=$(makeopts_jobs) to remake. the makeopts_jobs variable comes from the multiprocessing eclass. [1] http://flocq.gforge.inria.fr/ Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Lucas Mitrak lucasmitrak.com> Closes: https://github.com/gentoo/sci/pull/1107 Signed-off-by: Andrew Ammerlaan gentoo.org> sci-mathematics/flocq/{flocq-3.4.0.ebuild => flocq-3.4.0-r1.ebuild} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sci-mathematics/flocq/flocq-3.4.0.ebuild b/sci-mathematics/flocq/flocq-3.4.0-r1.ebuild similarity index 89% rename from sci-mathematics/flocq/flocq-3.4.0.ebuild rename to sci-mathematics/flocq/flocq-3.4.0-r1.ebuild index e629d5628..f0e6c73a8 100644 --- a/sci-mathematics/flocq/flocq-3.4.0.ebuild +++ b/sci-mathematics/flocq/flocq-3.4.0-r1.ebuild @@ -1,7 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +inherit multiprocessing DESCRIPTION="A floating-point formalization for the Coq system" HOMEPAGE="http://flocq.gforge.inria.fr/" @@ -26,7 +28,7 @@ src_configure() { } src_compile() { - ./remake || die "emake failed" + ./remake --jobs=$(makeopts_jobs) || die "emake failed" } src_install() {