diff options
author | Ulrich Müller <ulm@gentoo.org> | 2010-05-22 15:02:07 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2010-05-22 15:02:07 +0000 |
commit | eaabc9d230e237f7a98d763726f3ce15c40cc95a (patch) | |
tree | 2576f8105b0e94972c5de68f4422367d0f6cdbfe /app-emacs/emacs-daemon | |
parent | Various cleanups. (diff) | |
download | gentoo-2-eaabc9d230e237f7a98d763726f3ce15c40cc95a.tar.gz gentoo-2-eaabc9d230e237f7a98d763726f3ce15c40cc95a.tar.bz2 gentoo-2-eaabc9d230e237f7a98d763726f3ce15c40cc95a.zip |
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs/emacs-daemon')
-rw-r--r-- | app-emacs/emacs-daemon/ChangeLog | 6 | ||||
-rw-r--r-- | app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild | 41 | ||||
-rw-r--r-- | app-emacs/emacs-daemon/emacs-daemon-0.16.ebuild | 41 |
3 files changed, 5 insertions, 83 deletions
diff --git a/app-emacs/emacs-daemon/ChangeLog b/app-emacs/emacs-daemon/ChangeLog index 7e6a36e2d9c2..f8bdc0297f84 100644 --- a/app-emacs/emacs-daemon/ChangeLog +++ b/app-emacs/emacs-daemon/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/emacs-daemon # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v 1.37 2010/05/22 14:58:34 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v 1.38 2010/05/22 15:02:07 ulm Exp $ + + 22 May 2010; Ulrich Mueller <ulm@gentoo.org> -emacs-daemon-0.15.ebuild, + -emacs-daemon-0.16.ebuild: + Remove old. 22 May 2010; Pacho Ramos <pacho@gentoo.org> emacs-daemon-0.17.ebuild: stable amd64, bug 302977 diff --git a/app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild b/app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild deleted file mode 100644 index a5de749c0276..000000000000 --- a/app-emacs/emacs-daemon/emacs-daemon-0.15.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2010 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.10 2010/01/31 11:53:29 armin76 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 ppc ppc64 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 -} diff --git a/app-emacs/emacs-daemon/emacs-daemon-0.16.ebuild b/app-emacs/emacs-daemon/emacs-daemon-0.16.ebuild deleted file mode 100644 index 24b6f9356f95..000000000000 --- a/app-emacs/emacs-daemon/emacs-daemon-0.16.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# 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.16.ebuild,v 1.2 2009/10/04 22:21:35 volkmar 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 ~ppc ~ppc64 ~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 -} |