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 7A5651381F3 for ; Tue, 2 Jul 2013 22:59:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2F95E0953; Tue, 2 Jul 2013 22:59:27 +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 78F20E0953 for ; Tue, 2 Jul 2013 22:59:27 +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 8CC1F33E82B for ; Tue, 2 Jul 2013 22:59:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 30565E468F for ; Tue, 2 Jul 2013 22:59:25 +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: <1372805958.7763eb10db6ac6942ccf59f741bc60ebb27581c6.jsbronder@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/openmpi/files/, sys-cluster/openmpi/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/openmpi/ChangeLog sys-cluster/openmpi/files/hooks-disable-malloc-override-inside-of-Gentoo-sandb.patch X-VCS-Directories: sys-cluster/openmpi/files/ sys-cluster/openmpi/ X-VCS-Committer: jsbronder X-VCS-Committer-Name: Justin Bronder X-VCS-Revision: 7763eb10db6ac6942ccf59f741bc60ebb27581c6 X-VCS-Branch: master Date: Tue, 2 Jul 2013 22:59:25 +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: 7295bf03-53a7-4b3f-8744-d6b67fa71a44 X-Archives-Hash: c6be6bf40e6e661d1aebf06d27408316 commit: 7763eb10db6ac6942ccf59f741bc60ebb27581c6 Author: Justin Bronder gentoo org> AuthorDate: Tue Jul 2 22:59:12 2013 +0000 Commit: Justin Bronder gentoo org> CommitDate: Tue Jul 2 22:59:18 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7763eb10 Update patch per sandbox team, link to upstream tickets. Package-Manager: portage-2.1.12.2 --- sys-cluster/openmpi/ChangeLog | 4 ++++ .../hooks-disable-malloc-override-inside-of-Gentoo-sandb.patch | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/sys-cluster/openmpi/ChangeLog b/sys-cluster/openmpi/ChangeLog index 9b844ff..54e1caa 100644 --- a/sys-cluster/openmpi/ChangeLog +++ b/sys-cluster/openmpi/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 02 Jul 2013; Justin Bronder + files/hooks-disable-malloc-override-inside-of-Gentoo-sandb.patch: + Update patch per sandbox team + 02 Jul 2013; Justin Bronder -openmpi-1.6.4.ebuild: Remove old diff --git a/sys-cluster/openmpi/files/hooks-disable-malloc-override-inside-of-Gentoo-sandb.patch b/sys-cluster/openmpi/files/hooks-disable-malloc-override-inside-of-Gentoo-sandb.patch index 5683c81..197430a 100644 --- a/sys-cluster/openmpi/files/hooks-disable-malloc-override-inside-of-Gentoo-sandb.patch +++ b/sys-cluster/openmpi/files/hooks-disable-malloc-override-inside-of-Gentoo-sandb.patch @@ -1,4 +1,4 @@ -From 094de74dc5e518a931c495692143ea3282553674 Mon Sep 17 00:00:00 2001 +From 3bd5897c7ca8ab61fb024957aeae891e204b3e3f Mon Sep 17 00:00:00 2001 From: Justin Bronder Date: Mon, 1 Jul 2013 20:37:17 -0400 Subject: [PATCH] hooks: disable malloc override inside of Gentoo sandbox @@ -15,7 +15,7 @@ See https://bugs.gentoo.org/show_bug.cgi?id=462602 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/opal/mca/memory/linux/hooks.c b/opal/mca/memory/linux/hooks.c -index 6a1646f..ce91e76 100644 +index 6a1646f..5ded08c 100644 --- a/opal/mca/memory/linux/hooks.c +++ b/opal/mca/memory/linux/hooks.c @@ -747,9 +747,16 @@ static void opal_memory_linux_malloc_init_hook(void) @@ -27,13 +27,13 @@ index 6a1646f..ce91e76 100644 + + This is also an issue when using Gentoo's version of 'fakeroot', + sandbox v2.5. Sandbox environments can also be detected fairly -+ easily by looking for SANDBOX_PID. ++ easily by looking for SANDBOX_ON. + */ + if (getenv("FAKEROOTKEY") != NULL || - getenv("FAKED_MODE") != NULL) { + getenv("FAKED_MODE") != NULL || -+ getenv("SANDBOX_PID") != NULL ) { ++ getenv("SANDBOX_ON") != NULL ) { return; }