Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/hypre: hypre-2.9.0b.ebuild ChangeLog
Date: Mon, 09 Jun 2014 03:17:11
Message-Id: 20140609031704.C498F20036@flycatcher.gentoo.org
1 bicatali 14/06/09 03:17:04
2
3 Modified: hypre-2.9.0b.ebuild ChangeLog
4 Log:
5 Fixed underlinking (bug #493222) and enabling MPI (bug #508030) thanks Matthias Maier
6
7 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
8
9 Revision Changes Path
10 1.4 sci-libs/hypre/hypre-2.9.0b.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild?r1=1.3&r2=1.4
15
16 Index: hypre-2.9.0b.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- hypre-2.9.0b.ebuild 22 Apr 2014 17:27:16 -0000 1.3
23 +++ hypre-2.9.0b.ebuild 9 Jun 2014 03:17:04 -0000 1.4
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild,v 1.3 2014/04/22 17:27:16 bicatali Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild,v 1.4 2014/06/09 03:17:04 bicatali Exp $
29
30 EAPI=5
31
32 @@ -15,14 +15,12 @@
33 LICENSE="LGPL-2.1"
34 SLOT="0/${PV}"
35 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
36 -IUSE="blas doc examples fortran lapack mpi"
37 -
38 -REQUIRED_USE="mpi? ( fortran lapack )"
39 +IUSE="doc examples fortran mpi"
40
41 RDEPEND="
42 sci-libs/superlu:0=
43 - blas? ( virtual/blas )
44 - lapack? ( virtual/lapack )
45 + virtual/blas
46 + virtual/lapack
47 mpi? ( virtual/mpi )"
48 DEPEND="${RDEPEND}
49 virtual/pkgconfig"
50 @@ -50,29 +48,16 @@
51 }
52
53 src_configure() {
54 - local myeconfargs+=(
55 + local myeconfargs=(
56 --enable-shared
57 --without-superlu
58 - --without-strict-checking
59 + --with-blas-libs="$($(tc-getPKG_CONFIG) --libs-only-l blas | sed -e 's/-l//g')"
60 + --with-blas-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L blas | sed -e 's/-L//g')"
61 + --with-lapack-libs="$($(tc-getPKG_CONFIG) --libs-only-l lapack | sed -e 's/-l//g')"
62 + --with-lapack-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L lapack | sed -e 's/-L//g')"
63 $(use_enable fortran)
64 $(use_with mpi MPI)
65 )
66 - if use blas; then
67 - myeconfargs+=(
68 - --with-blas-libs="$($(tc-getPKG_CONFIG) --libs-only-l blas | sed -e 's/-l//g')"
69 - --with-blas-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L blas | sed -e 's/-L//g')"
70 - )
71 - else
72 - myeconfargs+=( --without-blas )
73 - fi
74 - if use lapack; then
75 - myeconfargs+=(
76 - --with-lapack-libs="$($(tc-getPKG_CONFIG) --libs-only-l lapack | sed -e 's/-l//g')"
77 - --with-lapack-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L lapack | sed -e 's/-L//g')"
78 - )
79 - else
80 - myeconfargs+=( --without-lapack )
81 - fi
82 econf "${myeconfargs[@]}"
83 }
84
85
86
87
88 1.14 sci-libs/hypre/ChangeLog
89
90 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/ChangeLog?rev=1.14&view=markup
91 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/ChangeLog?rev=1.14&content-type=text/plain
92 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/ChangeLog?r1=1.13&r2=1.14
93
94 Index: ChangeLog
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/sci-libs/hypre/ChangeLog,v
97 retrieving revision 1.13
98 retrieving revision 1.14
99 diff -u -r1.13 -r1.14
100 --- ChangeLog 22 Apr 2014 17:27:16 -0000 1.13
101 +++ ChangeLog 9 Jun 2014 03:17:04 -0000 1.14
102 @@ -1,6 +1,10 @@
103 # ChangeLog for sci-libs/hypre
104 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
105 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/hypre/ChangeLog,v 1.13 2014/04/22 17:27:16 bicatali Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/hypre/ChangeLog,v 1.14 2014/06/09 03:17:04 bicatali Exp $
107 +
108 + 09 Jun 2014; Sébastien Fabbro <bicatali@g.o> hypre-2.9.0b.ebuild:
109 + Fixed underlinking (bug #493222) and enabling MPI (bug #508030) thanks
110 + Matthias Maier
111
112 22 Apr 2014; Sébastien Fabbro <bicatali@g.o> -hypre-2.8.0b-r1.ebuild,
113 hypre-2.9.0b.ebuild: