public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-2.1.2.ebuild ChangeLog
@ 2013-06-24 23:10 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 8+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2013-06-24 23:10 UTC (permalink / raw
  To: gentoo-commits

bicatali    13/06/24 23:10:08

  Modified:             ChangeLog
  Added:                cholmod-2.1.2.ebuild
  Log:
  Version bump, switch to EAPI5 and new tar ball
  
  (Portage version: 2.2.01.22013-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)

Revision  Changes    Path
1.39                 sci-libs/cholmod/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	10 Apr 2013 06:06:12 -0000	1.38
+++ ChangeLog	24 Jun 2013 23:10:08 -0000	1.39
@@ -1,6 +1,11 @@
 # ChangeLog for sci-libs/cholmod
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.38 2013/04/10 06:06:12 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.39 2013/06/24 23:10:08 bicatali Exp $
+
+*cholmod-2.1.2 (24 Jun 2013)
+
+  24 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> +cholmod-2.1.2.ebuild:
+  Version bump, switch to EAPI5 and new tar ball
 
   10 Apr 2013; Justin Lecher <jlec@gentoo.org> cholmod-2.0.1.ebuild:
   Fix typo for pkg-config usage



1.1                  sci-libs/cholmod/cholmod-2.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.1&content-type=text/plain

Index: cholmod-2.1.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.1 2013/06/24 23:10:08 bicatali Exp $

EAPI=5

inherit autotools-utils multilib toolchain-funcs

DESCRIPTION="Sparse Cholesky factorization and update/downdate library"
HOMEPAGE="http://www.cise.ufl.edu/research/sparse/cholmod/"
SRC_URI="http://dev.gentoo.org/~bicatali/distfiles/${P}.tar.bz2"

LICENSE="minimal? ( LGPL-2.1 ) !minimal? ( GPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-fbsd ~x86-linux ~x86-macos"
IUSE="cuda doc lapack metis minimal static-libs"

RDEPEND="
	>=sci-libs/amd-2.3
	>=sci-libs/colamd-2.8
	cuda? ( x11-drivers/nvidia-drivers dev-util/nvidia-cuda-toolkit )
	lapack? ( virtual/lapack )
	metis? (
		>=sci-libs/camd-2.3
		>=sci-libs/ccolamd-2.8
		|| ( sci-libs/metis sci-libs/parmetis ) )"

DEPEND="${RDEPEND}
	virtual/pkgconfig
	doc? ( virtual/latex-base )"

src_prepare() {
	# bug #399483 does not build with parmetis-3.2
	has_version "=sci-libs/parmetis-3.2*" && \
		epatch "${FILESDIR}"/${PN}-1.7.4-parmetis32.patch
}

src_configure() {
	local lapack_libs=no
	local blas_libs=no
	if use lapack; then
		blas_libs=$($(tc-getPKG_CONFIG) --libs blas)
		lapack_libs=$($(tc-getPKG_CONFIG) --libs lapack)
	fi
	local myeconfargs=(
		--with-blas="${blas_libs}"
		--with-lapack="${lapack_libs}"
		$(use_with doc)
		$(use_with !minimal modify)
		$(use_with !minimal matrixops)
		$(use_with !minimal partition)
		$(use_with metis camd)
		$(use_with metis partition)
		$(use_with lapack supernodal)
	)
	if use cuda; then
		myeconfargs+=(
			--with-cuda
			--with-cublas-libs="-L${EPREFIX}/opt/cuda/$(get_libdir) -lcublas"
			--with-cublas-cflags="-I${EPREFIX}/opt/cuda/include"
		)
	fi
	autotools-utils_src_configure
}





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

* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-2.1.2.ebuild ChangeLog
@ 2013-07-18 13:39 Chi-Thanh Christopher Nguyen (chithanh)
  0 siblings, 0 replies; 8+ messages in thread
From: Chi-Thanh Christopher Nguyen (chithanh) @ 2013-07-18 13:39 UTC (permalink / raw
  To: gentoo-commits

chithanh    13/07/18 13:39:01

  Modified:             cholmod-2.1.2.ebuild ChangeLog
  Log:
  Keyword ~arm.
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  sci-libs/cholmod/cholmod-2.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?r1=1.1&r2=1.2

Index: cholmod-2.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cholmod-2.1.2.ebuild	24 Jun 2013 23:10:08 -0000	1.1
+++ cholmod-2.1.2.ebuild	18 Jul 2013 13:39:01 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.1 2013/06/24 23:10:08 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.2 2013/07/18 13:39:01 chithanh Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="minimal? ( LGPL-2.1 ) !minimal? ( GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-fbsd ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="cuda doc lapack metis minimal static-libs"
 
 RDEPEND="



1.40                 sci-libs/cholmod/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	24 Jun 2013 23:10:08 -0000	1.39
+++ ChangeLog	18 Jul 2013 13:39:01 -0000	1.40
@@ -1,6 +1,10 @@
 # ChangeLog for sci-libs/cholmod
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.39 2013/06/24 23:10:08 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.40 2013/07/18 13:39:01 chithanh Exp $
+
+  18 Jul 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+  cholmod-2.1.2.ebuild:
+  Keyword ~arm.
 
 *cholmod-2.1.2 (24 Jun 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-2.1.2.ebuild ChangeLog
@ 2014-03-04 19:52 Vicente Olivert Riera (vincent)
  0 siblings, 0 replies; 8+ messages in thread
From: Vicente Olivert Riera (vincent) @ 2014-03-04 19:52 UTC (permalink / raw
  To: gentoo-commits

vincent     14/03/04 19:52:00

  Modified:             cholmod-2.1.2.ebuild ChangeLog
  Log:
  Add ~mips keyword.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 5AE9E7B2E9BBCBA8)

Revision  Changes    Path
1.3                  sci-libs/cholmod/cholmod-2.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?r1=1.2&r2=1.3

Index: cholmod-2.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cholmod-2.1.2.ebuild	18 Jul 2013 13:39:01 -0000	1.2
+++ cholmod-2.1.2.ebuild	4 Mar 2014 19:52:00 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.2 2013/07/18 13:39:01 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.3 2014/03/04 19:52:00 vincent Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="minimal? ( LGPL-2.1 ) !minimal? ( GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="cuda doc lapack metis minimal static-libs"
 
 RDEPEND="



1.42                 sci-libs/cholmod/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	3 Feb 2014 17:57:56 -0000	1.41
+++ ChangeLog	4 Mar 2014 19:52:00 -0000	1.42
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/cholmod
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.41 2014/02/03 17:57:56 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.42 2014/03/04 19:52:00 vincent Exp $
+
+  04 Mar 2014; Vicente Olivert Riera <vincent@gentoo.org> cholmod-2.1.2.ebuild:
+  Add ~mips keyword.
 
   03 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> -cholmod-1.7.4.ebuild,
   -cholmod-2.0.1.ebuild, -files/cholmod-1.7.4-debug.patch:





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

* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-2.1.2.ebuild ChangeLog
@ 2015-03-02  9:23 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-02  9:23 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/02 09:23:17

  Modified:             cholmod-2.1.2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #534648
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  sci-libs/cholmod/cholmod-2.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?r1=1.5&r2=1.6

Index: cholmod-2.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cholmod-2.1.2.ebuild	22 Feb 2015 00:50:01 -0000	1.5
+++ cholmod-2.1.2.ebuild	2 Mar 2015 09:23:17 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.5 2015/02/22 00:50:01 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.6 2015/03/02 09:23:17 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="minimal? ( LGPL-2.1 ) !minimal? ( GPL-2 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~amd64 ~arm hppa ~mips ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="cuda doc lapack metis minimal static-libs"
 
 RDEPEND="



1.46                 sci-libs/cholmod/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	22 Feb 2015 00:50:01 -0000	1.45
+++ ChangeLog	2 Mar 2015 09:23:17 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/cholmod
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.45 2015/02/22 00:50:01 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.46 2015/03/02 09:23:17 ago Exp $
+
+  02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> cholmod-2.1.2.ebuild:
+  Stable for ppc, wrt bug #534648
 
   22 Feb 2015; Matt Turner <mattst88@gentoo.org> cholmod-1.6.0-r1.ebuild,
   cholmod-2.1.2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-2.1.2.ebuild ChangeLog
@ 2015-03-27 16:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-27 16:29 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/27 16:29:18

  Modified:             cholmod-2.1.2.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #534648
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  sci-libs/cholmod/cholmod-2.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?r1=1.6&r2=1.7

Index: cholmod-2.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- cholmod-2.1.2.ebuild	2 Mar 2015 09:23:17 -0000	1.6
+++ cholmod-2.1.2.ebuild	27 Mar 2015 16:29:18 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.6 2015/03/02 09:23:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.7 2015/03/27 16:29:18 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="minimal? ( LGPL-2.1 ) !minimal? ( GPL-2 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm hppa ~mips ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="amd64 ~arm hppa ~mips ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="cuda doc lapack metis minimal static-libs"
 
 RDEPEND="



1.47                 sci-libs/cholmod/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.46&r2=1.47

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	2 Mar 2015 09:23:17 -0000	1.46
+++ ChangeLog	27 Mar 2015 16:29:18 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/cholmod
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.46 2015/03/02 09:23:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.47 2015/03/27 16:29:18 ago Exp $
+
+  27 Mar 2015; Agostino Sarubbo <ago@gentoo.org> cholmod-2.1.2.ebuild:
+  Stable for amd64, wrt bug #534648
 
   02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> cholmod-2.1.2.ebuild:
   Stable for ppc, wrt bug #534648





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

* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-2.1.2.ebuild ChangeLog
@ 2015-04-21 17:47 Pacho Ramos (pacho)
  0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos (pacho) @ 2015-04-21 17:47 UTC (permalink / raw
  To: gentoo-commits

pacho       15/04/21 17:47:25

  Modified:             cholmod-2.1.2.ebuild ChangeLog
  Log:
  x86 stable wrt bug #534648
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.8                  sci-libs/cholmod/cholmod-2.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?r1=1.7&r2=1.8

Index: cholmod-2.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- cholmod-2.1.2.ebuild	27 Mar 2015 16:29:18 -0000	1.7
+++ cholmod-2.1.2.ebuild	21 Apr 2015 17:47:25 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.7 2015/03/27 16:29:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.8 2015/04/21 17:47:25 pacho Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="minimal? ( LGPL-2.1 ) !minimal? ( GPL-2 )"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~mips ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="amd64 ~arm hppa ~mips ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="cuda doc lapack metis minimal static-libs"
 
 RDEPEND="



1.48                 sci-libs/cholmod/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.47&r2=1.48

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	27 Mar 2015 16:29:18 -0000	1.47
+++ ChangeLog	21 Apr 2015 17:47:25 -0000	1.48
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/cholmod
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.47 2015/03/27 16:29:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.48 2015/04/21 17:47:25 pacho Exp $
+
+  21 Apr 2015; Pacho Ramos <pacho@gentoo.org> cholmod-2.1.2.ebuild:
+  x86 stable wrt bug #534648
 
   27 Mar 2015; Agostino Sarubbo <ago@gentoo.org> cholmod-2.1.2.ebuild:
   Stable for amd64, wrt bug #534648





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

* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-2.1.2.ebuild ChangeLog
@ 2015-05-13  6:37 Jack Morgan (jmorgan)
  0 siblings, 0 replies; 8+ messages in thread
From: Jack Morgan (jmorgan) @ 2015-05-13  6:37 UTC (permalink / raw
  To: gentoo-commits

jmorgan     15/05/13 06:37:02

  Modified:             cholmod-2.1.2.ebuild ChangeLog
  Log:
  sparc stable wrt bug #534648
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key )

Revision  Changes    Path
1.9                  sci-libs/cholmod/cholmod-2.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?r1=1.8&r2=1.9

Index: cholmod-2.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- cholmod-2.1.2.ebuild	21 Apr 2015 17:47:25 -0000	1.8
+++ cholmod-2.1.2.ebuild	13 May 2015 06:37:01 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.8 2015/04/21 17:47:25 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.9 2015/05/13 06:37:01 jmorgan Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="minimal? ( LGPL-2.1 ) !minimal? ( GPL-2 )"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~mips ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="amd64 ~arm hppa ~mips ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="cuda doc lapack metis minimal static-libs"
 
 RDEPEND="



1.49                 sci-libs/cholmod/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	21 Apr 2015 17:47:25 -0000	1.48
+++ ChangeLog	13 May 2015 06:37:01 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/cholmod
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.48 2015/04/21 17:47:25 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.49 2015/05/13 06:37:01 jmorgan Exp $
+
+  13 May 2015; Jack Morgan <jmorgan@gentoo.org> cholmod-2.1.2.ebuild:
+  sparc stable wrt bug #534648
 
   21 Apr 2015; Pacho Ramos <pacho@gentoo.org> cholmod-2.1.2.ebuild:
   x86 stable wrt bug #534648





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

* [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-2.1.2.ebuild ChangeLog
@ 2015-05-13  7:01 Jack Morgan (jmorgan)
  0 siblings, 0 replies; 8+ messages in thread
From: Jack Morgan (jmorgan) @ 2015-05-13  7:01 UTC (permalink / raw
  To: gentoo-commits

jmorgan     15/05/13 07:01:31

  Modified:             cholmod-2.1.2.ebuild ChangeLog
  Log:
  ppc64 stable wrt bug #534648
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key )

Revision  Changes    Path
1.10                 sci-libs/cholmod/cholmod-2.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild?r1=1.9&r2=1.10

Index: cholmod-2.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- cholmod-2.1.2.ebuild	13 May 2015 06:37:01 -0000	1.9
+++ cholmod-2.1.2.ebuild	13 May 2015 07:01:31 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.9 2015/05/13 06:37:01 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.1.2.ebuild,v 1.10 2015/05/13 07:01:31 jmorgan Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="minimal? ( LGPL-2.1 ) !minimal? ( GPL-2 )"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~mips ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="cuda doc lapack metis minimal static-libs"
 
 RDEPEND="



1.50                 sci-libs/cholmod/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cholmod/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	13 May 2015 06:37:01 -0000	1.49
+++ ChangeLog	13 May 2015 07:01:31 -0000	1.50
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/cholmod
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.49 2015/05/13 06:37:01 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/ChangeLog,v 1.50 2015/05/13 07:01:31 jmorgan Exp $
+
+  13 May 2015; Jack Morgan <jmorgan@gentoo.org> cholmod-2.1.2.ebuild:
+  ppc64 stable wrt bug #534648
 
   13 May 2015; Jack Morgan <jmorgan@gentoo.org> cholmod-2.1.2.ebuild:
   sparc stable wrt bug #534648





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

end of thread, other threads:[~2015-05-13  7:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-04 19:52 [gentoo-commits] gentoo-x86 commit in sci-libs/cholmod: cholmod-2.1.2.ebuild ChangeLog Vicente Olivert Riera (vincent)
  -- strict thread matches above, loose matches on Subject: below --
2015-05-13  7:01 Jack Morgan (jmorgan)
2015-05-13  6:37 Jack Morgan (jmorgan)
2015-04-21 17:47 Pacho Ramos (pacho)
2015-03-27 16:29 Agostino Sarubbo (ago)
2015-03-02  9:23 Agostino Sarubbo (ago)
2013-07-18 13:39 Chi-Thanh Christopher Nguyen (chithanh)
2013-06-24 23:10 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