From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1004997-garchives=archives.gentoo.org@lists.gentoo.org>
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 E5AD01382C5
	for <garchives@archives.gentoo.org>; Thu, 22 Feb 2018 08:07:39 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id EBE02E0825;
	Thu, 22 Feb 2018 08:07:37 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(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 CB24DE082F
	for <gentoo-commits@lists.gentoo.org>; Thu, 22 Feb 2018 08:07:37 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(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 A2AFD335C43
	for <gentoo-commits@lists.gentoo.org>; Thu, 22 Feb 2018 08:07:36 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id F1E74211
	for <gentoo-commits@lists.gentoo.org>; Thu, 22 Feb 2018 08:07:34 +0000 (UTC)
From: "Ulrich Müller" <ulm@gentoo.org>
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" <ulm@gentoo.org>
Message-ID: <1519286846.01327f5b04c79c32a0a1874dc4e93267b39348b6.ulm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-editors/emacs/emacs-25.3-r2.ebuild app-editors/emacs/emacs-25.3-r3.ebuild
X-VCS-Directories: app-editors/emacs/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: 01327f5b04c79c32a0a1874dc4e93267b39348b6
X-VCS-Branch: master
Date: Thu, 22 Feb 2018 08:07:34 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: aeaa61f5-649d-415a-8e99-4731e59acefc
X-Archives-Hash: de04168e6e85f0a1f233e390dd905970

commit:     01327f5b04c79c32a0a1874dc4e93267b39348b6
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 22 08:06:00 2018 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 08:07:26 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01327f5b

app-editors/emacs: Use env instead of a wrapper script.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../emacs/{emacs-25.3-r2.ebuild => emacs-25.3-r3.ebuild}       | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/app-editors/emacs/emacs-25.3-r2.ebuild b/app-editors/emacs/emacs-25.3-r3.ebuild
similarity index 98%
rename from app-editors/emacs/emacs-25.3-r2.ebuild
rename to app-editors/emacs/emacs-25.3-r3.ebuild
index 46e2a320282..8267aedfe4d 100644
--- a/app-editors/emacs/emacs-25.3-r2.ebuild
+++ b/app-editors/emacs/emacs-25.3-r3.ebuild
@@ -238,15 +238,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 () {