* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-4.1.1-r4.ebuild
@ 2010-12-17 20:17 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2010-12-17 20:17 UTC (permalink / raw
To: gentoo-commits
xarthisius 10/12/17 20:17:06
Modified: ChangeLog
Added: netcdf-4.1.1-r4.ebuild
Log:
Default to gfortran if cannot figure out compiler wrt #348922 by Honza Macháček <Hloupy.Honza@centrum.cz> Drop old.
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Revision Changes Path
1.79 sci-libs/netcdf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.78&r2=1.79
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog 6 Dec 2010 12:47:00 -0000 1.78
+++ ChangeLog 17 Dec 2010 20:17:06 -0000 1.79
@@ -1,6 +1,13 @@
# ChangeLog for sci-libs/netcdf
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.78 2010/12/06 12:47:00 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.79 2010/12/17 20:17:06 xarthisius Exp $
+
+*netcdf-4.1.1-r4 (17 Dec 2010)
+
+ 17 Dec 2010; Kacper Kowalik <xarthisius@gentoo.org> +netcdf-4.1.1-r4.ebuild,
+ +files/netcdf-4.1.1-fortran.patch:
+ Default to gfortran if cannot figure out compiler wrt #348922 by Honza
+ Macháček <Hloupy.Honza@centrum.cz> Drop old.
*netcdf-4.1.1-r3 (06 Dec 2010)
1.1 sci-libs/netcdf/netcdf-4.1.1-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.1&content-type=text/plain
Index: netcdf-4.1.1-r4.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.1 2010/12/17 20:17:06 xarthisius Exp $
EAPI="3"
inherit autotools autotools-utils
DESCRIPTION="Scientific library and interface for array oriented data access"
HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/"
SRC_URI="ftp://ftp.unidata.ucar.edu/pub/netcdf/${P}.tar.gz"
LICENSE="UCAR-Unidata"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="cxx dap doc fortran hdf5 static-libs szip"
RDEPEND="dap? ( net-misc/curl )
hdf5? ( >=sci-libs/hdf5-1.8[zlib,szip?,fortran?] )"
DEPEND="${RDEPEND}
>=sys-devel/libtool-2.2
doc? ( virtual/latex-base )
fortran? ( dev-lang/cfortran )"
DOCS=(README RELEASE_NOTES)
PATCHES=(
"${FILESDIR}"/${P}-parallel-build.patch
"${FILESDIR}"/${P}-implicits.patch
"${FILESDIR}"/${P}-mpi-fix.patch
"${FILESDIR}"/${P}-fortran.patch
)
pkg_setup() {
if use hdf5 && has_version sci-libs/hdf5[mpi]; then
export CC=mpicc
if use cxx; then
export CXX=mpicxx
fi
if use fortran; then
export FC=mpif90
export F77=mpif77
fi
fi
}
src_prepare() {
# use system cfortran
rm -f fortran/cfortran.h || die
# we don't build udunits and libcf
sed -i -e '/udunits libcf/d' configure.ac || die
if ! use doc; then
sed -i -e "/\$(NC_TEST4)/ s/man4//" Makefile.am || die
fi
autotools-utils_src_prepare
eautoreconf
}
src_configure() {
local myconf
if use hdf5; then
myconf="--with-hdf5=${EPREFIX}/usr --with-zlib=${EPREFIX}/usr"
use szip && myconf="${myconf} --with-szlib=${EPREFIX}/usr"
fi
myeconfargs=(
--enable-shared
--docdir="${EPREFIX}"/usr/share/doc/${PF}
$(use_enable dap)
$(use_enable static-libs static)
$(use_enable fortran f77)
$(use_enable fortran f90)
$(use_enable cxx)
$(use_enable fortran separate-fortran)
$(use_enable hdf5 netcdf-4)
${myconf}
)
autotools-utils_src_configure
}
src_compile() {
# hack to allow parallel build
if use doc; then
autotools-utils_src_compile pdf
autotools-utils_src_compile -j1 -C man4
fi
autotools-utils_src_compile
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-4.1.1-r4.ebuild
@ 2011-02-27 10:28 Tobias Klausmann (klausman)
0 siblings, 0 replies; 8+ messages in thread
From: Tobias Klausmann (klausman) @ 2011-02-27 10:28 UTC (permalink / raw
To: gentoo-commits
klausman 11/02/27 10:28:15
Modified: ChangeLog netcdf-4.1.1-r4.ebuild
Log:
Stable on alpha, bug #325069
(Portage version: 2.1.9.41/cvs/Linux x86_64)
Revision Changes Path
1.82 sci-libs/netcdf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.81&r2=1.82
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog 29 Jan 2011 20:17:39 -0000 1.81
+++ ChangeLog 27 Feb 2011 10:28:15 -0000 1.82
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/netcdf
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.81 2011/01/29 20:17:39 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.82 2011/02/27 10:28:15 klausman Exp $
+
+ 27 Feb 2011; Tobias Klausmann <klausman@gentoo.org> netcdf-4.1.1-r4.ebuild:
+ Stable on alpha, bug #325069
29 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org>
files/netcdf-4.1.1-parallel-build.patch:
1.2 sci-libs/netcdf/netcdf-4.1.1-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?r1=1.1&r2=1.2
Index: netcdf-4.1.1-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- netcdf-4.1.1-r4.ebuild 17 Dec 2010 20:17:06 -0000 1.1
+++ netcdf-4.1.1-r4.ebuild 27 Feb 2011 10:28:15 -0000 1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.1 2010/12/17 20:17:06 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.2 2011/02/27 10:28:15 klausman Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="UCAR-Unidata"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="cxx dap doc fortran hdf5 static-libs szip"
RDEPEND="dap? ( net-misc/curl )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-4.1.1-r4.ebuild
@ 2011-02-27 13:57 Markos Chandras (hwoarang)
0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-02-27 13:57 UTC (permalink / raw
To: gentoo-commits
hwoarang 11/02/27 13:57:20
Modified: ChangeLog netcdf-4.1.1-r4.ebuild
Log:
Stable on amd64 wrt bug #325069
(Portage version: 2.1.9.41/cvs/Linux x86_64)
Revision Changes Path
1.83 sci-libs/netcdf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.82&r2=1.83
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog 27 Feb 2011 10:28:15 -0000 1.82
+++ ChangeLog 27 Feb 2011 13:57:20 -0000 1.83
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/netcdf
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.82 2011/02/27 10:28:15 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.83 2011/02/27 13:57:20 hwoarang Exp $
+
+ 27 Feb 2011; Markos Chandras <hwoarang@gentoo.org> netcdf-4.1.1-r4.ebuild:
+ Stable on amd64 wrt bug #325069
27 Feb 2011; Tobias Klausmann <klausman@gentoo.org> netcdf-4.1.1-r4.ebuild:
Stable on alpha, bug #325069
1.3 sci-libs/netcdf/netcdf-4.1.1-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?r1=1.2&r2=1.3
Index: netcdf-4.1.1-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- netcdf-4.1.1-r4.ebuild 27 Feb 2011 10:28:15 -0000 1.2
+++ netcdf-4.1.1-r4.ebuild 27 Feb 2011 13:57:20 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.2 2011/02/27 10:28:15 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.3 2011/02/27 13:57:20 hwoarang Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="UCAR-Unidata"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="cxx dap doc fortran hdf5 static-libs szip"
RDEPEND="dap? ( net-misc/curl )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-4.1.1-r4.ebuild
@ 2011-03-01 12:40 Michael Weber (xmw)
0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber (xmw) @ 2011-03-01 12:40 UTC (permalink / raw
To: gentoo-commits
xmw 11/03/01 12:40:32
Modified: ChangeLog netcdf-4.1.1-r4.ebuild
Log:
ppc/sparc stable (bug 325069)
(Portage version: 2.1.9.41/cvs/Linux x86_64)
Revision Changes Path
1.84 sci-libs/netcdf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.83&r2=1.84
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog 27 Feb 2011 13:57:20 -0000 1.83
+++ ChangeLog 1 Mar 2011 12:40:32 -0000 1.84
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/netcdf
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.83 2011/02/27 13:57:20 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.84 2011/03/01 12:40:32 xmw Exp $
+
+ 01 Mar 2011; Michael Weber <xmw@gentoo.org> netcdf-4.1.1-r4.ebuild:
+ ppc/sparc stable (bug 325069)
27 Feb 2011; Markos Chandras <hwoarang@gentoo.org> netcdf-4.1.1-r4.ebuild:
Stable on amd64 wrt bug #325069
1.4 sci-libs/netcdf/netcdf-4.1.1-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?r1=1.3&r2=1.4
Index: netcdf-4.1.1-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- netcdf-4.1.1-r4.ebuild 27 Feb 2011 13:57:20 -0000 1.3
+++ netcdf-4.1.1-r4.ebuild 1 Mar 2011 12:40:32 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.3 2011/02/27 13:57:20 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.4 2011/03/01 12:40:32 xmw Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="UCAR-Unidata"
SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 ~hppa ~ia64 ~mips ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="cxx dap doc fortran hdf5 static-libs szip"
RDEPEND="dap? ( net-misc/curl )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-4.1.1-r4.ebuild
@ 2011-03-05 15:51 Jeroen Roovers (jer)
0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2011-03-05 15:51 UTC (permalink / raw
To: gentoo-commits
jer 11/03/05 15:51:46
Modified: ChangeLog netcdf-4.1.1-r4.ebuild
Log:
Stable for HPPA (bug #325069).
(Portage version: 2.2.0_alpha26/cvs/Linux i686)
Revision Changes Path
1.85 sci-libs/netcdf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.84&r2=1.85
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog 1 Mar 2011 12:40:32 -0000 1.84
+++ ChangeLog 5 Mar 2011 15:51:46 -0000 1.85
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/netcdf
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.84 2011/03/01 12:40:32 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.85 2011/03/05 15:51:46 jer Exp $
+
+ 05 Mar 2011; Jeroen Roovers <jer@gentoo.org> netcdf-4.1.1-r4.ebuild:
+ Stable for HPPA (bug #325069).
01 Mar 2011; Michael Weber <xmw@gentoo.org> netcdf-4.1.1-r4.ebuild:
ppc/sparc stable (bug 325069)
1.5 sci-libs/netcdf/netcdf-4.1.1-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?r1=1.4&r2=1.5
Index: netcdf-4.1.1-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- netcdf-4.1.1-r4.ebuild 1 Mar 2011 12:40:32 -0000 1.4
+++ netcdf-4.1.1-r4.ebuild 5 Mar 2011 15:51:46 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.4 2011/03/01 12:40:32 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.5 2011/03/05 15:51:46 jer Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="UCAR-Unidata"
SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ~ia64 ~mips ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 hppa ~ia64 ~mips ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="cxx dap doc fortran hdf5 static-libs szip"
RDEPEND="dap? ( net-misc/curl )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-4.1.1-r4.ebuild
@ 2011-03-06 12:24 Fabian Groffen (grobian)
0 siblings, 0 replies; 8+ messages in thread
From: Fabian Groffen (grobian) @ 2011-03-06 12:24 UTC (permalink / raw
To: gentoo-commits
grobian 11/03/06 12:24:36
Modified: ChangeLog netcdf-4.1.1-r4.ebuild
Log:
Marked ~x86-macos, ~x64-macos, ~sparc-solaris and ~sparc64-solaris
(Portage version: 2.2.01.18036-prefix/cvs/Darwin powerpc)
Revision Changes Path
1.86 sci-libs/netcdf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.85&r2=1.86
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog 5 Mar 2011 15:51:46 -0000 1.85
+++ ChangeLog 6 Mar 2011 12:24:36 -0000 1.86
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/netcdf
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.85 2011/03/05 15:51:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.86 2011/03/06 12:24:36 grobian Exp $
+
+ 06 Mar 2011; Fabian Groffen <grobian@gentoo.org> netcdf-4.1.1-r4.ebuild:
+ Marked ~x86-macos, ~x64-macos, ~sparc-solaris and ~sparc64-solaris
05 Mar 2011; Jeroen Roovers <jer@gentoo.org> netcdf-4.1.1-r4.ebuild:
Stable for HPPA (bug #325069).
1.6 sci-libs/netcdf/netcdf-4.1.1-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?r1=1.5&r2=1.6
Index: netcdf-4.1.1-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- netcdf-4.1.1-r4.ebuild 5 Mar 2011 15:51:46 -0000 1.5
+++ netcdf-4.1.1-r4.ebuild 6 Mar 2011 12:24:36 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.5 2011/03/05 15:51:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.6 2011/03/06 12:24:36 grobian Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="UCAR-Unidata"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ~ia64 ~mips ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 hppa ~ia64 ~mips ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
IUSE="cxx dap doc fortran hdf5 static-libs szip"
RDEPEND="dap? ( net-misc/curl )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-4.1.1-r4.ebuild
@ 2011-03-09 10:04 Thomas Kahle (tomka)
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Kahle (tomka) @ 2011-03-09 10:04 UTC (permalink / raw
To: gentoo-commits
tomka 11/03/09 10:04:12
Modified: ChangeLog netcdf-4.1.1-r4.ebuild
Log:
x86 stable per bug 325069
(Portage version: 2.1.9.42/cvs/Linux i686)
Revision Changes Path
1.87 sci-libs/netcdf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.86&r2=1.87
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog 6 Mar 2011 12:24:36 -0000 1.86
+++ ChangeLog 9 Mar 2011 10:04:12 -0000 1.87
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/netcdf
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.86 2011/03/06 12:24:36 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.87 2011/03/09 10:04:12 tomka Exp $
+
+ 09 Mar 2011; Thomas Kahle <tomka@gentoo.org> netcdf-4.1.1-r4.ebuild:
+ x86 stable per bug 325069
06 Mar 2011; Fabian Groffen <grobian@gentoo.org> netcdf-4.1.1-r4.ebuild:
Marked ~x86-macos, ~x64-macos, ~sparc-solaris and ~sparc64-solaris
1.7 sci-libs/netcdf/netcdf-4.1.1-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?r1=1.6&r2=1.7
Index: netcdf-4.1.1-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- netcdf-4.1.1-r4.ebuild 6 Mar 2011 12:24:36 -0000 1.6
+++ netcdf-4.1.1-r4.ebuild 9 Mar 2011 10:04:12 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.6 2011/03/06 12:24:36 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.7 2011/03/09 10:04:12 tomka Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="UCAR-Unidata"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ~ia64 ~mips ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="alpha amd64 hppa ~ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
IUSE="cxx dap doc fortran hdf5 static-libs szip"
RDEPEND="dap? ( net-misc/curl )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-4.1.1-r4.ebuild
@ 2011-03-20 11:29 Raul Porcel (armin76)
0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2011-03-20 11:29 UTC (permalink / raw
To: gentoo-commits
armin76 11/03/20 11:29:41
Modified: ChangeLog netcdf-4.1.1-r4.ebuild
Log:
ia64 stable wrt #325069
(Portage version: 2.1.9.44/cvs/Linux ia64)
Revision Changes Path
1.88 sci-libs/netcdf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.87&r2=1.88
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog 9 Mar 2011 10:04:12 -0000 1.87
+++ ChangeLog 20 Mar 2011 11:29:41 -0000 1.88
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/netcdf
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.87 2011/03/09 10:04:12 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.88 2011/03/20 11:29:41 armin76 Exp $
+
+ 20 Mar 2011; Raúl Porcel <armin76@gentoo.org> netcdf-4.1.1-r4.ebuild:
+ ia64 stable wrt #325069
09 Mar 2011; Thomas Kahle <tomka@gentoo.org> netcdf-4.1.1-r4.ebuild:
x86 stable per bug 325069
1.8 sci-libs/netcdf/netcdf-4.1.1-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild?r1=1.7&r2=1.8
Index: netcdf-4.1.1-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- netcdf-4.1.1-r4.ebuild 9 Mar 2011 10:04:12 -0000 1.7
+++ netcdf-4.1.1-r4.ebuild 20 Mar 2011 11:29:41 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.7 2011/03/09 10:04:12 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-4.1.1-r4.ebuild,v 1.8 2011/03/20 11:29:41 armin76 Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="UCAR-Unidata"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ~ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
IUSE="cxx dap doc fortran hdf5 static-libs szip"
RDEPEND="dap? ( net-misc/curl )
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-03-20 11:29 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-20 11:29 [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-4.1.1-r4.ebuild Raul Porcel (armin76)
-- strict thread matches above, loose matches on Subject: below --
2011-03-09 10:04 Thomas Kahle (tomka)
2011-03-06 12:24 Fabian Groffen (grobian)
2011-03-05 15:51 Jeroen Roovers (jer)
2011-03-01 12:40 Michael Weber (xmw)
2011-02-27 13:57 Markos Chandras (hwoarang)
2011-02-27 10:28 Tobias Klausmann (klausman)
2010-12-17 20:17 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