Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/emacs-daemon: ChangeLog emacs-daemon-0.15.ebuild
Date: Fri, 17 Jul 2009 15:09:28
Message-Id: E1MRp3v-0005MR-89@stork.gentoo.org
1 ulm 09/07/17 15:09:27
2
3 Modified: ChangeLog
4 Added: emacs-daemon-0.15.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc33/cvs/Linux i686)
8
9 Revision Changes Path
10 1.17 app-emacs/emacs-daemon/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-daemon/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-daemon/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-daemon/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 17 Jul 2009 08:35:04 -0000 1.16
23 +++ ChangeLog 17 Jul 2009 15:09:27 -0000 1.17
24 @@ -1,9 +1,14 @@
25 # ChangeLog for app-emacs/emacs-daemon
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v 1.16 2009/07/17 08:35:04 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v 1.17 2009/07/17 15:09:27 ulm Exp $
29
30 - 17 Jul 2009; Ulrich Mueller <ulm@g.o> emacs-daemon-0.14.ebuild:
31 - Remove backwards compatibility code.
32 +*emacs-daemon-0.15 (17 Jul 2009)
33 +
34 + 17 Jul 2009; Ulrich Mueller <ulm@g.o> emacs-daemon-0.14.ebuild,
35 + +emacs-daemon-0.15.ebuild:
36 + Remove compatibility code that was needed for Emacs 23.0.90 and earlier.
37 + Version bump; remove OpenRC dependency, as the init script should now be
38 + compatible with baselayout-1.
39
40 03 Jun 2009; Christian Faulhammer <fauli@g.o>
41 -emacs-daemon-0.13.ebuild:
42
43
44
45 1.1 app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild?rev=1.1&content-type=text/plain
49
50 Index: emacs-daemon-0.15.ebuild
51 ===================================================================
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild,v 1.1 2009/07/17 15:09:27 ulm Exp $
55
56 inherit elisp
57
58 DESCRIPTION="Gentoo support for Emacs running as a server in the background"
59 HOMEPAGE="http://www.gentoo.org/proj/en/lisp/emacs/"
60 SRC_URI="mirror://gentoo/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~s390 ~sh ~sparc ~x86"
65 IUSE=""
66
67 DEPEND=">=virtual/emacs-23"
68 RDEPEND="${DEPEND}"
69
70 SITEFILE="10${PN}-gentoo.el"
71
72 pkg_setup() {
73 local has_daemon=$(${EMACS} ${EMACSFLAGS} \
74 --eval "(princ (fboundp 'daemonp))")
75 if [ "${has_daemon}" != t ]; then
76 ewarn "Your current Emacs version does not support running as a daemon"
77 ewarn "which is required for ${CATEGORY}/${PN}."
78 ewarn "Use \"eselect emacs\" to select an Emacs version >= 23."
79 fi
80 }
81
82 src_compile() { :; }
83
84 src_install() {
85 newinitd emacs.rc emacs || die
86 newconfd emacs.conf emacs || die
87 exeinto /usr/libexec/emacs
88 doexe emacs-wrapper.sh || die
89 elisp-site-file-install "${SITEFILE}" || die
90 keepdir /var/run/emacs || die
91 dodoc README ChangeLog || die
92 }