public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-cluster/mpich2: mpich2-1.5.ebuild ChangeLog
@ 2012-11-02  4:37 Justin Bronder (jsbronder)
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Bronder (jsbronder) @ 2012-11-02  4:37 UTC (permalink / raw
  To: gentoo-commits

jsbronder    12/11/02 04:37:25

  Modified:             ChangeLog
  Added:                mpich2-1.5.ebuild
  Log:
  bump, fixes #437802
  
  (Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key 4D7043C9)

Revision  Changes    Path
1.81                 sys-cluster/mpich2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	16 Oct 2012 18:43:14 -0000	1.80
+++ ChangeLog	2 Nov 2012 04:37:25 -0000	1.81
@@ -1,6 +1,11 @@
 # ChangeLog for sys-cluster/mpich2
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.80 2012/10/16 18:43:14 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.81 2012/11/02 04:37:25 jsbronder Exp $
+
+*mpich2-1.5 (02 Nov 2012)
+
+  02 Nov 2012; Justin Bronder <jsbronder@gentoo.org> +mpich2-1.5.ebuild:
+  bump
 
   16 Oct 2012; Justin Lecher <jlec@gentoo.org> mpich2-1.2.1_p1-r1.ebuild,
   mpich2-1.4_rc2-r1.ebuild, mpich2-1.4.1_p1.ebuild, metadata.xml:



1.1                  sys-cluster/mpich2/mpich2-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.1&content-type=text/plain

Index: mpich2-1.5.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.1 2012/11/02 04:37:25 jsbronder Exp $

EAPI=5

FORTRAN_NEEDED=fortran

inherit fortran-2

MY_PV=${PV/_/}
DESCRIPTION="A high performance and portable MPI implementation"
HOMEPAGE="http://www.mcs.anl.gov/research/projects/mpich2/index.php"
SRC_URI="http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/${MY_PV}/${PN}-${MY_PV}.tar.gz"

SLOT="0"
LICENSE="as-is"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
IUSE="+cxx doc fortran mpi-threads romio threads"

COMMON_DEPEND="
	dev-libs/libaio
	sys-apps/hwloc
	romio? ( net-fs/nfs-utils )"

DEPEND="${COMMON_DEPEND}
	dev-lang/perl
	sys-devel/libtool"

RDEPEND="${COMMON_DEPEND}
	!sys-cluster/openmpi"

S="${WORKDIR}"/${PN}-${MY_PV}

pkg_setup() {
	FORTRAN_STANDARD="77 90"
	fortran-2_pkg_setup

	if use mpi-threads && ! use threads; then
		ewarn "mpi-threads requires threads, assuming that's what you want"
	fi
}

src_prepare() {
	# Using MPICH2LIB_LDFLAGS doesn't seem to full work.
	sed -i 's| *@WRAPPER_LDFLAGS@ *||' \
		src/packaging/pkgconfig/mpich2.pc.in \
		src/env/*.in \
		|| die
}

src_configure() {
	local c="--enable-shared"

	# The configure statements can be somewhat confusing, as they
	# don't all show up in the top level configure, however, they
	# are picked up in the children directories.

	if use mpi-threads; then
		# MPI-THREAD requries threading.
		c="${c} --with-thread-package=pthreads"
		c="${c} --enable-threads=runtime"
	else
		if use threads ; then
			c="${c} --with-thread-package=pthreads"
		else
			c="${c} --with-thread-package=none"
		fi
		c="${c} --enable-threads=single"
	fi

	export MPICH2LIB_CFLAGS=${CFLAGS}
	export MPICH2LIB_CPPFLAGS=${CPPFLAGS}
	export MPICH2LIB_CXXFLAGS=${CXXFLAGS}
	export MPICH2LIB_FFLAGS=${FFLAGS}
	export MPICH2LIB_FCFLAGS=${FCFLAGS}
	export MPICH2LIB_LDFLAGS=${LDFLAGS}
	unset CFLAGS CPPFLAGS CXXFLAGS FFLAGS FCFLAGS LDFLAGS

	c="${c} --sysconfdir=${EPREFIX}/etc/${PN}"
	c="${c} --docdir=${EPREFIX}/usr/share/doc/${PF}"
	econf ${c} \
		--with-pm=hydra \
		--disable-mpe \
		--disable-fast \
		--enable-smpcoll \
		--enable-versioning \
		$(use_enable romio) \
		$(use_enable cxx) \
		$(use_enable fortran f77) \
		$(use_enable fortran fc)
}

src_test() {
	emake -j1 check
}

src_install() {
	default

	dodir /usr/share/doc/${PF}
	dodoc COPYRIGHT README{,.envvar} CHANGES RELEASE_NOTES
	newdoc src/pm/hydra/README README.hydra
	if use romio; then
		newdoc src/mpi/romio/README README.romio
	fi

	if ! use doc; then
		rm -rf "${D}"usr/share/doc/${PF}/www*
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in sys-cluster/mpich2: mpich2-1.5.ebuild ChangeLog
@ 2013-02-20 15:56 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-20 15:56 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/20 15:56:24

  Modified:             mpich2-1.5.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #458206
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  sys-cluster/mpich2/mpich2-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?r1=1.2&r2=1.3

Index: mpich2-1.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mpich2-1.5.ebuild	6 Jan 2013 18:47:14 -0000	1.2
+++ mpich2-1.5.ebuild	20 Feb 2013 15:56:24 -0000	1.3
@@ -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/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.2 2013/01/06 18:47:14 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.3 2013/02/20 15:56:24 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="mpich2"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



1.85                 sys-cluster/mpich2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	6 Jan 2013 18:47:14 -0000	1.84
+++ ChangeLog	20 Feb 2013 15:56:24 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for sys-cluster/mpich2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.84 2013/01/06 18:47:14 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.85 2013/02/20 15:56:24 ago Exp $
+
+  20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> mpich2-1.5.ebuild:
+  Stable for amd64, wrt bug #458206
 
   06 Jan 2013; Justin Bronder <jsbronder@gentoo.org> mpich2-1.2.1_p1-r1.ebuild,
   mpich2-1.4.1_p1.ebuild, mpich2-1.5.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in sys-cluster/mpich2: mpich2-1.5.ebuild ChangeLog
@ 2013-02-20 16:07 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-20 16:07 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/20 16:07:11

  Modified:             mpich2-1.5.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #458206
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  sys-cluster/mpich2/mpich2-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?r1=1.3&r2=1.4

Index: mpich2-1.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mpich2-1.5.ebuild	20 Feb 2013 15:56:24 -0000	1.3
+++ mpich2-1.5.ebuild	20 Feb 2013 16:07:11 -0000	1.4
@@ -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/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.3 2013/02/20 15:56:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.4 2013/02/20 16:07:11 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="mpich2"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



1.86                 sys-cluster/mpich2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	20 Feb 2013 15:56:24 -0000	1.85
+++ ChangeLog	20 Feb 2013 16:07:11 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for sys-cluster/mpich2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.85 2013/02/20 15:56:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.86 2013/02/20 16:07:11 ago Exp $
+
+  20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> mpich2-1.5.ebuild:
+  Stable for x86, wrt bug #458206
 
   20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> mpich2-1.5.ebuild:
   Stable for amd64, wrt bug #458206





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

* [gentoo-commits] gentoo-x86 commit in sys-cluster/mpich2: mpich2-1.5.ebuild ChangeLog
@ 2013-02-22 17:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-22 17:26 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/22 17:26:35

  Modified:             mpich2-1.5.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #458206
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  sys-cluster/mpich2/mpich2-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?r1=1.4&r2=1.5

Index: mpich2-1.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mpich2-1.5.ebuild	20 Feb 2013 16:07:11 -0000	1.4
+++ mpich2-1.5.ebuild	22 Feb 2013 17:26:35 -0000	1.5
@@ -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/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.4 2013/02/20 16:07:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.5 2013/02/22 17:26:35 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="mpich2"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~hppa ppc ~ppc64 x86"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



1.87                 sys-cluster/mpich2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	20 Feb 2013 16:07:11 -0000	1.86
+++ ChangeLog	22 Feb 2013 17:26:35 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for sys-cluster/mpich2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.86 2013/02/20 16:07:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.87 2013/02/22 17:26:35 ago Exp $
+
+  22 Feb 2013; Agostino Sarubbo <ago@gentoo.org> mpich2-1.5.ebuild:
+  Stable for ppc, wrt bug #458206
 
   20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> mpich2-1.5.ebuild:
   Stable for x86, wrt bug #458206





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

* [gentoo-commits] gentoo-x86 commit in sys-cluster/mpich2: mpich2-1.5.ebuild ChangeLog
@ 2013-02-23 22:04 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-23 22:04 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/23 22:04:30

  Modified:             mpich2-1.5.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #458206
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  sys-cluster/mpich2/mpich2-1.5.ebuild

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

Index: mpich2-1.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mpich2-1.5.ebuild	22 Feb 2013 17:26:35 -0000	1.5
+++ mpich2-1.5.ebuild	23 Feb 2013 22:04:30 -0000	1.6
@@ -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/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.5 2013/02/22 17:26:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.6 2013/02/23 22:04:30 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="mpich2"
-KEYWORDS="amd64 ~hppa ppc ~ppc64 x86"
+KEYWORDS="amd64 ~hppa ppc ppc64 x86"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



1.88                 sys-cluster/mpich2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	22 Feb 2013 17:26:35 -0000	1.87
+++ ChangeLog	23 Feb 2013 22:04:30 -0000	1.88
@@ -1,6 +1,9 @@
 # ChangeLog for sys-cluster/mpich2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.87 2013/02/22 17:26:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.88 2013/02/23 22:04:30 ago Exp $
+
+  23 Feb 2013; Agostino Sarubbo <ago@gentoo.org> mpich2-1.5.ebuild:
+  Stable for ppc64, wrt bug #458206
 
   22 Feb 2013; Agostino Sarubbo <ago@gentoo.org> mpich2-1.5.ebuild:
   Stable for ppc, wrt bug #458206





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

* [gentoo-commits] gentoo-x86 commit in sys-cluster/mpich2: mpich2-1.5.ebuild ChangeLog
@ 2013-02-28 14:33 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2013-02-28 14:33 UTC (permalink / raw
  To: gentoo-commits

jer         13/02/28 14:33:17

  Modified:             mpich2-1.5.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #458206).
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.7                  sys-cluster/mpich2/mpich2-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?r1=1.6&r2=1.7

Index: mpich2-1.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- mpich2-1.5.ebuild	23 Feb 2013 22:04:30 -0000	1.6
+++ mpich2-1.5.ebuild	28 Feb 2013 14:33:17 -0000	1.7
@@ -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/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.6 2013/02/23 22:04:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.7 2013/02/28 14:33:17 jer Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="mpich2"
-KEYWORDS="amd64 ~hppa ppc ppc64 x86"
+KEYWORDS="amd64 hppa ppc ppc64 x86"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



1.89                 sys-cluster/mpich2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	23 Feb 2013 22:04:30 -0000	1.88
+++ ChangeLog	28 Feb 2013 14:33:17 -0000	1.89
@@ -1,6 +1,9 @@
 # ChangeLog for sys-cluster/mpich2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.88 2013/02/23 22:04:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.89 2013/02/28 14:33:17 jer Exp $
+
+  28 Feb 2013; Jeroen Roovers <jer@gentoo.org> mpich2-1.5.ebuild:
+  Stable for HPPA (bug #458206).
 
   23 Feb 2013; Agostino Sarubbo <ago@gentoo.org> mpich2-1.5.ebuild:
   Stable for ppc64, wrt bug #458206





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

* [gentoo-commits] gentoo-x86 commit in sys-cluster/mpich2: mpich2-1.5.ebuild ChangeLog
@ 2013-06-17  4:53 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 7+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2013-06-17  4:53 UTC (permalink / raw
  To: gentoo-commits

bicatali    13/06/17 04:53:03

  Modified:             mpich2-1.5.ebuild ChangeLog
  Log:
  Keyword amd64-linux and x86-linux
  
  (Portage version: 2.2.01.22013-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)

Revision  Changes    Path
1.8                  sys-cluster/mpich2/mpich2-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild?r1=1.7&r2=1.8

Index: mpich2-1.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- mpich2-1.5.ebuild	28 Feb 2013 14:33:17 -0000	1.7
+++ mpich2-1.5.ebuild	17 Jun 2013 04:53:03 -0000	1.8
@@ -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/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.7 2013/02/28 14:33:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/mpich2-1.5.ebuild,v 1.8 2013/06/17 04:53:03 bicatali Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="mpich2"
-KEYWORDS="amd64 hppa ppc ppc64 x86"
+KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



1.90                 sys-cluster/mpich2/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/mpich2/ChangeLog?r1=1.89&r2=1.90

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog	28 Feb 2013 14:33:17 -0000	1.89
+++ ChangeLog	17 Jun 2013 04:53:03 -0000	1.90
@@ -1,6 +1,9 @@
 # ChangeLog for sys-cluster/mpich2
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.89 2013/02/28 14:33:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/mpich2/ChangeLog,v 1.90 2013/06/17 04:53:03 bicatali Exp $
+
+  17 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> mpich2-1.5.ebuild:
+  Keyword amd64-linux and x86-linux
 
   28 Feb 2013; Jeroen Roovers <jer@gentoo.org> mpich2-1.5.ebuild:
   Stable for HPPA (bug #458206).





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

end of thread, other threads:[~2013-06-17  4:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-23 22:04 [gentoo-commits] gentoo-x86 commit in sys-cluster/mpich2: mpich2-1.5.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-17  4:53 Sebastien Fabbro (bicatali)
2013-02-28 14:33 Jeroen Roovers (jer)
2013-02-22 17:26 Agostino Sarubbo (ago)
2013-02-20 16:07 Agostino Sarubbo (ago)
2013-02-20 15:56 Agostino Sarubbo (ago)
2012-11-02  4:37 Justin Bronder (jsbronder)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox