Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/
Date: Thu, 22 Feb 2018 08:07:39
Message-Id: 1519286846.01327f5b04c79c32a0a1874dc4e93267b39348b6.ulm@gentoo
1 commit: 01327f5b04c79c32a0a1874dc4e93267b39348b6
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 22 08:06:00 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 08:07:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01327f5b
7
8 app-editors/emacs: Use env instead of a wrapper script.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 .../emacs/{emacs-25.3-r2.ebuild => emacs-25.3-r3.ebuild} | 10 +---------
13 1 file changed, 1 insertion(+), 9 deletions(-)
14
15 diff --git a/app-editors/emacs/emacs-25.3-r2.ebuild b/app-editors/emacs/emacs-25.3-r3.ebuild
16 similarity index 98%
17 rename from app-editors/emacs/emacs-25.3-r2.ebuild
18 rename to app-editors/emacs/emacs-25.3-r3.ebuild
19 index 46e2a320282..8267aedfe4d 100644
20 --- a/app-editors/emacs/emacs-25.3-r2.ebuild
21 +++ b/app-editors/emacs/emacs-25.3-r3.ebuild
22 @@ -238,15 +238,7 @@ src_configure() {
23
24 src_compile() {
25 # Disable sandbox when dumping. For the unbelievers, see bug #131505
26 - cat >src/temacs-wrapper <<-'EOF' || die
27 - #!/bin/bash
28 - export SANDBOX_ON=0
29 - unset LD_PRELOAD
30 - exec ./temacs "$@"
31 - EOF
32 - chmod +x src/temacs-wrapper || die
33 -
34 - emake RUN_TEMACS="./temacs-wrapper"
35 + emake RUN_TEMACS="env SANDBOX_ON=0 LD_PRELOAD= ./temacs"
36 }
37
38 src_install () {