Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
ulm 09/07/17 15:09:27
Modified: ChangeLog
Added: emacs-daemon-0.15.ebuild
Log:
Version bump.
(Portage version: 2.2_rc33/cvs/Linux i686)
Revision Changes Path
1.17 app-emacs/emacs-daemon/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-daemon/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-daemon/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-daemon/ChangeLog?r1=1.16&r2=1.17
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog 17 Jul 2009 08:35:04 -0000 1.16
+++ ChangeLog 17 Jul 2009 15:09:27 -0000 1.17
@@ -1,9 +1,14 @@
# ChangeLog for app-emacs/emacs-daemon
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v 1.16 2009/07/17 08:35:04 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v 1.17 2009/07/17 15:09:27 ulm Exp $
- 17 Jul 2009; Ulrich Mueller <ulm@g.o> emacs-daemon-0.14.ebuild:
- Remove backwards compatibility code.
+*emacs-daemon-0.15 (17 Jul 2009)
+
+ 17 Jul 2009; Ulrich Mueller <ulm@g.o> emacs-daemon-0.14.ebuild,
+ +emacs-daemon-0.15.ebuild:
+ Remove compatibility code that was needed for Emacs 23.0.90 and earlier.
+ Version bump; remove OpenRC dependency, as the init script should now be
+ compatible with baselayout-1.
03 Jun 2009; Christian Faulhammer <fauli@g.o>
-emacs-daemon-0.13.ebuild:
1.1 app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild?rev=1.1&view=markup
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
Index: emacs-daemon-0.15.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $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 $
inherit elisp
DESCRIPTION="Gentoo support for Emacs running as a server in the background"
HOMEPAGE="http://www.gentoo.org/proj/en/lisp/emacs/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~s390 ~sh ~sparc ~x86"
IUSE=""
DEPEND=">=virtual/emacs-23"
RDEPEND="${DEPEND}"
SITEFILE="10${PN}-gentoo.el"
pkg_setup() {
local has_daemon=$(${EMACS} ${EMACSFLAGS} \
--eval "(princ (fboundp 'daemonp))")
if [ "${has_daemon}" != t ]; then
ewarn "Your current Emacs version does not support running as a daemon"
ewarn "which is required for ${CATEGORY}/${PN}."
ewarn "Use \"eselect emacs\" to select an Emacs version >= 23."
fi
}
src_compile() { :; }
src_install() {
newinitd emacs.rc emacs || die
newconfd emacs.conf emacs || die
exeinto /usr/libexec/emacs
doexe emacs-wrapper.sh || die
elisp-site-file-install "${SITEFILE}" || die
keepdir /var/run/emacs || die
dodoc README ChangeLog || die
}
|
|