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 CB08B1382C5 for ; Fri, 9 Apr 2021 12:21:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AF0BE0917; Fri, 9 Apr 2021 12:21:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 15F86E0917 for ; Fri, 9 Apr 2021 12:21:21 +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 D6B2B340B9C for ; Fri, 9 Apr 2021 12:21:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4312663F for ; Fri, 9 Apr 2021 12:21:18 +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: <1617970856.f33e9d3ef4e035f1f823ec2e2ff2ec2d88751bc0.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/cantera/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/cantera/cantera-2.5.1-r1.ebuild X-VCS-Directories: sci-libs/cantera/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: f33e9d3ef4e035f1f823ec2e2ff2ec2d88751bc0 X-VCS-Branch: master Date: Fri, 9 Apr 2021 12:21:18 +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: a47373e7-dd29-4f6c-a383-6c46c0655362 X-Archives-Hash: 4b9a5c07d13922b46eb89908a037230c commit: f33e9d3ef4e035f1f823ec2e2ff2ec2d88751bc0 Author: Sergey Torokhov yandex ru> AuthorDate: Mon Mar 22 21:11:43 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Apr 9 12:20:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f33e9d3e sci-libs/cantera: 2.5.1, add USE=lapack Add USE=lapack to use Lapack insatead of Eigen for linear algebra support in some cases. Eigen is still required if Lapack support is enabled. The sci-libs/sundials[lapack] is required to build with Lapack support. Signed-off-by: Sergey Torokhov yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/20071 Signed-off-by: Joonas Niilola gentoo.org> sci-libs/cantera/cantera-2.5.1-r1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sci-libs/cantera/cantera-2.5.1-r1.ebuild b/sci-libs/cantera/cantera-2.5.1-r1.ebuild index 4cf4cc6c3c3..2bf3e5d6a74 100644 --- a/sci-libs/cantera/cantera-2.5.1-r1.ebuild +++ b/sci-libs/cantera/cantera-2.5.1-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://github.com/Cantera/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+cti fortran pch +python test" +IUSE="+cti fortran lapack pch +python test" RESTRICT="!test? ( test )" REQUIRED_USE=" @@ -27,6 +27,7 @@ REQUIRED_USE=" RDEPEND=" ${PYTHON_DEPS} + lapack? ( virtual/lapack ) python? ( $(python_gen_cond_dep ' dev-python/numpy[${PYTHON_MULTI_USEDEP}] @@ -34,7 +35,7 @@ RDEPEND=" ') ) dev-cpp/yaml-cpp -