public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [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
@ 2008-03-31 14:53 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2008-03-31 14:53 UTC (permalink / raw
  To: gentoo-commits

bicatali    08/03/31 14:53:53

  Modified:             ChangeLog acml-4.0.1.ebuild acml-3.6.0-r1.ebuild
                        acml-3.6.1-r1.ebuild
  Log:
  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
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.32                 sci-libs/acml/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	8 Jan 2008 09:46:17 -0000	1.31
+++ ChangeLog	31 Mar 2008 14:53:52 -0000	1.32
@@ -1,6 +1,13 @@
 # ChangeLog for sci-libs/acml
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/ChangeLog,v 1.31 2008/01/08 09:46:17 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/ChangeLog,v 1.32 2008/03/31 14:53:52 bicatali Exp $
+
+  31 Mar 2008; Sébastien Fabbro <bicatali@gentoo.org> files/blas.pc.in,
+  files/lapack.pc.in, acml-3.6.0-r1.ebuild, acml-3.6.1-r1.ebuild,
+  acml-4.0.1.ebuild:
+  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
 
   08 Jan 2008; Sébastien Fabbro <bicatali@gentoo.org> files/blas.pc.in,
   files/lapack.pc.in, acml-3.6.0-r1.ebuild, acml-3.6.1-r1.ebuild,



1.4                  sci-libs/acml/acml-4.0.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild?r1=1.3&r2=1.4

Index: acml-4.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- acml-4.0.1.ebuild	8 Jan 2008 09:46:17 -0000	1.3
+++ acml-4.0.1.ebuild	31 Mar 2008 14:53:52 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild,v 1.3 2008/01/08 09:46:17 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild,v 1.4 2008/03/31 14:53:52 bicatali Exp $
 
 inherit eutils toolchain-funcs fortran
 
@@ -107,6 +107,7 @@
 		# install profiles
 		ESELECT_PROF=acml-${FORTRANC}
 		local acmldir=${instdir}/${fort}
+		local acmllibs="-lacml -lacml_mv"
 		local libname=${acmldir}/lib/libacml
 		local extlibs=
 		local extflags=
@@ -118,6 +119,7 @@
 		if [[ ${fort} =~ _mp ]]; then
 			ESELECT_PROF=${ESELECT_PROF}-openmp
 			extlibs="${extlibs} -lpthread"
+			acmllibs="-lacml_mp -lacml_mv"
 			libname=${libname}_mp
 			extflags="${extflags} -fopenmp"
 		fi
@@ -126,6 +128,7 @@
 			sed -e "s:@LIBDIR@:$(get_libdir):" \
 				-e "s:@PV@:${PV}:" \
 				-e "s:@ACMLDIR@:${acmldir}:g" \
+				-e "s:@ACMLLIBS@:${acmllibs}:g" \
 				-e "s:@EXTLIBS@:${extlibs}:g" \
 				-e "s:@EXTFLAGS@:${extflags}:g" \
 				"${FILESDIR}"/${l}.pc.in > ${l}.pc \



1.8                  sci-libs/acml/acml-3.6.0-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild?rev=1.8&view=markup
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
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild?r1=1.7&r2=1.8

Index: acml-3.6.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- acml-3.6.0-r1.ebuild	8 Jan 2008 09:46:17 -0000	1.7
+++ acml-3.6.0-r1.ebuild	31 Mar 2008 14:53:52 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $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 $
+# $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 $
 
 inherit eutils toolchain-funcs fortran
 
@@ -95,6 +95,7 @@
 		# install profiles
 		ESELECT_PROF=acml-${FORTRANC}
 		local acmldir=${instdir}/${fort}
+		local acmllibs="-lacml -lacml_mv"
 		local libname=${acmldir}/lib/libacml
 		local extlibs
 		local extflags
@@ -102,6 +103,7 @@
 		if [[ ${fort} =~ _mp ]]; then
 			ESELECT_PROF=${ESELECT_PROF}-openmp
 			extlibs="${extlibs} -lpthread"
+			acmllibs="-lacml_mp -lacml_mv"
 			libname=${libname}_mp
 			extflags="${extflags} -openmp"
 		fi
@@ -110,6 +112,7 @@
 			sed -e "s:@LIBDIR@:$(get_libdir):" \
 				-e "s:@PV@:${PV}:" \
 				-e "s:@ACMLDIR@:${acmldir}:g" \
+				-e "s:@ACMLLIBS@:${acmllibs}:g" \
 				-e "s:@EXTLIBS@:${extlibs}:g" \
 				-e "s:@EXTFLAGS@:${extflags}:g" \
 				"${FILESDIR}"/${l}.pc.in > ${l}.pc \



1.8                  sci-libs/acml/acml-3.6.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild?rev=1.8&view=markup
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
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild?r1=1.7&r2=1.8

Index: acml-3.6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- acml-3.6.1-r1.ebuild	8 Jan 2008 09:46:17 -0000	1.7
+++ acml-3.6.1-r1.ebuild	31 Mar 2008 14:53:52 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $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 $
+# $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 $
 
 inherit eutils toolchain-funcs fortran
 
@@ -107,6 +107,7 @@
 		# install profiles
 		ESELECT_PROF=acml-${FORTRANC}
 		local acmldir=${instdir}/${fort}
+		local acmllibs="-lacml -lacml_mv"
 		local libname=${acmldir}/lib/libacml
 		local extlibs
 		local extflags
@@ -118,6 +119,7 @@
 		if [[ ${fort} =~ _mp ]]; then
 			ESELECT_PROF=${ESELECT_PROF}-openmp
 			extlibs="${extlibs} -lpthread"
+			acmllibs="-lacml_mp -lacml_mv"
 			libname=${libname}_mp
 			extflags="${extflags} -fopenmp"
 		fi
@@ -126,6 +128,7 @@
 			sed -e "s:@LIBDIR@:$(get_libdir):" \
 				-e "s:@PV@:${PV}:" \
 				-e "s:@ACMLDIR@:${acmldir}:g" \
+				-e "s:@ACMLLIBS@:${acmllibs}:g" \
 				-e "s:@EXTLIBS@:${extlibs}:g" \
 				-e "s:@EXTFLAGS@:${extflags}:g" \
 				"${FILESDIR}"/${l}.pc.in > ${l}.pc \



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [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
@ 2008-04-22  8:13 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2008-04-22  8:13 UTC (permalink / raw
  To: gentoo-commits

bicatali    08/04/22 08:13:20

  Modified:             ChangeLog acml-4.0.1.ebuild acml-3.6.0-r1.ebuild
                        acml-3.6.1-r1.ebuild
  Log:
  Re-organized dependencies for pkg-config (bug #217278)
  (Portage version: 2.1.5_rc4)

Revision  Changes    Path
1.33                 sci-libs/acml/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	31 Mar 2008 14:53:52 -0000	1.32
+++ ChangeLog	22 Apr 2008 08:13:19 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for sci-libs/acml
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/ChangeLog,v 1.32 2008/03/31 14:53:52 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/ChangeLog,v 1.33 2008/04/22 08:13:19 bicatali Exp $
+
+  22 Apr 2008; Sébastien Fabbro <bicatali@gentoo.org> acml-3.6.0-r1.ebuild,
+  acml-3.6.1-r1.ebuild, acml-4.0.1.ebuild:
+  Re-organized dependencies for pkg-config (bug #217278).
 
   31 Mar 2008; Sébastien Fabbro <bicatali@gentoo.org> files/blas.pc.in,
   files/lapack.pc.in, acml-3.6.0-r1.ebuild, acml-3.6.1-r1.ebuild,



1.5                  sci-libs/acml/acml-4.0.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild?r1=1.4&r2=1.5

Index: acml-4.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- acml-4.0.1.ebuild	31 Mar 2008 14:53:52 -0000	1.4
+++ acml-4.0.1.ebuild	22 Apr 2008 08:13:19 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild,v 1.4 2008/03/31 14:53:52 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-4.0.1.ebuild,v 1.5 2008/04/22 08:13:19 bicatali Exp $
 
 inherit eutils toolchain-funcs fortran
 
@@ -19,12 +19,11 @@
 LICENSE="ACML"
 SLOT="0"
 
-DEPEND="app-admin/eselect-blas
-	app-admin/eselect-lapack
-	ifc? ( dev-lang/ifc )
+DEPEND="ifc? ( dev-lang/ifc )
 	openmp? ( !ifc? ( >=sys-devel/gcc-4.2 ) )
-	!openmp? ( !ifc? ( =sys-devel/gcc-4.1* ) )"
-
+	!openmp? ( !ifc? ( =sys-devel/gcc-4.1* ) )
+	app-admin/eselect-blas
+	app-admin/eselect-lapack"
 RDEPEND="${DEPEND}
 	doc? ( app-doc/blas-docs app-doc/lapack-docs )"
 
@@ -70,10 +69,6 @@
 	FORTDIRS="$(ls -d ${FORT}*)"
 }
 
-src_compile() {
-	einfo "Nothing to compile"
-}
-
 src_test() {
 	local forts=${FORTDIRS}
 	# only testing with current compiler



1.9                  sci-libs/acml/acml-3.6.0-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild?r1=1.8&r2=1.9

Index: acml-3.6.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- acml-3.6.0-r1.ebuild	31 Mar 2008 14:53:52 -0000	1.8
+++ acml-3.6.0-r1.ebuild	22 Apr 2008 08:13:19 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $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 $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.0-r1.ebuild,v 1.9 2008/04/22 08:13:19 bicatali Exp $
 
 inherit eutils toolchain-funcs fortran
 
@@ -61,10 +61,6 @@
 	FORTDIRS="$(ls -d ${FORT}*)"
 }
 
-src_compile() {
-	einfo "Nothing to compile"
-}
-
 src_test() {
 	for fort in ${FORTDIRS}; do
 		einfo "Testing acml for $(basename ${fort})"



1.9                  sci-libs/acml/acml-3.6.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild?r1=1.8&r2=1.9

Index: acml-3.6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- acml-3.6.1-r1.ebuild	31 Mar 2008 14:53:52 -0000	1.8
+++ acml-3.6.1-r1.ebuild	22 Apr 2008 08:13:19 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $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 $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/acml/acml-3.6.1-r1.ebuild,v 1.9 2008/04/22 08:13:19 bicatali Exp $
 
 inherit eutils toolchain-funcs fortran
 
@@ -19,12 +19,10 @@
 KEYWORDS="~amd64 ~x86"
 SLOT="0"
 
-DEPEND="app-admin/eselect-blas
-	app-admin/eselect-lapack
-	dev-util/pkgconfig
-	openmp? ( >=sys-devel/gcc-4.2 )
-	!openmp? ( =sys-devel/gcc-4.1* )"
-
+DEPEND="openmp? ( >=sys-devel/gcc-4.2 )
+	!openmp? ( =sys-devel/gcc-4.1* )
+	app-admin/eselect-blas
+	app-admin/eselect-lapack"
 RDEPEND="${DEPEND}
 	doc? ( app-doc/blas-docs app-doc/lapack-docs )"
 
@@ -70,10 +68,6 @@
 	FORTDIRS="$(ls -d ${FORT}*)"
 }
 
-src_compile() {
-	einfo "Nothing to compile"
-}
-
 src_test() {
 	local forts=${FORTDIRS}
 	# only testing with current compiler



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-04-22  8:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-31 14:53 [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 Sebastien Fabbro (bicatali)
  -- strict thread matches above, loose matches on Subject: below --
2008-04-22  8:13 Sebastien Fabbro (bicatali)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox