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 584171382C5 for ; Thu, 22 Feb 2018 08:07:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3EF4E082F; Thu, 22 Feb 2018 08:07:37 +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 C481AE0825 for ; Thu, 22 Feb 2018 08:07:37 +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 56046335C3E for ; Thu, 22 Feb 2018 08:07:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1282922D for ; Thu, 22 Feb 2018 08:07:35 +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: <1519286847.e20442516052acb398831a7cc83b0d1295c670d2.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: e20442516052acb398831a7cc83b0d1295c670d2 X-VCS-Branch: master Date: Thu, 22 Feb 2018 08:07:35 +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: 29296673-43c2-4862-9925-7b0151b161b4 X-Archives-Hash: 9151e817a52412b96d612b56014375ea commit: e20442516052acb398831a7cc83b0d1295c670d2 Author: Ulrich Müller gentoo org> AuthorDate: Thu Feb 22 08:07:10 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Feb 22 08:07:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2044251 app-editors/emacs-vcs: Use env instead of a wrapper script. Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild | 10 +--------- app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild | 10 +--------- app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild | 10 +--------- app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild | 10 +--------- 4 files changed, 4 insertions(+), 36 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 b332683366c..b77e6ec42e3 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild @@ -274,15 +274,7 @@ src_configure() { src_compile() { # 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" + emake RUN_TEMACS="env SANDBOX_ON=0 LD_PRELOAD= ./temacs" } 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 b332683366c..b77e6ec42e3 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild @@ -274,15 +274,7 @@ src_configure() { src_compile() { # 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" + emake RUN_TEMACS="env SANDBOX_ON=0 LD_PRELOAD= ./temacs" } 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 b332683366c..b77e6ec42e3 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 @@ -274,15 +274,7 @@ src_configure() { src_compile() { # 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" + emake RUN_TEMACS="env SANDBOX_ON=0 LD_PRELOAD= ./temacs" } 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 9cf901fe95f..75f4324cd89 100644 --- a/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild @@ -274,15 +274,7 @@ src_configure() { src_compile() { # 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" + emake RUN_TEMACS="env SANDBOX_ON=0 LD_PRELOAD= ./temacs" } src_install () {