From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 21C6B1381F3 for ; Tue, 9 Apr 2013 00:18:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A260EE08B0; Tue, 9 Apr 2013 00:18:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D718E08B0 for ; Tue, 9 Apr 2013 00:18:31 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5419733DD93 for ; Tue, 9 Apr 2013 00:18:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E2635E4073 for ; Tue, 9 Apr 2013 00:18:28 +0000 (UTC) From: "Justin Bronder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Bronder" Message-ID: <1365466697.f2167da89f26075b2a4f4caa214aeccf96bf9858.jsbronder@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/openmpi/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/openmpi/ChangeLog sys-cluster/openmpi/openmpi-1.6.3.ebuild sys-cluster/openmpi/openmpi-1.6.4.ebuild X-VCS-Directories: sys-cluster/openmpi/ X-VCS-Committer: jsbronder X-VCS-Committer-Name: Justin Bronder X-VCS-Revision: f2167da89f26075b2a4f4caa214aeccf96bf9858 X-VCS-Branch: master Date: Tue, 9 Apr 2013 00:18:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c9475784-52d8-42b7-98e7-dcf031dd03a7 X-Archives-Hash: f2d4a7806b5bf36b93884e7b9b4e2bf8 commit: f2167da89f26075b2a4f4caa214aeccf96bf9858 Author: Justin Bronder gentoo org> AuthorDate: Tue Apr 9 00:15:52 2013 +0000 Commit: Justin Bronder gentoo org> CommitDate: Tue Apr 9 00:18:17 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f2167da8 Bump, workaround #462602 Package-Manager: portage-2.1.11.60 --- sys-cluster/openmpi/ChangeLog | 6 ++++++ .../{openmpi-1.6.3.ebuild => openmpi-1.6.4.ebuild} | 7 +++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/sys-cluster/openmpi/ChangeLog b/sys-cluster/openmpi/ChangeLog index 5596f04..6957971 100644 --- a/sys-cluster/openmpi/ChangeLog +++ b/sys-cluster/openmpi/ChangeLog @@ -2,6 +2,12 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*openmpi-1.6.4 (09 Apr 2013) + + 09 Apr 2013; Justin Bronder -openmpi-1.6.3.ebuild, + +openmpi-1.6.4.ebuild: + Bump, workaround #462602 + *openmpi-1.6.3 (10 Jan 2013) 10 Jan 2013; Justin Bronder -openmpi-1.5.3.ebuild, diff --git a/sys-cluster/openmpi/openmpi-1.6.3.ebuild b/sys-cluster/openmpi/openmpi-1.6.4.ebuild similarity index 97% rename from sys-cluster/openmpi/openmpi-1.6.3.ebuild rename to sys-cluster/openmpi/openmpi-1.6.4.ebuild index 1902e42..3625aa1 100644 --- a/sys-cluster/openmpi/openmpi-1.6.3.ebuild +++ b/sys-cluster/openmpi/openmpi-1.6.4.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmpi/openmpi-1.2.4.ebuild,v 1.2 2007/12/13 22:39:53 jsbronder Exp $ -EAPI=4 +EAPI=5 FORTRAN_NEEDED=fortran @@ -146,12 +146,15 @@ src_configure() { src_install () { emake DESTDIR="${D}" install || die "make install failed" # From USE=vt see #359917 - rm "${D}"/$(mpi_root)/usr/share/libtool &> /dev/null + rm "${ED}"/$(mpi_root)/usr/share/libtool &> /dev/null mpi_dodoc README AUTHORS NEWS VERSION || die mpi_imp_add_eselect } src_test() { # Doesn't work with the default src_test as the dry run (-n) fails. + + # Do not override malloc during build. Works around #462602 + export FAKEROOTKEY=1 emake -j1 check || die "emake check failed" }