public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-3.6.3.ebuild
@ 2009-01-15 15:04 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 4+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2009-01-15 15:04 UTC (permalink / raw
  To: gentoo-commits

bicatali    09/01/15 15:04:18

  Modified:             ChangeLog
  Added:                netcdf-3.6.3.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc22/cvs/Linux 2.6.25-gentoo-r7 x86_64)

Revision  Changes    Path
1.52                 sci-libs/netcdf/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	15 Jan 2009 13:15:06 -0000	1.51
+++ ChangeLog	15 Jan 2009 15:04:18 -0000	1.52
@@ -1,6 +1,12 @@
 # ChangeLog for sci-libs/netcdf
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.51 2009/01/15 13:15:06 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.52 2009/01/15 15:04:18 bicatali Exp $
+
+*netcdf-3.6.3 (15 Jan 2009)
+
+  15 Jan 2009; Sébastien Fabbro <bicatali@gentoo.org>
+  +files/netcdf-3.6.3-as-needed.patch, +netcdf-3.6.3.ebuild:
+  Version bump
 
   15 Jan 2009; Sébastien Fabbro <bicatali@gentoo.org>
   files/netcdf-3.6.2-gcc43.patch, -netcdf-3.6.1.ebuild,



1.1                  sci-libs/netcdf/netcdf-3.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?rev=1.1&content-type=text/plain

Index: netcdf-3.6.3.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild,v 1.1 2009/01/15 15:04:18 bicatali Exp $

EAPI=2
inherit fortran eutils toolchain-funcs flag-o-matic autotools

DESCRIPTION="Scientific library and interface for array oriented data access"
SRC_URI="ftp://ftp.unidata.ucar.edu/pub/netcdf/${P}.tar.gz"
HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/"

LICENSE="UCAR-Unidata"
SLOT="0"
IUSE="fortran debug doc"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"

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

pkg_setup() {
	if use fortran ; then
		FORTRAN="gfortran ifc g77 pgf77 pgf90"
		fortran_pkg_setup
	fi
}

src_prepare() {
	epatch "${FILESDIR}"/${PN}-3.6.2-parallel-make.patch
	epatch "${FILESDIR}"/${P}-as-needed.patch
	eautoreconf
}

