Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/
Date: Sat, 01 Jan 2022 10:51:49
Message-Id: 1641034284.8523c3faa98a21e8675d70e8fefa3f8a2c16309f.chewi@gentoo
1 commit: 8523c3faa98a21e8675d70e8fefa3f8a2c16309f
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 1 10:47:39 2022 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 1 10:51:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8523c3fa
7
8 app-editors/emacs: Keyword 27.2-r5 for ~m68k
9
10 It needs --with-dumping=unexec to work around https://debbugs.gnu.org/44531.
11
12 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
13
14 app-editors/emacs/emacs-27.2-r5.ebuild | 7 +++++--
15 1 file changed, 5 insertions(+), 2 deletions(-)
16
17 diff --git a/app-editors/emacs/emacs-27.2-r5.ebuild b/app-editors/emacs/emacs-27.2-r5.ebuild
18 index e2efcba31d59..d6c4a74eb424 100644
19 --- a/app-editors/emacs/emacs-27.2-r5.ebuild
20 +++ b/app-editors/emacs/emacs-27.2-r5.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 +# Copyright 1999-2022 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=8
27 @@ -36,7 +36,7 @@ else
28 PATCHES=("${WORKDIR}/patch")
29 SLOT="${PV%%.*}"
30 [[ ${PV} == *.*.* ]] && SLOT+="-vcs"
31 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
32 + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
33 fi
34
35 DESCRIPTION="The extensible, customizable, self-documenting real-time display editor"
36 @@ -259,6 +259,9 @@ src_configure() {
37 popd >/dev/null || die
38 # Don't try to execute the binary for dumping during the build
39 myconf+=" --with-dumping=none"
40 + elif use m68k; then
41 + # Workaround for https://debbugs.gnu.org/44531
42 + myconf+=" --with-dumping=unexec"
43 else
44 myconf+=" --with-dumping=pdumper"
45 fi