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/acml: ChangeLog acml-4.0.1.ebuild acml-3.6.0-r1.ebuild acml-3.6.1-r1.ebuild
Date: Mon, 31 Mar 2008 14:53:56
Message-Id: E1JgLOT-00070u-6s@stork.gentoo.org
1 bicatali 08/03/31 14:53:53
2
3 Modified: ChangeLog acml-4.0.1.ebuild acml-3.6.0-r1.ebuild
4 acml-3.6.1-r1.ebuild
5 Log:
6 Forced -Wl,--no-as-needed in the pkg-config files. Now blas and lapack pkg-config point to the static acml directory instead of the dynamic libblas and liblapack
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.32 sci-libs/acml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 8 Jan 2008 09:46:17 -0000 1.31
23 +++ ChangeLog 31 Mar 2008 14:53:52 -0000 1.32
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sci-libs/acml
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/ChangeLog,v 1.31 2008/01/08 09:46:17 bicatali Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/ChangeLog,v 1.32 2008/03/31 14:53:52 bicatali Exp $
29 +
30 + 31 Mar 2008; Sébastien Fabbro <bicatali@g.o> files/blas.pc.in,
31 + files/lapack.pc.in, acml-3.6.0-r1.ebuild, acml-3.6.1-r1.ebuild,
32 + acml-4.0.1.ebuild:
33 + Forced -Wl,--no-as-needed in the pkg-config files. Now blas and lapack
34 + pkg-config point to the static acml directory instead of the dynamic
35 + libblas and liblapack
36
37 08 Jan 2008; Sébastien Fabbro <bicatali@g.o> files/blas.pc.in,
38 files/lapack.pc.in, acml-3.6.0-r1.ebuild, acml-3.6.1-r1.ebuild,
39
40
41
42 1.4 sci-libs/acml/acml-4.0.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild?rev=1.4&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild?rev=1.4&content-type=text/plain
46 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild?r1=1.3&r2=1.4
47
48 Index: acml-4.0.1.ebuild
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild,v
51 retrieving revision 1.3
52 retrieving revision 1.4
53 diff -u -r1.3 -r1.4
54 --- acml-4.0.1.ebuild 8 Jan 2008 09:46:17 -0000 1.3
55 +++ acml-4.0.1.ebuild 31 Mar 2008 14:53:52 -0000 1.4
56 @@ -1,6 +1,6 @@
57 # Copyright 1999-2008 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild,v 1.3 2008/01/08 09:46:17 bicatali Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild,v 1.4 2008/03/31 14:53:52 bicatali Exp $
61
62 inherit eutils toolchain-funcs fortran
63
64 @@ -107,6 +107,7 @@
65 # install profiles
66 ESELECT_PROF=acml-${FORTRANC}
67 local acmldir=${instdir}/${fort}
68 + local acmllibs="-lacml -lacml_mv"
69 local libname=${acmldir}/lib/libacml
70 local extlibs=
71 local extflags=
72 @@ -118,6 +119,7 @@
73 if [[ ${fort} =~ _mp ]]; then
74 ESELECT_PROF=${ESELECT_PROF}-openmp
75 extlibs="${extlibs} -lpthread"
76 + acmllibs="-lacml_mp -lacml_mv"
77 libname=${libname}_mp
78 extflags="${extflags} -fopenmp"
79 fi
80 @@ -126,6 +128,7 @@
81 sed -e "s:@LIBDIR@:$(get_libdir):" \
82 -e "s:@PV@:${PV}:" \
83 -e "s:@ACMLDIR@:${acmldir}:g" \
84 + -e "s:@ACMLLIBS@:${acmllibs}:g" \
85 -e "s:@EXTLIBS@:${extlibs}:g" \
86 -e "s:@EXTFLAGS@:${extflags}:g" \
87 "${FILESDIR}"/${l}.pc.in > ${l}.pc \
88
89
90
91 1.8 sci-libs/acml/acml-3.6.0-r1.ebuild
92
93 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild?rev=1.8&view=markup
94 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild?rev=1.8&content-type=text/plain
95 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild?r1=1.7&r2=1.8
96
97 Index: acml-3.6.0-r1.ebuild
98 ===================================================================
99 RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild,v
100 retrieving revision 1.7
101 retrieving revision 1.8
102 diff -u -r1.7 -r1.8
103 --- acml-3.6.0-r1.ebuild 8 Jan 2008 09:46:17 -0000 1.7
104 +++ acml-3.6.0-r1.ebuild 31 Mar 2008 14:53:52 -0000 1.8
105 @@ -1,6 +1,6 @@
106 # Copyright 1999-2008 Gentoo Foundation
107 # Distributed under the terms of the GNU General Public License v2
108 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild,v 1.7 2008/01/08 09:46:17 bicatali Exp $
109 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild,v 1.8 2008/03/31 14:53:52 bicatali Exp $
110
111 inherit eutils toolchain-funcs fortran
112
113 @@ -95,6 +95,7 @@
114 # install profiles
115 ESELECT_PROF=acml-${FORTRANC}
116 local acmldir=${instdir}/${fort}
117 + local acmllibs="-lacml -lacml_mv"
118 local libname=${acmldir}/lib/libacml
119 local extlibs
120 local extflags
121 @@ -102,6 +103,7 @@
122 if [[ ${fort} =~ _mp ]]; then
123 ESELECT_PROF=${ESELECT_PROF}-openmp
124 extlibs="${extlibs} -lpthread"
125 + acmllibs="-lacml_mp -lacml_mv"
126 libname=${libname}_mp
127 extflags="${extflags} -openmp"
128 fi
129 @@ -110,6 +112,7 @@
130 sed -e "s:@LIBDIR@:$(get_libdir):" \
131 -e "s:@PV@:${PV}:" \
132 -e "s:@ACMLDIR@:${acmldir}:g" \
133 + -e "s:@ACMLLIBS@:${acmllibs}:g" \
134 -e "s:@EXTLIBS@:${extlibs}:g" \
135 -e "s:@EXTFLAGS@:${extflags}:g" \
136 "${FILESDIR}"/${l}.pc.in > ${l}.pc \
137
138
139
140 1.8 sci-libs/acml/acml-3.6.1-r1.ebuild
141
142 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild?rev=1.8&view=markup
143 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild?rev=1.8&content-type=text/plain
144 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild?r1=1.7&r2=1.8
145
146 Index: acml-3.6.1-r1.ebuild
147 ===================================================================
148 RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild,v
149 retrieving revision 1.7
150 retrieving revision 1.8
151 diff -u -r1.7 -r1.8
152 --- acml-3.6.1-r1.ebuild 8 Jan 2008 09:46:17 -0000 1.7
153 +++ acml-3.6.1-r1.ebuild 31 Mar 2008 14:53:52 -0000 1.8
154 @@ -1,6 +1,6 @@
155 # Copyright 1999-2008 Gentoo Foundation
156 # Distributed under the terms of the GNU General Public License v2
157 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild,v 1.7 2008/01/08 09:46:17 bicatali Exp $
158 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild,v 1.8 2008/03/31 14:53:52 bicatali Exp $
159
160 inherit eutils toolchain-funcs fortran
161
162 @@ -107,6 +107,7 @@
163 # install profiles
164 ESELECT_PROF=acml-${FORTRANC}
165 local acmldir=${instdir}/${fort}
166 + local acmllibs="-lacml -lacml_mv"
167 local libname=${acmldir}/lib/libacml
168 local extlibs
169 local extflags
170 @@ -118,6 +119,7 @@
171 if [[ ${fort} =~ _mp ]]; then
172 ESELECT_PROF=${ESELECT_PROF}-openmp
173 extlibs="${extlibs} -lpthread"
174 + acmllibs="-lacml_mp -lacml_mv"
175 libname=${libname}_mp
176 extflags="${extflags} -fopenmp"
177 fi
178 @@ -126,6 +128,7 @@
179 sed -e "s:@LIBDIR@:$(get_libdir):" \
180 -e "s:@PV@:${PV}:" \
181 -e "s:@ACMLDIR@:${acmldir}:g" \
182 + -e "s:@ACMLLIBS@:${acmllibs}:g" \
183 -e "s:@EXTLIBS@:${extlibs}:g" \
184 -e "s:@EXTFLAGS@:${extflags}:g" \
185 "${FILESDIR}"/${l}.pc.in > ${l}.pc \
186
187
188
189 --
190 gentoo-commits@l.g.o mailing list