* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: ChangeLog cholmod-1.7.4.ebuild
@ 2012-01-20 5:52 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 2+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2012-01-20 5:52 UTC (permalink / raw
To: gentoo-commits
bicatali 12/01/20 05:52:25
Modified: ChangeLog
Added: cholmod-1.7.4.ebuild
Log:
Version bump
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Revision Changes Path
1.26 sci-libs/cholmod/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 23 Feb 2011 19:53:33 -0000 1.25
+++ ChangeLog 20 Jan 2012 05:52:25 -0000 1.26
@@ -1,6 +1,11 @@
# ChangeLog for sci-libs/cholmod
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.25 2011/02/23 19:53:33 bicatali Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.26 2012/01/20 05:52:25 bicatali Exp $
+
+*cholmod-1.7.4 (20 Jan 2012)
+
+ 20 Jan 2012; Sébastien Fabbro <bicatali@gentoo.org> +cholmod-1.7.4.ebuild:
+ Version bump
*cholmod-1.7.3 (23 Feb 2011)
1.1 sci-libs/cholmod/cholmod-1.7.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-1.7.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-1.7.4.ebuild?rev=1.1&content-type=text/plain
Index: cholmod-1.7.4.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-1.7.4.ebuild,v 1.1 2012/01/20 05:52:25 bicatali Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=yes
inherit eutils autotools autotools-utils
MY_PN=CHOLMOD
PPV=1.7.0
DESCRIPTION="Sparse Cholesky factorization and update/downdate library"
HOMEPAGE="http://www.cise.ufl.edu/research/sparse/cholmod"
SRC_URI="http://www.cise.ufl.edu/research/sparse/${PN}/${MY_PN}-${PV}.tar.gz
mirror://gentoo/${PN}-${PPV}-autotools.patch.bz2"
LICENSE="LGPL-2.1 GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE="doc metis minimal static-libs +supernodal"
RDEPEND="supernodal? ( virtual/lapack )
sci-libs/amd
sci-libs/colamd
metis? ( sci-libs/camd
sci-libs/ccolamd
|| ( sci-libs/metis sci-libs/parmetis ) )"
DEPEND="${RDEPEND}
supernodal? ( dev-util/pkgconfig )
metis? ( dev-util/pkgconfig )"
DOCS=( README.txt Doc/ChangeLog )
S="${WORKDIR}/${MY_PN}"
src_prepare() {
cd "${WORKDIR}"
epatch "${WORKDIR}"/${PN}-${PPV}-autotools.patch
cd "${S}"
# We need to take care of cholmod.h here as well depending on
# the USE flags, otherwise the installed file will reference
# headers that we may not have included.
if use minimal; then
sed -i '/^#define CHOLMOD_/{N;
s:\(#define\) \(CHOLMOD_CONFIG_H\)\n:\1 \2\n\1 NMODIFY 1\n\1 NMATRIXOPS 1\n:}' \
Include/cholmod_config.h
fi
if ! use supernodal; then
sed -i '/^#define CHOLMOD_/{N;
s:\(#define\) \(CHOLMOD_CONFIG_H\)\n:\1 \2\n\1 NSUPERNODAL 1\n:}' \
Include/cholmod_config.h
fi
if ! use metis; then
sed -i '/^#define CHOLMOD_/{N;
s:\(#define\) \(CHOLMOD_CONFIG_H\)\n:\1 \2\n\1 NPARTITION 1\n:}' \
Include/cholmod_config.h
fi
eautoreconf
}
src_configure() {
local lapack_libs=no
local blas_libs=no
if use supernodal; then
blas_libs=$(pkg-config --libs blas)
lapack_libs=$(pkg-config --libs lapack)
fi
myeconfargs+=(
--with-blas="${blas_libs}"
--with-lapack="${lapack_libs}"
$(use_enable supernodal mod-supernodal)
$(use_enable !minimal mod-modify)
$(use_enable !minimal mod-matrixops)
$(use_enable metis mod-partition)
)
autotools-utils_src_configure
}
src_test() {
if ! use supernodal || ! use metis || use minimal; then
ewarn "According to your useflags, some modules were not built on"
ewarn "purpose. This can cause the tests included with Cholmod"
ewarn "to fail. Rebuild with USE=\"supernodal metis -minimal\""
ewarn "if you care."
fi
autotools-utils_src_test -C Demo test
}
src_install() {
autotools-utils_src_install
use doc && dodoc Doc/UserGuide.pdf
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: ChangeLog cholmod-1.7.4.ebuild
@ 2012-05-30 13:42 Alexis Ballier (aballier)
0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2012-05-30 13:42 UTC (permalink / raw
To: gentoo-commits
aballier 12/05/30 13:42:53
Modified: ChangeLog cholmod-1.7.4.ebuild
Log:
keyword ~amd64-fbsd
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Revision Changes Path
1.31 sci-libs/cholmod/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 4 May 2012 08:22:50 -0000 1.30
+++ ChangeLog 30 May 2012 13:42:53 -0000 1.31
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/cholmod
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.30 2012/05/04 08:22:50 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.31 2012/05/30 13:42:53 aballier Exp $
+
+ 30 May 2012; Alexis Ballier <aballier@gentoo.org> cholmod-1.7.4.ebuild:
+ keyword ~amd64-fbsd
04 May 2012; Jeff Horelick <jdhore@gentoo.org> cholmod-1.6.0-r1.ebuild,
cholmod-1.7.4.ebuild:
1.6 sci-libs/cholmod/cholmod-1.7.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-1.7.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-1.7.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-1.7.4.ebuild?r1=1.5&r2=1.6
Index: cholmod-1.7.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-1.7.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cholmod-1.7.4.ebuild 4 May 2012 08:22:50 -0000 1.5
+++ cholmod-1.7.4.ebuild 30 May 2012 13:42:53 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-1.7.4.ebuild,v 1.5 2012/05/04 08:22:50 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-1.7.4.ebuild,v 1.6 2012/05/30 13:42:53 aballier Exp $
EAPI=4
@@ -19,7 +19,7 @@
LICENSE="LGPL-2.1 GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE="debug doc metis minimal static-libs +supernodal"
RDEPEND="
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-05-30 13:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-30 13:42 [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: ChangeLog cholmod-1.7.4.ebuild Alexis Ballier (aballier)
-- strict thread matches above, loose matches on Subject: below --
2012-01-20 5:52 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