From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9BAF11382C5 for ; Tue, 20 Feb 2018 07:48:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E104E0B14; Tue, 20 Feb 2018 07:48:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68BFBE0B14 for ; Tue, 20 Feb 2018 07:48:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB503335C2A for ; Tue, 20 Feb 2018 07:48:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8AD71F1 for ; Tue, 20 Feb 2018 07:48:05 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1519112818.e5a9c9adc17b23caef553261234630cbad4fccff.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs-vcs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild X-VCS-Directories: app-editors/emacs-vcs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: e5a9c9adc17b23caef553261234630cbad4fccff X-VCS-Branch: master Date: Tue, 20 Feb 2018 07:48:05 +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: f6e748e4-0ae0-4603-a448-425cc6e13f95 X-Archives-Hash: 76b44c6d74ce42db8fa644b232213192 commit: e5a9c9adc17b23caef553261234630cbad4fccff Author: Ulrich Müller gentoo org> AuthorDate: Tue Feb 20 07:46:16 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Feb 20 07:46:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5a9c9ad app-editors/emacs-vcs: Disable the sandbox only when dumping. Note that unsetting LD_PRELOAD will have an effect only for >=sys-apps/sandbox-2.13. Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild | 12 ++++++++++-- app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild | 12 ++++++++++-- app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild | 12 ++++++++++-- app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild | 12 ++++++++++-- 4 files changed, 40 insertions(+), 8 deletions(-) diff --git a/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild b/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild index 2153ada2274..b332683366c 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild @@ -273,8 +273,16 @@ src_configure() { } src_compile() { - export SANDBOX_ON=0 # for the unbelievers, see Bug #131505 - emake + # Disable sandbox when dumping. For the unbelievers, see bug #131505 + cat >src/temacs-wrapper <<-'EOF' || die + #!/bin/bash + export SANDBOX_ON=0 + unset LD_PRELOAD + exec ./temacs "$@" + EOF + chmod +x src/temacs-wrapper || die + + emake RUN_TEMACS="./temacs-wrapper" } src_install () { diff --git a/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild b/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild index 2153ada2274..b332683366c 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild @@ -273,8 +273,16 @@ src_configure() { } src_compile() { - export SANDBOX_ON=0 # for the unbelievers, see Bug #131505 - emake + # Disable sandbox when dumping. For the unbelievers, see bug #131505 + cat >src/temacs-wrapper <<-'EOF' || die + #!/bin/bash + export SANDBOX_ON=0 + unset LD_PRELOAD + exec ./temacs "$@" + EOF + chmod +x src/temacs-wrapper || die + + emake RUN_TEMACS="./temacs-wrapper" } src_install () { diff --git a/app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild b/app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild index 2153ada2274..b332683366c 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild @@ -273,8 +273,16 @@ src_configure() { } src_compile() { - export SANDBOX_ON=0 # for the unbelievers, see Bug #131505 - emake + # Disable sandbox when dumping. For the unbelievers, see bug #131505 + cat >src/temacs-wrapper <<-'EOF' || die + #!/bin/bash + export SANDBOX_ON=0 + unset LD_PRELOAD + exec ./temacs "$@" + EOF + chmod +x src/temacs-wrapper || die + + emake RUN_TEMACS="./temacs-wrapper" } src_install () { diff --git a/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild b/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild index e2c11b5e4c5..9cf901fe95f 100644 --- a/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild @@ -273,8 +273,16 @@ src_configure() { } src_compile() { - export SANDBOX_ON=0 # for the unbelievers, see Bug #131505 - emake + # Disable sandbox when dumping. For the unbelievers, see bug #131505 + cat >src/temacs-wrapper <<-'EOF' || die + #!/bin/bash + export SANDBOX_ON=0 + unset LD_PRELOAD + exec ./temacs "$@" + EOF + chmod +x src/temacs-wrapper || die + + emake RUN_TEMACS="./temacs-wrapper" } src_install () {