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 38D321396DA for ; Sun, 15 Oct 2017 11:28:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59B382BC045; Sun, 15 Oct 2017 11:28:46 +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 201772BC042 for ; Sun, 15 Oct 2017 11:28:46 +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 171F933BEA7 for ; Sun, 15 Oct 2017 11:28:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DE49320 for ; Sun, 15 Oct 2017 11:28:42 +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: <1508066614.741958eae24083c4109038a32e37fbef39161dd3.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: app-emacs/emacs-daemon/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: app-emacs/emacs-daemon/emacs-daemon-9999.ebuild X-VCS-Directories: app-emacs/emacs-daemon/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 741958eae24083c4109038a32e37fbef39161dd3 X-VCS-Branch: master Date: Sun, 15 Oct 2017 11:28:42 +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: 47a02574-4db8-467f-aa58-fef0f7472603 X-Archives-Hash: 89dfe73d1f5fd119e77cac6c675cf90b commit: 741958eae24083c4109038a32e37fbef39161dd3 Author: Ulrich Müller gentoo org> AuthorDate: Sun Oct 15 11:23:34 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Oct 15 11:23:34 2017 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=741958ea app-emacs/emacs-daemon: Update EGIT_REPO_URI, sync from Gentoo repo. Package-Manager: Portage-2.3.11, Repoman-2.3.3 app-emacs/emacs-daemon/emacs-daemon-9999.ebuild | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild b/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild index b66542a..1f1045c 100644 --- a/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild +++ b/app-emacs/emacs-daemon/emacs-daemon-9999.ebuild @@ -1,16 +1,16 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -EGIT_REPO_URI="git://anongit.gentoo.org/proj/emacs-tools.git" +EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/emacs-tools.git" EGIT_BRANCH="${PN}" EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}" inherit elisp git-r3 DESCRIPTION="Gentoo support for Emacs running as a server in the background" -HOMEPAGE="http://wiki.gentoo.org/wiki/Project:Emacs" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" LICENSE="GPL-2+" SLOT="0" @@ -28,18 +28,18 @@ pkg_setup() { if [[ ${has_daemon} != t ]]; then while read line; do ewarn "${line}"; done <<-EOF - Your current Emacs version does not support running as a daemon - which is required for ${CATEGORY}/${PN}. + Your current Emacs version does not support running as a daemon which + is required for ${CATEGORY}/${PN}. Use "eselect emacs" to select an Emacs version >= 23. EOF elif [[ ${has_gtk} == t ]]; then while read line; do ewarn "${line}"; done <<-EOF - Your current Emacs is compiled with GTK+. There is a long-standing - bug in GTK+ that prevents Emacs from recovering from X disconnects: - - If you run Emacs as a daemon, then it is strongly recommended that - you compile it with the Motif or the Lucid toolkit instead, i.e. - with USE="motif -athena -gtk" or USE="athena -gtk -motif". + Your current Emacs is compiled with GTK+. There is a long-standing bug + in GTK+ that prevents Emacs from recovering from X disconnects: + + If you run Emacs as a daemon, then it is strongly recommended that you + compile it with the Lucid or the Motif toolkit instead, i.e. with + USE="athena Xaw3d -gtk -motif" or USE="motif -gtk -athena -Xaw3d". EOF fi }