Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-libs/ButterflyPACK/
Date: Sun, 26 Jun 2022 02:36:47
Message-Id: 1656210585.9359f6ddc9223be811207768e02eb8a955e1c254.Alessandro-Barbieri@gentoo
1 commit: 9359f6ddc9223be811207768e02eb8a955e1c254
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Fri Jun 24 23:27:04 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sun Jun 26 02:29:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9359f6dd
7
8 sci-libs/ButterflyPACK: use parpack instead of arpack
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 .../{ButterflyPACK-2.1.1.ebuild => ButterflyPACK-2.1.1-r1.ebuild} | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/sci-libs/ButterflyPACK/ButterflyPACK-2.1.1.ebuild b/sci-libs/ButterflyPACK/ButterflyPACK-2.1.1-r1.ebuild
16 similarity index 95%
17 rename from sci-libs/ButterflyPACK/ButterflyPACK-2.1.1.ebuild
18 rename to sci-libs/ButterflyPACK/ButterflyPACK-2.1.1-r1.ebuild
19 index fc3c26b5f..a56e663f3 100644
20 --- a/sci-libs/ButterflyPACK/ButterflyPACK-2.1.1.ebuild
21 +++ b/sci-libs/ButterflyPACK/ButterflyPACK-2.1.1-r1.ebuild
22 @@ -20,7 +20,7 @@ RDEPEND="
23 virtual/lapack
24 virtual/mpi
25
26 - arpack? ( sci-libs/arpack )
27 + arpack? ( sci-libs/arpack[mpi] )
28 magma? ( sci-libs/magma )
29 "
30 DEPEND="${RDEPEND}"
31 @@ -33,7 +33,7 @@ src_configure() {
32 local mycmakeargs=(
33 -DBUILD_SHARED_LIBS=ON
34 )
35 - use arpack && mycmakeargs+=( "-DTPL_ARPACK_LIBRARIES=$(${pkgc} --libs arpack)" )
36 + use arpack && mycmakeargs+=( "-DTPL_ARPACK_LIBRARIES=$(${pkgc} --libs parpack)" )
37 use magma && mycmakeargs+=( "-DTPL_MAGMA_LIBRARIES=$(${pkgc} --libs magma)" )
38 cmake_src_configure
39 }