* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2012-11-06 19:56 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 11+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-11-06 19:56 UTC (permalink / raw
To: gentoo-commits
xarthisius 12/11/06 19:56:41
Modified: ChangeLog
Added: hdf5-1.8.10.ebuild
Log:
Version bump
(Portage version: 2.2.0_alpha138/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
Revision Changes Path
1.98 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.97&r2=1.98
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog 4 Nov 2012 14:09:16 -0000 1.97
+++ ChangeLog 6 Nov 2012 19:56:41 -0000 1.98
@@ -1,6 +1,13 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.97 2012/11/04 14:09:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.98 2012/11/06 19:56:41 xarthisius Exp $
+
+*hdf5-1.8.10 (06 Nov 2012)
+
+ 06 Nov 2012; Kacper Kowalik <xarthisius@gentoo.org>
+ +files/hdf5-1.8.10-buildsystem.patch, +files/hdf5-1.8.10-implicits.patch,
+ +hdf5-1.8.10.ebuild:
+ Version bump
04 Nov 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.9-r2.ebuild:
Stable for amd64, wrt bug #440682
1.1 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.1&content-type=text/plain
Index: hdf5-1.8.10.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.1 2012/11/06 19:56:41 xarthisius Exp $
EAPI=4
FORTRAN_NEEDED=fortran
inherit autotools eutils fortran-2 flag-o-matic toolchain-funcs multilib
DESCRIPTION="General purpose library and file format for storing scientific data"
HOMEPAGE="http://www.hdfgroup.org/HDF5/"
SRC_URI="http://www.hdfgroup.org/ftp/HDF5/releases/${P}/src/${P}.tar.bz2"
LICENSE="NCSA-HDF"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib"
REQUIRED_USE="
cxx? ( !mpi ) mpi? ( !cxx )
threads? ( !cxx !mpi !fortran )
fortran2003? ( fortran )"
RDEPEND="
mpi? ( virtual/mpi[romio] )
szip? ( >=sci-libs/szip-2.1 )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
sys-devel/libtool:2"
pkg_setup() {
tc-export CXX CC # workaround for bug 285148
if use fortran; then
use fortran2003 && FORTRAN_STANDARD=2003
fortran-2_pkg_setup
fi
if use mpi; then
if has_version 'sci-libs/hdf5[-mpi]'; then
ewarn "Installing hdf5 with mpi enabled with a previous hdf5 with mpi disabled may fail."
ewarn "Try to uninstall the current hdf5 prior to enabling mpi support."
fi
export CC=mpicc
use fortran && export FC=mpif90
elif has_version 'sci-libs/hdf5[mpi]'; then
ewarn "Installing hdf5 with mpi disabled while having hdf5 installed with mpi enabled may fail."
ewarn "Try to uninstall the current hdf5 prior to disabling mpi support."
fi
}
src_prepare() {
epatch "${FILESDIR}"/${P}-buildsystem.patch \
"${FILESDIR}"/${PN}-1.8.8-array_bounds.patch \
"${FILESDIR}"/${P}-implicits.patch \
"${FILESDIR}"/${PN}-1.8.9-static_libgfortran.patch \
"${FILESDIR}"/${PN}-1.8.9-mpicxx.patch
# respect gentoo examples directory
sed \
-e "s:hdf5_examples:doc/${PF}/examples:g" \
-i $(find . -name Makefile.am) $(find . -name "run*.sh.in") || die
sed \
-e '/docdir/d' \
-i config/commence.am || die
if ! use examples; then
sed -e '/^install:/ s/install-examples//' \
-i Makefile.am || die #409091
fi
eautoreconf
# enable shared libs by default for h5cc config utility
sed -i -e "s/SHLIB:-no/SHLIB:-yes/g" tools/misc/h5cc.in || die
# bug #419677
use prefix && \
append-ldflags -Wl,-rpath,"${EPREFIX}"/usr/$(get_libdir) \
-Wl,-rpath,"${EPREFIX}"/$(get_libdir)
}
src_configure() {
econf \
--enable-production \
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
--enable-deprecated-symbols \
--enable-shared \
--disable-silent-rules \
$(use_enable prefix sharedlib-rpath) \
$(use_enable static-libs static) \
$(use_enable debug debug all) \
$(use_enable debug codestack) \
$(use_enable cxx) \
$(use_enable fortran) \
$(use_enable fortran2003) \
$(use_enable mpi parallel) \
$(use_enable threads threadsafe) \
$(use_with szip szlib) \
$(use_with threads pthread) \
$(use_with zlib) \
${myconf}
}
src_install() {
default
use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2012-12-04 6:59 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 11+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-12-04 6:59 UTC (permalink / raw
To: gentoo-commits
xarthisius 12/12/04 06:59:14
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Add warning message about possible mismatch between headers and library in reverse dependencies. Fixes bug 445268 by William Throwe <wtt6@cornell.edu>
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
Revision Changes Path
1.2 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.1&r2=1.2
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hdf5-1.8.10.ebuild 6 Nov 2012 19:56:41 -0000 1.1
+++ hdf5-1.8.10.ebuild 4 Dec 2012 06:59:14 -0000 1.2
@@ -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/hdf5/hdf5-1.8.10.ebuild,v 1.1 2012/11/06 19:56:41 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.2 2012/12/04 06:59:14 xarthisius Exp $
EAPI=4
@@ -101,3 +101,15 @@
default
use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
}
+
+pkg_postinst() {
+ if has_version "sci-libs/hdf5"; then
+ ewarn "You have upgraded hdf5 from previous version and the software"
+ ewarn "using it may start complaining about mismatch between headers"
+ ewarn "and library version. You have two options:"
+ ewarn " 1. export HDF5_DISABLE_VERSION_CHECK=2 to get rid of the"
+ ewarn " warning/error message"
+ ewarn " 2. re-emerge all reverse dependencies (type"
+ ewarn " 'emerge --depclean -pv sci-libs/hdf5' to get the list)"
+ fi
+}
1.100 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.99&r2=1.100
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog 21 Nov 2012 11:26:17 -0000 1.99
+++ ChangeLog 4 Dec 2012 06:59:14 -0000 1.100
@@ -1,6 +1,10 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.99 2012/11/21 11:26:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.100 2012/12/04 06:59:14 xarthisius Exp $
+
+ 04 Dec 2012; Kacper Kowalik <xarthisius@gentoo.org> hdf5-1.8.10.ebuild:
+ Add warning message about possible mismatch between headers and library in
+ reverse dependencies. Fixes bug 445268 by William Throwe <wtt6@cornell.edu>
21 Nov 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.9-r2.ebuild:
Stable for x86, wrt bug #440682
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2012-12-11 17:31 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 11+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-12-11 17:31 UTC (permalink / raw
To: gentoo-commits
xarthisius 12/12/11 17:31:05
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Add explicit dependency on >=sys-devel/autoconf-2.69 wrt #446848 by Andrew Aladjev <aladjev.andrew@gmail.com>
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 895192F9)
Revision Changes Path
1.3 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.2&r2=1.3
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hdf5-1.8.10.ebuild 4 Dec 2012 06:59:14 -0000 1.2
+++ hdf5-1.8.10.ebuild 11 Dec 2012 17:31:05 -0000 1.3
@@ -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/hdf5/hdf5-1.8.10.ebuild,v 1.2 2012/12/04 06:59:14 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.3 2012/12/11 17:31:05 xarthisius Exp $
EAPI=4
@@ -28,7 +28,8 @@
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
- sys-devel/libtool:2"
+ sys-devel/libtool:2
+ >=sys-devel/autoconf-2.69"
pkg_setup() {
tc-export CXX CC # workaround for bug 285148
1.101 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.100&r2=1.101
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog 4 Dec 2012 06:59:14 -0000 1.100
+++ ChangeLog 11 Dec 2012 17:31:05 -0000 1.101
@@ -1,6 +1,10 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.100 2012/12/04 06:59:14 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.101 2012/12/11 17:31:05 xarthisius Exp $
+
+ 11 Dec 2012; Kacper Kowalik <xarthisius@gentoo.org> hdf5-1.8.10.ebuild:
+ Add explicit dependency on >=sys-devel/autoconf-2.69 wrt #446848 by Andrew
+ Aladjev <aladjev.andrew@gmail.com>
04 Dec 2012; Kacper Kowalik <xarthisius@gentoo.org> hdf5-1.8.10.ebuild:
Add warning message about possible mismatch between headers and library in
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2012-12-30 17:02 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 11+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-12-30 17:02 UTC (permalink / raw
To: gentoo-commits
xarthisius 12/12/30 17:02:44
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Fix comments to prevent build failures on ia64 wrt #447740 by Agostino Sarubbo <ago@gentoo.org>
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
Revision Changes Path
1.4 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.3&r2=1.4
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- hdf5-1.8.10.ebuild 11 Dec 2012 17:31:05 -0000 1.3
+++ hdf5-1.8.10.ebuild 30 Dec 2012 17:02:44 -0000 1.4
@@ -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/hdf5/hdf5-1.8.10.ebuild,v 1.3 2012/12/11 17:31:05 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.4 2012/12/30 17:02:44 xarthisius Exp $
EAPI=4
@@ -55,7 +55,8 @@
"${FILESDIR}"/${PN}-1.8.8-array_bounds.patch \
"${FILESDIR}"/${P}-implicits.patch \
"${FILESDIR}"/${PN}-1.8.9-static_libgfortran.patch \
- "${FILESDIR}"/${PN}-1.8.9-mpicxx.patch
+ "${FILESDIR}"/${PN}-1.8.9-mpicxx.patch \
+ "${FILESDIR}"/${P}-comments.patch
# respect gentoo examples directory
sed \
-e "s:hdf5_examples:doc/${PF}/examples:g" \
1.104 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.103&r2=1.104
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog 30 Dec 2012 15:07:03 -0000 1.103
+++ ChangeLog 30 Dec 2012 17:02:44 -0000 1.104
@@ -1,6 +1,11 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.103 2012/12/30 15:07:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.104 2012/12/30 17:02:44 xarthisius Exp $
+
+ 30 Dec 2012; Kacper Kowalik <xarthisius@gentoo.org>
+ +files/hdf5-1.8.10-comments.patch, hdf5-1.8.10.ebuild, hdf5-1.8.9-r2.ebuild:
+ Fix comments to prevent build failures on ia64 wrt #447740 by Agostino Sarubbo
+ <ago@gentoo.org>
30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.9-r2.ebuild:
Stable for alpha, wrt bug #440682
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2012-12-31 9:20 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-31 9:20 UTC (permalink / raw
To: gentoo-commits
ago 12/12/31 09:20:50
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #449332
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.5 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.4&r2=1.5
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- hdf5-1.8.10.ebuild 30 Dec 2012 17:02:44 -0000 1.4
+++ hdf5-1.8.10.ebuild 31 Dec 2012 09:20:50 -0000 1.5
@@ -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/hdf5/hdf5-1.8.10.ebuild,v 1.4 2012/12/30 17:02:44 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.5 2012/12/31 09:20:50 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="NCSA-HDF"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib"
REQUIRED_USE="
1.105 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.104&r2=1.105
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog 30 Dec 2012 17:02:44 -0000 1.104
+++ ChangeLog 31 Dec 2012 09:20:50 -0000 1.105
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.104 2012/12/30 17:02:44 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.105 2012/12/31 09:20:50 ago Exp $
+
+ 31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
+ Stable for sparc, wrt bug #449332
30 Dec 2012; Kacper Kowalik <xarthisius@gentoo.org>
+files/hdf5-1.8.10-comments.patch, hdf5-1.8.10.ebuild, hdf5-1.8.9-r2.ebuild:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2012-12-31 9:38 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-31 9:38 UTC (permalink / raw
To: gentoo-commits
ago 12/12/31 09:38:32
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #449332
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.6 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.5&r2=1.6
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- hdf5-1.8.10.ebuild 31 Dec 2012 09:20:50 -0000 1.5
+++ hdf5-1.8.10.ebuild 31 Dec 2012 09:38:32 -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/hdf5/hdf5-1.8.10.ebuild,v 1.5 2012/12/31 09:20:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.6 2012/12/31 09:38:32 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="NCSA-HDF"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib"
REQUIRED_USE="
1.106 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.105&r2=1.106
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog 31 Dec 2012 09:20:50 -0000 1.105
+++ ChangeLog 31 Dec 2012 09:38:32 -0000 1.106
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.105 2012/12/31 09:20:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.106 2012/12/31 09:38:32 ago Exp $
+
+ 31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
+ Stable for alpha, wrt bug #449332
31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
Stable for sparc, wrt bug #449332
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2012-12-31 21:49 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-31 21:49 UTC (permalink / raw
To: gentoo-commits
ago 12/12/31 21:49:22
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #449332
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.7 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.6&r2=1.7
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- hdf5-1.8.10.ebuild 31 Dec 2012 09:38:32 -0000 1.6
+++ hdf5-1.8.10.ebuild 31 Dec 2012 21:49:22 -0000 1.7
@@ -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/hdf5/hdf5-1.8.10.ebuild,v 1.6 2012/12/31 09:38:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.7 2012/12/31 21:49:22 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="NCSA-HDF"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib"
REQUIRED_USE="
1.107 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.106&r2=1.107
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog 31 Dec 2012 09:38:32 -0000 1.106
+++ ChangeLog 31 Dec 2012 21:49:22 -0000 1.107
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.106 2012/12/31 09:38:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.107 2012/12/31 21:49:22 ago Exp $
+
+ 31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
+ Stable for amd64, wrt bug #449332
31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
Stable for alpha, wrt bug #449332
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2012-12-31 23:31 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-31 23:31 UTC (permalink / raw
To: gentoo-commits
ago 12/12/31 23:31:39
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #449332
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.8 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.7&r2=1.8
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- hdf5-1.8.10.ebuild 31 Dec 2012 21:49:22 -0000 1.7
+++ hdf5-1.8.10.ebuild 31 Dec 2012 23:31:39 -0000 1.8
@@ -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/hdf5/hdf5-1.8.10.ebuild,v 1.7 2012/12/31 21:49:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.8 2012/12/31 23:31:39 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="NCSA-HDF"
SLOT="0"
-KEYWORDS="alpha amd64 ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~ia64 ppc ~ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib"
REQUIRED_USE="
1.108 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.107&r2=1.108
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog 31 Dec 2012 21:49:22 -0000 1.107
+++ ChangeLog 31 Dec 2012 23:31:39 -0000 1.108
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.107 2012/12/31 21:49:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.108 2012/12/31 23:31:39 ago Exp $
+
+ 31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
+ Stable for ppc, wrt bug #449332
31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
Stable for amd64, wrt bug #449332
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2013-01-04 13:13 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-04 13:13 UTC (permalink / raw
To: gentoo-commits
ago 13/01/04 13:13:25
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #449332
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.10 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.9&r2=1.10
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- hdf5-1.8.10.ebuild 1 Jan 2013 19:41:53 -0000 1.9
+++ hdf5-1.8.10.ebuild 4 Jan 2013 13:13:25 -0000 1.10
@@ -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/hdf5/hdf5-1.8.10.ebuild,v 1.9 2013/01/01 19:41:53 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.10 2013/01/04 13:13:25 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="NCSA-HDF"
SLOT="0"
-KEYWORDS="alpha amd64 ~ia64 ppc ~ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~ia64 ppc ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib"
REQUIRED_USE="
1.110 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.109&r2=1.110
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog 1 Jan 2013 19:41:53 -0000 1.109
+++ ChangeLog 4 Jan 2013 13:13:25 -0000 1.110
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.109 2013/01/01 19:41:53 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.110 2013/01/04 13:13:25 ago Exp $
+
+ 04 Jan 2013; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
+ Stable for ppc64, wrt bug #449332
01 Jan 2013; Kacper Kowalik <xarthisius@gentoo.org> hdf5-1.8.10.ebuild,
hdf5-1.8.8-r1.ebuild, hdf5-1.8.9-r2.ebuild:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2013-01-04 20:09 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-04 20:09 UTC (permalink / raw
To: gentoo-commits
ago 13/01/04 20:09:11
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #449332
(Portage version: 2.1.11.31/cvs/Linux ia64, unsigned Manifest commit)
Revision Changes Path
1.11 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.10&r2=1.11
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- hdf5-1.8.10.ebuild 4 Jan 2013 13:13:25 -0000 1.10
+++ hdf5-1.8.10.ebuild 4 Jan 2013 20:09:11 -0000 1.11
@@ -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/hdf5/hdf5-1.8.10.ebuild,v 1.10 2013/01/04 13:13:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.11 2013/01/04 20:09:11 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="NCSA-HDF"
SLOT="0"
-KEYWORDS="alpha amd64 ~ia64 ppc ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib"
REQUIRED_USE="
1.111 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.110&r2=1.111
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog 4 Jan 2013 13:13:25 -0000 1.110
+++ ChangeLog 4 Jan 2013 20:09:11 -0000 1.111
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.110 2013/01/04 13:13:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.111 2013/01/04 20:09:11 ago Exp $
+
+ 04 Jan 2013; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
+ Stable for ia64, wrt bug #449332
04 Jan 2013; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
Stable for ppc64, wrt bug #449332
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog
@ 2013-02-25 13:31 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-25 13:31 UTC (permalink / raw
To: gentoo-commits
ago 13/02/25 13:31:19
Modified: hdf5-1.8.10.ebuild ChangeLog
Log:
Stable for x86, wrt bug #449332
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 sci-libs/hdf5/hdf5-1.8.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild?r1=1.11&r2=1.12
Index: hdf5-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- hdf5-1.8.10.ebuild 4 Jan 2013 20:09:11 -0000 1.11
+++ hdf5-1.8.10.ebuild 25 Feb 2013 13:31:19 -0000 1.12
@@ -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/hdf5/hdf5-1.8.10.ebuild,v 1.11 2013/01/04 20:09:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.10.ebuild,v 1.12 2013/02/25 13:31:19 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="NCSA-HDF"
SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib"
REQUIRED_USE="
1.113 sci-libs/hdf5/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/ChangeLog?r1=1.112&r2=1.113
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog 28 Jan 2013 19:41:03 -0000 1.112
+++ ChangeLog 25 Feb 2013 13:31:19 -0000 1.113
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/hdf5
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.112 2013/01/28 19:41:03 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.113 2013/02/25 13:31:19 ago Exp $
+
+ 25 Feb 2013; Agostino Sarubbo <ago@gentoo.org> hdf5-1.8.10.ebuild:
+ Stable for x86, wrt bug #449332
*hdf5-1.8.10_p1 (28 Jan 2013)
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2013-02-25 13:31 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-31 21:49 [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5: hdf5-1.8.10.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2013-02-25 13:31 Agostino Sarubbo (ago)
2013-01-04 20:09 Agostino Sarubbo (ago)
2013-01-04 13:13 Agostino Sarubbo (ago)
2012-12-31 23:31 Agostino Sarubbo (ago)
2012-12-31 9:38 Agostino Sarubbo (ago)
2012-12-31 9:20 Agostino Sarubbo (ago)
2012-12-30 17:02 Kacper Kowalik (xarthisius)
2012-12-11 17:31 Kacper Kowalik (xarthisius)
2012-12-04 6:59 Kacper Kowalik (xarthisius)
2012-11-06 19:56 Kacper Kowalik (xarthisius)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox