Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/emacs:master commit in: app-emacs/emacs-daemon/
Date: Sun, 15 Oct 2017 11:28:47
Message-Id: 1508066614.741958eae24083c4109038a32e37fbef39161dd3.ulm@gentoo
1 commit: 741958eae24083c4109038a32e37fbef39161dd3
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 15 11:23:34 2017 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 15 11:23:34 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=741958ea
7
8 app-emacs/emacs-daemon: Update EGIT_REPO_URI, sync from Gentoo repo.
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 app-emacs/emacs-daemon/emacs-daemon-9999.ebuild | 24 ++++++++++++------------
13 1 file changed, 12 insertions(+), 12 deletions(-)
14
15 diff --git a/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild b/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild
16 index b66542a..1f1045c 100644
17 --- a/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild
18 +++ b/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild
19 @@ -1,16 +1,16 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2017 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=5
25 +EAPI=6
26
27 -EGIT_REPO_URI="git://anongit.gentoo.org/proj/emacs-tools.git"
28 +EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/emacs-tools.git"
29 EGIT_BRANCH="${PN}"
30 EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}"
31
32 inherit elisp git-r3
33
34 DESCRIPTION="Gentoo support for Emacs running as a server in the background"
35 -HOMEPAGE="http://wiki.gentoo.org/wiki/Project:Emacs"
36 +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs"
37
38 LICENSE="GPL-2+"
39 SLOT="0"
40 @@ -28,18 +28,18 @@ pkg_setup() {
41
42 if [[ ${has_daemon} != t ]]; then
43 while read line; do ewarn "${line}"; done <<-EOF
44 - Your current Emacs version does not support running as a daemon
45 - which is required for ${CATEGORY}/${PN}.
46 + Your current Emacs version does not support running as a daemon which
47 + is required for ${CATEGORY}/${PN}.
48 Use "eselect emacs" to select an Emacs version >= 23.
49 EOF
50 elif [[ ${has_gtk} == t ]]; then
51 while read line; do ewarn "${line}"; done <<-EOF
52 - Your current Emacs is compiled with GTK+. There is a long-standing
53 - bug in GTK+ that prevents Emacs from recovering from X disconnects:
54 - <http://bugzilla.gnome.org/show_bug.cgi?id=85715>
55 - If you run Emacs as a daemon, then it is strongly recommended that
56 - you compile it with the Motif or the Lucid toolkit instead, i.e.
57 - with USE="motif -athena -gtk" or USE="athena -gtk -motif".
58 + Your current Emacs is compiled with GTK+. There is a long-standing bug
59 + in GTK+ that prevents Emacs from recovering from X disconnects:
60 + <https://bugzilla.gnome.org/show_bug.cgi?id=85715>
61 + If you run Emacs as a daemon, then it is strongly recommended that you
62 + compile it with the Lucid or the Motif toolkit instead, i.e. with
63 + USE="athena Xaw3d -gtk -motif" or USE="motif -gtk -athena -Xaw3d".
64 EOF
65 fi
66 }