public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-cluster/openmpi: ChangeLog openmpi-1.5.3.ebuild
@ 2011-03-22  1:21 Justin Bronder (jsbronder)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Bronder (jsbronder) @ 2011-03-22  1:21 UTC (permalink / raw
  To: gentoo-commits

jsbronder    11/03/22 01:21:41

  Modified:             ChangeLog
  Added:                openmpi-1.5.3.ebuild
  Log:
  Version bump (#349076). Remove unnecessary test restriction.  Use system hwloc library.
  
  (Portage version: 2.1.9.43/cvs/Linux x86_64)

Revision  Changes    Path
1.80                 sys-cluster/openmpi/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	14 Jan 2011 08:06:47 -0000	1.79
+++ ChangeLog	22 Mar 2011 01:21:41 -0000	1.80
@@ -1,6 +1,12 @@
 # ChangeLog for sys-cluster/openmpi
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v 1.79 2011/01/14 08:06:47 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v 1.80 2011/03/22 01:21:41 jsbronder Exp $
+
+*openmpi-1.5.3 (22 Mar 2011)
+
+  22 Mar 2011; Justin Bronder <jsbronder@gentoo.org> +openmpi-1.5.3.ebuild:
+  Version bump (#349076). Remove unnecessary test restriction.
+  Use system hwloc library.
 
   14 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> openmpi-1.4.2.ebuild:
   ppc64 stable wrt #337129, drop old.



1.1                  sys-cluster/openmpi/openmpi-1.5.3.ebuild

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

Index: openmpi-1.5.3.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v 1.1 2011/03/22 01:21:41 jsbronder Exp $

EAPI=3
inherit eutils multilib flag-o-matic toolchain-funcs

MY_P=${P/-mpi}
S=${WORKDIR}/${MY_P}

DESCRIPTION="A high-performance message passing library (MPI)"
HOMEPAGE="http://www.open-mpi.org"
SRC_URI="http://www.open-mpi.org/software/ompi/v1.5/downloads/${MY_P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="+cxx elibc_FreeBSD fortran heterogeneous ipv6 mpi-threads pbs romio threads vt"
RDEPEND="pbs? ( sys-cluster/torque )
	vt? (
		!dev-libs/libotf
		!app-text/lcdf-typetools
	)
	elibc_FreeBSD? ( dev-libs/libexecinfo )
	>=sys-apps/hwloc-1.1.1
	!sys-cluster/mpich
	!sys-cluster/lam-mpi
	!sys-cluster/mpich2
	!sys-cluster/mpiexec"
DEPEND="${RDEPEND}"

pkg_setup() {
	if use mpi-threads; then
		echo
		ewarn "WARNING: use of MPI_THREAD_MULTIPLE is still disabled by"
		ewarn "default and officially unsupported by upstream."
		ewarn "You may stop now and set USE=-mpi-threads"
		echo
	fi

	echo
	elog "OpenMPI has an overwhelming count of configuration options."
	elog "Don't forget the EXTRA_ECONF environment variable can let you"
	elog "specify configure options if you find them necessary."
	echo
}

src_prepare() {
	# Necessary for scalibility, see
	# http://www.open-mpi.org/community/lists/users/2008/09/6514.php
	if use threads; then
		echo 'oob_tcp_listen_mode = listen_thread' \
			>> opal/etc/openmpi-mca-params.conf
	fi
}

src_configure() {
	local myconf=(
		--sysconfdir="${EPREFIX}/etc/${PN}"
		--enable-pretty-print-stacktrace
		--enable-orterun-prefix-by-default
		--without-slurm
		--with-hwloc=/usr
		)

	if use mpi-threads; then
		myconf+=(--enable-mpi-threads
			--enable-progress-threads)
	fi

	if use fortran; then
		if [[ $(tc-getFC) =~ g77 ]]; then
			myconf+=(--disable-mpi-f90)
		elif [[ $(tc-getFC) =~ if ]]; then
			# Enabled here as gfortran compile times are huge with this enabled.
			myconf+=(--with-mpi-f90-size=medium)
		fi
	else
		myconf+=(--disable-mpi-f90 --disable-mpi-f77)
	fi

	! use vt && myconf+=(--enable-contrib-no-build=vt)

	econf "${myconf[@]}" \
		$(use_enable cxx mpi-cxx) \
		$(use_enable romio io-romio) \
		$(use_enable heterogeneous) \
		$(use_with pbs tm) \
		$(use_enable ipv6)
}

src_install () {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc README AUTHORS NEWS VERSION || die
}

src_test() {
	# Doesn't work with the default src_test as the dry run (-n) fails.
	cd "${S}"
	emake -j1 check || die "emake check failed"
}






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

* [gentoo-commits] gentoo-x86 commit in sys-cluster/openmpi: ChangeLog openmpi-1.5.3.ebuild
@ 2011-03-22 19:28 Justin Bronder (jsbronder)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Bronder (jsbronder) @ 2011-03-22 19:28 UTC (permalink / raw
  To: gentoo-commits

jsbronder    11/03/22 19:28:29

  Modified:             ChangeLog openmpi-1.5.3.ebuild
  Log:
  Remove libtool if it was installed by USE=vt, bug #359917.
  
  (Portage version: 2.1.9.43/cvs/Linux x86_64)

Revision  Changes    Path
1.81                 sys-cluster/openmpi/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	22 Mar 2011 01:21:41 -0000	1.80
+++ ChangeLog	22 Mar 2011 19:28:29 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for sys-cluster/openmpi
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v 1.80 2011/03/22 01:21:41 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v 1.81 2011/03/22 19:28:29 jsbronder Exp $
+
+  22 Mar 2011; Justin Bronder <jsbronder@gentoo.org> openmpi-1.5.3.ebuild:
+  Remove libtool if it was installed by USE=vt, bug #359917.
 
 *openmpi-1.5.3 (22 Mar 2011)
 



1.2                  sys-cluster/openmpi/openmpi-1.5.3.ebuild

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

Index: openmpi-1.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openmpi-1.5.3.ebuild	22 Mar 2011 01:21:41 -0000	1.1
+++ openmpi-1.5.3.ebuild	22 Mar 2011 19:28:29 -0000	1.2
@@ -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/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v 1.1 2011/03/22 01:21:41 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v 1.2 2011/03/22 19:28:29 jsbronder Exp $
 
 EAPI=3
 inherit eutils multilib flag-o-matic toolchain-funcs
@@ -90,6 +90,8 @@
 
 src_install () {
 	emake DESTDIR="${D}" install || die "make install failed"
+	# From USE=vt see #359917
+	rm "${D}"/usr/share/libtool &> /dev/null
 	dodoc README AUTHORS NEWS VERSION || die
 }
 






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

* [gentoo-commits] gentoo-x86 commit in sys-cluster/openmpi: ChangeLog openmpi-1.5.3.ebuild
@ 2011-03-28 18:14 Justin Bronder (jsbronder)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Bronder (jsbronder) @ 2011-03-28 18:14 UTC (permalink / raw
  To: gentoo-commits

jsbronder    11/03/28 18:14:43

  Modified:             ChangeLog openmpi-1.5.3.ebuild
  Log:
  Fix hardened test failure (#360185).
  
  (Portage version: 2.1.9.44/cvs/Linux x86_64)

Revision  Changes    Path
1.82                 sys-cluster/openmpi/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	22 Mar 2011 19:28:29 -0000	1.81
+++ ChangeLog	28 Mar 2011 18:14:43 -0000	1.82
@@ -1,6 +1,10 @@
 # ChangeLog for sys-cluster/openmpi
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v 1.81 2011/03/22 19:28:29 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v 1.82 2011/03/28 18:14:43 jsbronder Exp $
+
+  28 Mar 2011; Justin Bronder <jsbronder@gentoo.org>
+  +files/openmpi-r24328.patch, openmpi-1.5.3.ebuild:
+  Fix hardened test failure (#360185).
 
   22 Mar 2011; Justin Bronder <jsbronder@gentoo.org> openmpi-1.5.3.ebuild:
   Remove libtool if it was installed by USE=vt, bug #359917.



1.3                  sys-cluster/openmpi/openmpi-1.5.3.ebuild

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

Index: openmpi-1.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openmpi-1.5.3.ebuild	22 Mar 2011 19:28:29 -0000	1.2
+++ openmpi-1.5.3.ebuild	28 Mar 2011 18:14:43 -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/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v 1.2 2011/03/22 19:28:29 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v 1.3 2011/03/28 18:14:43 jsbronder Exp $
 
 EAPI=3
 inherit eutils multilib flag-o-matic toolchain-funcs
@@ -51,6 +51,8 @@
 		echo 'oob_tcp_listen_mode = listen_thread' \
 			>> opal/etc/openmpi-mca-params.conf
 	fi
+
+	epatch "${FILESDIR}"/openmpi-r24328.patch
 }
 
 src_configure() {






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

* [gentoo-commits] gentoo-x86 commit in sys-cluster/openmpi: ChangeLog openmpi-1.5.3.ebuild
@ 2011-06-24 19:45 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 4+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-06-24 19:45 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/06/24 19:45:54

  Modified:             ChangeLog openmpi-1.5.3.ebuild
  Log:
  Dropped ~xf86-fbsd wrt #372885
  
  (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)

Revision  Changes    Path
1.86                 sys-cluster/openmpi/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	24 Jun 2011 15:09:06 -0000	1.85
+++ ChangeLog	24 Jun 2011 19:45:54 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for sys-cluster/openmpi
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v 1.85 2011/06/24 15:09:06 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/ChangeLog,v 1.86 2011/06/24 19:45:54 xarthisius Exp $
+
+  24 Jun 2011; Kacper Kowalik <xarthisius@gentoo.org> openmpi-1.5.3.ebuild:
+  Dropped ~xf86-fbsd wrt #372885
 
   24 Jun 2011; Justin Lecher <jlec@gentoo.org> openmpi-1.4.2.ebuild,
   openmpi-1.4.3.ebuild, openmpi-1.5.3.ebuild:



1.7                  sys-cluster/openmpi/openmpi-1.5.3.ebuild

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

Index: openmpi-1.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- openmpi-1.5.3.ebuild	24 Jun 2011 15:09:06 -0000	1.6
+++ openmpi-1.5.3.ebuild	24 Jun 2011 19:45:54 -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/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v 1.6 2011/06/24 15:09:06 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/openmpi-1.5.3.ebuild,v 1.7 2011/06/24 19:45:54 xarthisius Exp $
 
 EAPI=3
 inherit eutils fortran-2 multilib flag-o-matic toolchain-funcs
@@ -13,7 +13,7 @@
 SRC_URI="http://www.open-mpi.org/software/ompi/v1.5/downloads/${MY_P}.tar.bz2"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="+cxx elibc_FreeBSD fortran heterogeneous ipv6 mpi-threads pbs romio threads vt"
 RDEPEND="
 	fortran? ( virtual/fortran )






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

end of thread, other threads:[~2011-06-24 19:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-22 19:28 [gentoo-commits] gentoo-x86 commit in sys-cluster/openmpi: ChangeLog openmpi-1.5.3.ebuild Justin Bronder (jsbronder)
  -- strict thread matches above, loose matches on Subject: below --
2011-06-24 19:45 Kacper Kowalik (xarthisius)
2011-03-28 18:14 Justin Bronder (jsbronder)
2011-03-22  1:21 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