src_configure() {
	use debug || append-cppflags -DNDEBUG
	local myconf
	if use fortran; then
		case "${FORTRANC}" in
			g77)
				myconf="${myconf} --enable-f77 --disable-f90"
				myconf="${myconf} F77=g77"
				;;
			pgf77)
				myconf="${myconf} --enable-f77 --disable-f90"
				myconf="${myconf} F77=pgf77"
				;;
			pgf90)
				myconf="${myconf} --enable-f77 --enable-f90"
				myconf="${myconf} FC=pgf90 F90=pgf90 F77=pgf90"
				;;
			ifc|ifort)
				myconf="${myconf} --enable-f77 --enable-f90"
				myconf="${myconf} FC=ifort F90=ifort F77=ifort"
				;;
			*)
				myconf="${myconf} --enable-f77 --enable-f90"
				myconf="${myconf} FC=gfortran F90=gfortran F77=gfortran"
				export F90FLAGS="-i4  ${F90FLAGS}"
				;;
		esac
		# fortran 90 uses FCFLAGS
		export FCFLAGS="${FFLAGS:--O2}"
	else
		myconf="${myconf} --disable-f77 --disable-f90"
	fi
	econf \
		--enable-shared \
		--docdir=/usr/share/doc/${PF} \
		$(use_enable debug flag-setting ) \
		$(use_enable doc docs-install) \
		${myconf}
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	dodoc README RELEASE_NOTES VERSION || die "dodoc failed"
	# keep only pdf,txt and html docs, info were already installed
	if use doc; then
		find "${D}usr/share/doc/${PF}" -name \*.ps -exec rm -f {} \;
		find "${D}usr/share/doc/${PF}" -name \*.info -exec rm -f {} \;
		find "${D}usr/share/doc/${PF}" -name \*.txt -exec ecompress {} \;
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-3.6.3.ebuild
@ 2010-06-22 14:30 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2010-06-22 14:30 UTC (permalink / raw
  To: gentoo-commits

jlec        10/06/22 14:30:06

  Modified:             ChangeLog netcdf-3.6.3.ebuild
  Log:
  Parallel build fix, #187759
  (Portage version: 2.2_rc67/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.67                 sci-libs/netcdf/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	27 Apr 2010 16:13:14 -0000	1.66
+++ ChangeLog	22 Jun 2010 14:30:06 -0000	1.67
@@ -1,6 +1,10 @@
 # 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.66 2010/04/27 16:13:14 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.67 2010/06/22 14:30:06 jlec Exp $
+
+  22 Jun 2010; Justin Lecher <jlec@gentoo.org> netcdf-3.6.3.ebuild,
+  +files/netcdf-3.6.3-parallel.patch:
+  Parallel build fix, #187759
 
 *netcdf-4.1.1 (27 Apr 2010)
 



1.14                 sci-libs/netcdf/netcdf-3.6.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?r1=1.13&r2=1.14

Index: netcdf-3.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- netcdf-3.6.3.ebuild	7 Dec 2009 18:30:46 -0000	1.13
+++ netcdf-3.6.3.ebuild	22 Jun 2010 14:30:06 -0000	1.14
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# 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-3.6.3.ebuild,v 1.13 2009/12/07 18:30:46 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild,v 1.14 2010/06/22 14:30:06 jlec Exp $
 
 EAPI=2
 
@@ -29,6 +29,7 @@
 
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-as-needed.patch
+	epatch "${FILESDIR}"/${P}-parallel.patch
 	eautoreconf
 }
 






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

* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-3.6.3.ebuild
@ 2010-12-01 16:55 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 4+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2010-12-01 16:55 UTC (permalink / raw
  To: gentoo-commits

bicatali    10/12/01 16:55:59

  Modified:             ChangeLog netcdf-3.6.3.ebuild
  Log:
  Remove use of fortran eclass
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.75                 sci-libs/netcdf/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	22 Oct 2010 10:31:42 -0000	1.74
+++ ChangeLog	1 Dec 2010 16:55:59 -0000	1.75
@@ -1,6 +1,9 @@
 # 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.74 2010/10/22 10:31:42 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.75 2010/12/01 16:55:59 bicatali Exp $
+
+  01 Dec 2010; Sébastien Fabbro <bicatali@gentoo.org> netcdf-3.6.3.ebuild:
+  Remove use of fortran eclass
 
   22 Oct 2010; Fabian Groffen <grobian@gentoo.org> netcdf-4.1.1.ebuild:
   Marked ~ppc-macos



1.15                 sci-libs/netcdf/netcdf-3.6.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?r1=1.14&r2=1.15

Index: netcdf-3.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- netcdf-3.6.3.ebuild	22 Jun 2010 14:30:06 -0000	1.14
+++ netcdf-3.6.3.ebuild	1 Dec 2010 16:55:59 -0000	1.15
@@ -1,10 +1,10 @@
 # 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-3.6.3.ebuild,v 1.14 2010/06/22 14:30:06 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild,v 1.15 2010/12/01 16:55:59 bicatali Exp $
 
 EAPI=2
 
-inherit fortran eutils toolchain-funcs flag-o-matic autotools
+inherit eutils toolchain-funcs flag-o-matic autotools
 
 DESCRIPTION="Scientific library and interface for array oriented data access"
 SRC_URI="ftp://ftp.unidata.ucar.edu/pub/netcdf/${P}.tar.gz"
@@ -20,13 +20,6 @@
 	>=sys-devel/libtool-2.2
 	doc? ( virtual/latex-base )"
 
-pkg_setup() {
-	if use fortran ; then
-		FORTRAN="gfortran ifc g77 pgf77 pgf90"
-		fortran_pkg_setup
-	fi
-}
-
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-as-needed.patch
 	epatch "${FILESDIR}"/${P}-parallel.patch
@@ -37,8 +30,8 @@
 	use debug || append-cppflags -DNDEBUG
 	local myconf
 	if use fortran; then
-		case "${FORTRANC}" in
-			g77)
+		case "$(tc-getFC)" in
+			*g77)
 				myconf="${myconf} --enable-f77 --disable-f90"
 				myconf="${myconf} F77=g77"
 				;;






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

* [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-3.6.3.ebuild
@ 2012-07-06  7:50 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2012-07-06  7:50 UTC (permalink / raw
  To: gentoo-commits

jlec        12/07/06 07:50:51

  Modified:             ChangeLog
  Removed:              netcdf-3.6.3.ebuild
  Log:
  sci-libs/netcdf: Version 3* dropped, due to unfixed bfr overflow, #424976
  
  (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)

Revision  Changes    Path
1.99                 sci-libs/netcdf/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	27 Jun 2012 10:05:28 -0000	1.98
+++ ChangeLog	6 Jul 2012 07:50:51 -0000	1.99
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/netcdf
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.98 2012/06/27 10:05:28 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.99 2012/07/06 07:50:51 jlec Exp $
+
+  06 Jul 2012; Justin Lecher <jlec@gentoo.org> -netcdf-3.6.3.ebuild:
+  Version 3* dropped, due to unfixed bfr overflow, #424976
 
   27 Jun 2012; Justin Lecher <jlec@gentoo.org> netcdf-3.6.3.ebuild,
   netcdf-4.1.1-r4.ebuild, metadata.xml:






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

end of thread, other threads:[~2012-07-06  7:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-06  7:50 [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-3.6.3.ebuild Justin Lecher (jlec)
  -- strict thread matches above, loose matches on Subject: below --
2010-12-01 16:55 Sebastien Fabbro (bicatali)
2010-06-22 14:30 Justin Lecher (jlec)
2009-01-15 15:04 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