* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2007-12-04 13:11 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2007-12-04 13:11 UTC (permalink / raw
To: gentoo-commits
ulm 07/12/04 13:11:15
Modified: elisp.eclass
Log:
Move handling of SIMPLE_ELISP into elisp_pkg_setup, otherwise it fails
with portage-2.1.4_rc7.
Die in elisp_src_unpack if mv fails.
Revision Changes Path
1.25 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.24&r2=1.25
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- elisp.eclass 14 Oct 2007 22:12:30 -0000 1.24
+++ elisp.eclass 4 Dec 2007 13:11:15 -0000 1.25
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.24 2007/10/14 22:12:30 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.25 2007/12/04 13:11:15 ulm Exp $
#
# Copyright 2007 Christian Faulhammer <opfer@gentoo.org>
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
@@ -45,10 +45,6 @@
RDEPEND=">=virtual/emacs-${VERSION}"
IUSE=""
-if [ "${SIMPLE_ELISP}" = 't' ]; then
- S="${WORKDIR}"
-fi
-
elisp_pkg_setup() {
local emacs_version="$(elisp-emacs-version)"
if ! version_is_at_least "${VERSION}" "${emacs_version}"; then
@@ -56,12 +52,17 @@
eerror "Use \"eselect emacs\" to select the active version."
die "Emacs version ${emacs_version} is too low."
fi
+
+ if [ "${SIMPLE_ELISP}" = 't' ]; then
+ S="${WORKDIR}"
+ fi
}
elisp_src_unpack() {
unpack ${A}
if [ "${SIMPLE_ELISP}" = 't' ]; then
- cd "${S}" && mv ${P}.el ${PN}.el
+ cd "${S}" && mv ${P}.el ${PN}.el \
+ || die "mv ${P}.el ${PN}.el failed"
fi
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2007-12-07 0:16 Christian Faulhammer (opfer)
0 siblings, 0 replies; 18+ messages in thread
From: Christian Faulhammer (opfer) @ 2007-12-07 0:16 UTC (permalink / raw
To: gentoo-commits
opfer 07/12/07 00:16:25
Modified: elisp.eclass
Log:
Correct a cd command, at least as a work around...there have been
problems, see http://forums.gentoo.org/viewtopic-t-627332-highlight-.html
Revision Changes Path
1.26 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.25&r2=1.26
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- elisp.eclass 4 Dec 2007 13:11:15 -0000 1.25
+++ elisp.eclass 7 Dec 2007 00:16:24 -0000 1.26
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.25 2007/12/04 13:11:15 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.26 2007/12/07 00:16:24 opfer Exp $
#
# Copyright 2007 Christian Faulhammer <opfer@gentoo.org>
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
@@ -61,7 +61,7 @@
elisp_src_unpack() {
unpack ${A}
if [ "${SIMPLE_ELISP}" = 't' ]; then
- cd "${S}" && mv ${P}.el ${PN}.el \
+ cd "${WORKDIR}" && mv ${P}.el ${PN}.el \
|| die "mv ${P}.el ${PN}.el failed"
fi
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2007-12-07 13:52 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2007-12-07 13:52 UTC (permalink / raw
To: gentoo-commits
ulm 07/12/07 13:52:20
Modified: elisp.eclass
Log:
Undo the change of 2007-12-04. Remove cd command in elisp_src_unpack.
Revision Changes Path
1.27 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.26&r2=1.27
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- elisp.eclass 7 Dec 2007 00:16:24 -0000 1.26
+++ elisp.eclass 7 Dec 2007 13:52:20 -0000 1.27
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.26 2007/12/07 00:16:24 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.27 2007/12/07 13:52:20 ulm Exp $
#
# Copyright 2007 Christian Faulhammer <opfer@gentoo.org>
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
@@ -45,6 +45,10 @@
RDEPEND=">=virtual/emacs-${VERSION}"
IUSE=""
+if [ "${SIMPLE_ELISP}" = 't' ]; then
+ S="${WORKDIR}"
+fi
+
elisp_pkg_setup() {
local emacs_version="$(elisp-emacs-version)"
if ! version_is_at_least "${VERSION}" "${emacs_version}"; then
@@ -52,17 +56,12 @@
eerror "Use \"eselect emacs\" to select the active version."
die "Emacs version ${emacs_version} is too low."
fi
-
- if [ "${SIMPLE_ELISP}" = 't' ]; then
- S="${WORKDIR}"
- fi
}
elisp_src_unpack() {
unpack ${A}
if [ "${SIMPLE_ELISP}" = 't' ]; then
- cd "${WORKDIR}" && mv ${P}.el ${PN}.el \
- || die "mv ${P}.el ${PN}.el failed"
+ mv ${P}.el ${PN}.el || die "mv ${P}.el ${PN}.el failed"
fi
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2008-03-03 15:21 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2008-03-03 15:21 UTC (permalink / raw
To: gentoo-commits
ulm 08/03/03 15:21:48
Modified: elisp.eclass
Log:
Call EXPORT_FUNCTIONS only once.
Revision Changes Path
1.29 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.28&r2=1.29
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- elisp.eclass 28 Dec 2007 17:48:34 -0000 1.28
+++ elisp.eclass 3 Mar 2008 15:21:47 -0000 1.29
@@ -1,11 +1,11 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.28 2007/12/28 17:48:34 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.29 2008/03/03 15:21:47 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
-# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
-# Copyright 2007 Christian Faulhammer <opfer@gentoo.org>
-# Copyright 2007 Ulrich Mueller <ulm@gentoo.org>
+# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
+# Copyright 2007 Christian Faulhammer <opfer@gentoo.org>
+# Copyright 2007-2008 Ulrich Müller <ulm@gentoo.org>
#
# @ECLASS: elisp.eclass
# @MAINTAINER:
@@ -86,5 +86,6 @@
elisp-site-regen
}
-EXPORT_FUNCTIONS src_unpack src_compile src_install
-EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_postrm
+EXPORT_FUNCTIONS \
+ src_unpack src_compile src_install \
+ pkg_setup pkg_postinst pkg_postrm
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2008-06-03 15:48 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2008-06-03 15:48 UTC (permalink / raw
To: gentoo-commits
ulm 08/06/03 15:48:44
Modified: elisp.eclass
Log:
Sync elisp.eclass from Emacs overlay (revision 1083):
Remove SIMPLE_ELISP variable.
In src_unpack, always move ${P}.el to ${PN}.el if the former exists.
Revision Changes Path
1.30 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.29&r2=1.30
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- elisp.eclass 3 Mar 2008 15:21:47 -0000 1.29
+++ elisp.eclass 3 Jun 2008 15:48:44 -0000 1.30
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.29 2008/03/03 15:21:47 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.30 2008/06/03 15:48:44 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
@@ -19,13 +19,10 @@
# Emacs support for other than pure elisp packages is handled by
# elisp-common.eclass where you won't have a dependency on Emacs itself.
# All elisp-* functions are documented there.
-
-# @ECLASS-VARIABLE: SIMPLE_ELISP
-# @DESCRIPTION:
-# Setting SIMPLE_ELISP=t in an ebuild means, that the package's source
-# is a single (in whatever way) compressed elisp file with the file name
-# ${PN}-${PV}. This eclass will then redefine ${S}, and move
-# ${PN}-${PV}.el to ${PN}.el in src_unpack().
+#
+# If the package's source is a single (in whatever way) compressed elisp
+# file with the file name ${P}.el, then this eclass will move ${P}.el to
+# ${PN}.el in src_unpack().
# @ECLASS-VARIABLE: DOCS
# @DESCRIPTION:
@@ -45,10 +42,6 @@
RDEPEND=">=virtual/emacs-${VERSION}"
IUSE=""
-if [ "${SIMPLE_ELISP}" = 't' ]; then
- S="${WORKDIR}"
-fi
-
elisp_pkg_setup() {
local emacs_version="$(elisp-emacs-version)"
if ! version_is_at_least "${VERSION}" "${emacs_version}"; then
@@ -60,7 +53,7 @@
elisp_src_unpack() {
unpack ${A}
- if [ "${SIMPLE_ELISP}" = 't' ]; then
+ if [ -f ${P}.el ]; then
mv ${P}.el ${PN}.el || die "mv ${P}.el ${PN}.el failed"
fi
}
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2008-06-23 13:40 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2008-06-23 13:40 UTC (permalink / raw
To: gentoo-commits
ulm 08/06/23 13:40:23
Modified: elisp.eclass
Log:
Add einfo message to pkg_setup.
Revision Changes Path
1.31 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.30&r2=1.31
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- elisp.eclass 3 Jun 2008 15:48:44 -0000 1.30
+++ elisp.eclass 23 Jun 2008 13:40:23 -0000 1.31
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.30 2008/06/03 15:48:44 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.31 2008/06/23 13:40:23 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
@@ -49,6 +49,7 @@
eerror "Use \"eselect emacs\" to select the active version."
die "Emacs version ${emacs_version} is too low."
fi
+ einfo "Emacs version: ${emacs_version}"
}
elisp_src_unpack() {
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2008-06-23 21:38 Christian Faulhammer (opfer)
0 siblings, 0 replies; 18+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-06-23 21:38 UTC (permalink / raw
To: gentoo-commits
opfer 08/06/23 21:38:42
Modified: elisp.eclass
Log:
Update copyright information
Be more verbose on output information
Revision Changes Path
1.32 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.31&r2=1.32
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- elisp.eclass 23 Jun 2008 13:40:23 -0000 1.31
+++ elisp.eclass 23 Jun 2008 21:38:42 -0000 1.32
@@ -1,10 +1,10 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.31 2008/06/23 13:40:23 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.32 2008/06/23 21:38:42 opfer Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
-# Copyright 2007 Christian Faulhammer <opfer@gentoo.org>
+# Copyright 2007-2008 Christian Faulhammer <opfer@gentoo.org>
# Copyright 2007-2008 Ulrich Müller <ulm@gentoo.org>
#
# @ECLASS: elisp.eclass
@@ -49,7 +49,7 @@
eerror "Use \"eselect emacs\" to select the active version."
die "Emacs version ${emacs_version} is too low."
fi
- einfo "Emacs version: ${emacs_version}"
+ einfo "Currently selected GNU Emacs version: ${emacs_version}"
}
elisp_src_unpack() {
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2008-08-28 9:55 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2008-08-28 9:55 UTC (permalink / raw
To: gentoo-commits
ulm 08/08/28 09:55:01
Modified: elisp.eclass
Log:
Sync elisp.eclass from Emacs overlay (revision 1138):
Remove global VERSION variable to reduce namespace pollution.
Handle the case of empty ${A} in src_unpack.
Revision Changes Path
1.33 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.32&r2=1.33
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- elisp.eclass 23 Jun 2008 21:38:42 -0000 1.32
+++ elisp.eclass 28 Aug 2008 09:55:01 -0000 1.33
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.32 2008/06/23 21:38:42 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.33 2008/08/28 09:55:01 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
@@ -37,23 +37,23 @@
inherit elisp-common versionator
-VERSION=${NEED_EMACS:-21}
-DEPEND=">=virtual/emacs-${VERSION}"
-RDEPEND=">=virtual/emacs-${VERSION}"
+DEPEND=">=virtual/emacs-${NEED_EMACS:-21}"
+RDEPEND=">=virtual/emacs-${NEED_EMACS:-21}"
IUSE=""
elisp_pkg_setup() {
- local emacs_version="$(elisp-emacs-version)"
- if ! version_is_at_least "${VERSION}" "${emacs_version}"; then
- eerror "This package needs at least Emacs ${VERSION}."
+ local need_emacs=${NEED_EMACS:-21}
+ local have_emacs=$(elisp-emacs-version)
+ if ! version_is_at_least "${need_emacs}" "${have_emacs}"; then
+ eerror "This package needs at least Emacs ${need_emacs}."
eerror "Use \"eselect emacs\" to select the active version."
- die "Emacs version ${emacs_version} is too low."
+ die "Emacs version ${have_emacs} is too low."
fi
- einfo "Currently selected GNU Emacs version: ${emacs_version}"
+ einfo "Currently selected GNU Emacs version: ${have_emacs}"
}
elisp_src_unpack() {
- unpack ${A}
+ [ -n "${A}" ] && unpack ${A}
if [ -f ${P}.el ]; then
mv ${P}.el ${PN}.el || die "mv ${P}.el ${PN}.el failed"
fi
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2008-11-16 10:23 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2008-11-16 10:23 UTC (permalink / raw
To: gentoo-commits
ulm 08/11/16 10:23:42
Modified: elisp.eclass
Log:
Revert removal of einfo message about Emacs version, since this is really useful in bug reports.
Revision Changes Path
1.36 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.35&r2=1.36
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- elisp.eclass 16 Oct 2008 09:28:58 -0000 1.35
+++ elisp.eclass 16 Nov 2008 10:23:42 -0000 1.36
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.35 2008/10/16 09:28:58 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.36 2008/11/16 10:23:42 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
@@ -56,6 +56,7 @@
eerror "Use \"eselect emacs\" to select the active version."
die "Emacs version ${have_emacs} is too low."
fi
+ einfo "Emacs version: ${have_emacs}"
}
elisp_src_unpack() {
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2009-02-07 11:32 Christian Faulhammer (fauli)
0 siblings, 0 replies; 18+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-02-07 11:32 UTC (permalink / raw
To: gentoo-commits
fauli 09/02/07 11:32:45
Modified: elisp.eclass
Log:
remove die messages
Revision Changes Path
1.37 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.36&r2=1.37
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- elisp.eclass 16 Nov 2008 10:23:42 -0000 1.36
+++ elisp.eclass 7 Feb 2009 11:32:45 -0000 1.37
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.36 2008/11/16 10:23:42 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.37 2009/02/07 11:32:45 fauli Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
@@ -62,7 +62,7 @@
elisp_src_unpack() {
[ -n "${A}" ] && unpack ${A}
if [ -f ${P}.el ]; then
- mv ${P}.el ${PN}.el || die "mv ${P}.el ${PN}.el failed"
+ mv ${P}.el ${PN}.el || die
fi
}
@@ -76,7 +76,7 @@
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
fi
if [ -n "${DOCS}" ]; then
- dodoc ${DOCS} || die "dodoc failed"
+ dodoc ${DOCS} || die
fi
}
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2009-03-29 19:49 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2009-03-29 19:49 UTC (permalink / raw
To: gentoo-commits
ulm 09/03/29 19:49:45
Modified: elisp.eclass
Log:
Sync elisp.eclass from Emacs overlay (revision 1355):
Inherit eutils. Call EXPORT_FUNCTIONS with EAPI dependent arguments.
Assign RDEPEND from DEPEND, avoiding unnecessary code duplication.
New function elisp_src_prepare, applies patches from ELISP_PATCHES.
New function elisp_src_configure, does nothing.
Revision Changes Path
1.40 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.39&r2=1.40
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- elisp.eclass 26 Mar 2009 14:14:22 -0000 1.39
+++ elisp.eclass 29 Mar 2009 19:49:45 -0000 1.40
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.39 2009/03/26 14:14:22 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.40 2009/03/29 19:49:45 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
@@ -38,6 +38,11 @@
# DOCS="blah.txt ChangeLog" is automatically used to install the given
# files by dodoc in src_install().
+# @ECLASS-VARIABLE: ELISP_PATCHES
+# @DESCRIPTION:
+# Any patches to apply after unpacking the sources. Patches are searched
+# both in ${PWD} and ${FILESDIR}.
+
# @ECLASS-VARIABLE: SITEFILE
# @DESCRIPTION:
# Name of package's site-init file. The filename must match the shell
@@ -45,14 +50,17 @@
# reserved for internal use. "50${PN}-gentoo.el" is a reasonable choice
# in most cases.
-inherit elisp-common versionator
+inherit elisp-common eutils versionator
-EXPORT_FUNCTIONS \
- src_unpack src_compile src_install \
- pkg_setup pkg_postinst pkg_postrm
+case "${EAPI:-0}" in
+ 0|1) EXPORT_FUNCTIONS src_{unpack,compile,install} \
+ pkg_{setup,postinst,postrm} ;;
+ *) EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \
+ pkg_{setup,postinst,postrm} ;;
+esac
DEPEND=">=virtual/emacs-${NEED_EMACS:-21}"
-RDEPEND=">=virtual/emacs-${NEED_EMACS:-21}"
+RDEPEND="${DEPEND}"
IUSE=""
elisp_pkg_setup() {
@@ -73,8 +81,27 @@
mv ${P}.el ${PN}.el || die
[ -d "${S}" ] || S=${WORKDIR}
fi
+
+ case "${EAPI:-0}" in
+ 0|1) elisp_src_prepare ;;
+ esac
+}
+
+elisp_src_prepare() {
+ local patch
+ for patch in ${ELISP_PATCHES}; do
+ if [ -f "${patch}" ]; then
+ epatch "${patch}"
+ elif [ -f "${FILESDIR}/${patch}" ]; then
+ epatch "${FILESDIR}/${patch}"
+ else
+ die "Cannot find ${patch}"
+ fi
+ done
}
+elisp_src_configure() { :; }
+
elisp_src_compile() {
elisp-compile *.el || die
}
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2009-03-29 20:27 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2009-03-29 20:27 UTC (permalink / raw
To: gentoo-commits
ulm 09/03/29 20:27:19
Modified: elisp.eclass
Log:
Change directory to S in src_unpack.
Revision Changes Path
1.41 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.40&r2=1.41
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- elisp.eclass 29 Mar 2009 19:49:45 -0000 1.40
+++ elisp.eclass 29 Mar 2009 20:27:19 -0000 1.41
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.40 2009/03/29 19:49:45 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.41 2009/03/29 20:27:19 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
@@ -83,7 +83,8 @@
fi
case "${EAPI:-0}" in
- 0|1) elisp_src_prepare ;;
+ 0|1) [ -d "${S}" ] && cd "${S}"
+ elisp_src_prepare ;;
esac
}
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2009-08-25 12:53 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2009-08-25 12:53 UTC (permalink / raw
To: gentoo-commits
ulm 09/08/25 12:53:55
Modified: elisp.eclass
Log:
Sync elisp.eclass from Emacs overlay (revision 1432):
Don't inherit versionator.eclass.
Revision Changes Path
1.42 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.41&r2=1.42
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- elisp.eclass 29 Mar 2009 20:27:19 -0000 1.41
+++ elisp.eclass 25 Aug 2009 12:53:55 -0000 1.42
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.41 2009/03/29 20:27:19 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.42 2009/08/25 12:53:55 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
@@ -50,7 +50,7 @@
# reserved for internal use. "50${PN}-gentoo.el" is a reasonable choice
# in most cases.
-inherit elisp-common eutils versionator
+inherit elisp-common eutils
case "${EAPI:-0}" in
0|1) EXPORT_FUNCTIONS src_{unpack,compile,install} \
@@ -66,8 +66,8 @@
elisp_pkg_setup() {
local need_emacs=${NEED_EMACS:-21}
local have_emacs=$(elisp-emacs-version)
- if ! version_is_at_least "${need_emacs}" "${have_emacs}"; then
- eerror "This package needs at least Emacs ${need_emacs}."
+ if [ "${have_emacs%%.*}" -lt "${need_emacs%%.*}" ]; then
+ eerror "This package needs at least Emacs ${need_emacs%%.*}."
eerror "Use \"eselect emacs\" to select the active version."
die "Emacs version ${have_emacs} is too low."
fi
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2010-01-30 22:54 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2010-01-30 22:54 UTC (permalink / raw
To: gentoo-commits
ulm 10/01/30 22:54:01
Modified: elisp.eclass
Log:
Look for patches in WORKDIR too.
Revision Changes Path
1.44 eclass/elisp.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp.eclass?r1=1.43&r2=1.44
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- elisp.eclass 8 Oct 2009 10:50:35 -0000 1.43
+++ elisp.eclass 30 Jan 2010 22:54:00 -0000 1.44
@@ -1,11 +1,11 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.43 2009/10/08 10:50:35 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.44 2010/01/30 22:54:00 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
# Copyright 2007-2009 Christian Faulhammer <fauli@gentoo.org>
-# Copyright 2007-2009 Ulrich Müller <ulm@gentoo.org>
+# Copyright 2007-2010 Ulrich Müller <ulm@gentoo.org>
#
# @ECLASS: elisp.eclass
# @MAINTAINER:
@@ -98,6 +98,8 @@
for patch in ${ELISP_PATCHES}; do
if [ -f "${patch}" ]; then
epatch "${patch}"
+ elif [ -f "${WORKDIR}/${patch}" ]; then
+ epatch "${WORKDIR}/${patch}"
elif [ -f "${FILESDIR}/${patch}" ]; then
epatch "${FILESDIR}/${patch}"
else
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2010-09-17 7:39 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2010-09-17 7:39 UTC (permalink / raw
To: gentoo-commits
ulm 10/09/17 07:39:58
Modified: elisp.eclass
Log:
Update eclass documentation.
Revision Changes Path
1.46 eclass/elisp.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?r1=1.45&r2=1.46
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- elisp.eclass 22 Aug 2010 08:30:32 -0000 1.45
+++ elisp.eclass 17 Sep 2010 07:39:58 -0000 1.46
@@ -1,10 +1,10 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.45 2010/08/22 08:30:32 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.46 2010/09/17 07:39:58 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
-# Copyright 2007-2009 Christian Faulhammer <fauli@gentoo.org>
+# Copyright 2007-2010 Christian Faulhammer <fauli@gentoo.org>
# Copyright 2007-2010 Ulrich Müller <ulm@gentoo.org>
#
# @ECLASS: elisp.eclass
@@ -15,7 +15,7 @@
# @DESCRIPTION:
#
# This eclass is designed to install elisp files of Emacs related
-# packages into the site-lisp directory. The majority of elisp packages
+# packages into the site-lisp directory. The majority of elisp packages
# will only need to define the standard ebuild variables (like SRC_URI)
# and optionally SITEFILE for successful installation.
#
@@ -37,8 +37,8 @@
# @ECLASS-VARIABLE: ELISP_PATCHES
# @DEFAULT_UNSET
# @DESCRIPTION:
-# Any patches to apply after unpacking the sources. Patches are searched
-# both in ${PWD} and ${FILESDIR}.
+# Any patches to apply after unpacking the sources. Patch files are
+# searched for in the current working dir, WORKDIR, and FILESDIR.
# @ECLASS-VARIABLE: SITEFILE
# @DEFAULT_UNSET
@@ -51,7 +51,7 @@
# @ECLASS-VARIABLE: ELISP_TEXINFO
# @DEFAULT_UNSET
# @DESCRIPTION:
-# Space separated list of Texinfo sources. Respective GNU Info files
+# Space separated list of Texinfo sources. Respective GNU Info files
# will be generated in src_compile() and installed in src_install().
# @ECLASS-VARIABLE: DOCS
@@ -73,6 +73,11 @@
RDEPEND="${DEPEND}"
IUSE=""
+# @FUNCTION: elisp_pkg_setup
+# @DESCRIPTION:
+# Test if the eselected Emacs version is sufficient to fulfil the major
+# version requirement of the NEED_EMACS variable.
+
elisp_pkg_setup() {
local need_emacs=${NEED_EMACS:-21}
local have_emacs=$(elisp-emacs-version)
@@ -84,6 +89,12 @@
einfo "Emacs version: ${have_emacs}"
}
+# @FUNCTION: elisp_src_unpack
+# @DESCRIPTION:
+# Unpack the sources; also handle the case of a single *.el file in
+# WORKDIR for packages distributed that way. For EAPIs without
+# src_prepare, call elisp_src_prepare.
+
elisp_src_unpack() {
[ -n "${A}" ] && unpack ${A}
if [ -f ${P}.el ]; then
@@ -98,6 +109,11 @@
esac
}
+# @FUNCTION: elisp_src_prepare
+# @DESCRIPTION:
+# Apply any patches listed in ELISP_PATCHES. Patch files are searched
+# for in the current working dir, WORKDIR, and FILESDIR.
+
elisp_src_prepare() {
local patch
for patch in ${ELISP_PATCHES}; do
@@ -113,8 +129,18 @@
done
}
+# @FUNCTION: elisp_src_configure
+# @DESCRIPTION:
+# Do nothing, because Emacs packages seldomly bring a full build system.
+
elisp_src_configure() { :; }
+# @FUNCTION: elisp_src_compile
+# @DESCRIPTION:
+# Call elisp-compile to byte-compile all Emacs Lisp (*.el) files.
+# If ELISP_TEXINFO lists any Texinfo sources, call makeinfo to generate
+# GNU Info files from then.
+
elisp_src_compile() {
elisp-compile *.el || die
if [ -n "${ELISP_TEXINFO}" ]; then
@@ -122,6 +148,13 @@
fi
}
+# @FUNCTION: elisp_src_install
+# @DESCRIPTION:
+# Call elisp-install to install all Emacs Lisp (*.el and *.elc) files.
+# If the SITEFILE variable specifies a site-init file, install it with
+# elisp-site-file-install. Also install any GNU Info files listed in
+# ELISP_TEXINFO and documentation listed in the DOCS variable.
+
elisp_src_install() {
elisp-install ${PN} *.el *.elc || die
if [ -n "${SITEFILE}" ]; then
@@ -136,10 +169,20 @@
fi
}
+# @FUNCTION: elisp_pkg_postinst
+# @DESCRIPTION:
+# Call elisp-site-regen, in order to collect the site initialisation for
+# all installed Emacs Lisp packages in the site-gentoo.el file.
+
elisp_pkg_postinst() {
elisp-site-regen
}
+# @FUNCTION: elisp_pkg_postrm
+# @DESCRIPTION:
+# Call elisp-site-regen, in order to collect the site initialisation for
+# all installed Emacs Lisp packages in the site-gentoo.el file.
+
elisp_pkg_postrm() {
elisp-site-regen
}
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2011-02-07 21:48 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2011-02-07 21:48 UTC (permalink / raw
To: gentoo-commits
ulm 11/02/07 21:48:53
Modified: elisp.eclass
Log:
Fix typo.
Revision Changes Path
1.48 eclass/elisp.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?r1=1.47&r2=1.48
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- elisp.eclass 23 Nov 2010 20:56:08 -0000 1.47
+++ elisp.eclass 7 Feb 2011 21:48:53 -0000 1.48
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.47 2010/11/23 20:56:08 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.48 2011/02/07 21:48:53 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
@@ -132,7 +132,7 @@
# @DESCRIPTION:
# Call elisp-compile to byte-compile all Emacs Lisp (*.el) files.
# If ELISP_TEXINFO lists any Texinfo sources, call makeinfo to generate
-# GNU Info files from then.
+# GNU Info files from them.
elisp_src_compile() {
elisp-compile *.el || die
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2011-08-12 16:14 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2011-08-12 16:14 UTC (permalink / raw
To: gentoo-commits
ulm 11/08/12 16:14:55
Modified: elisp.eclass
Log:
Sync elisp.eclass from Emacs overlay (revision 1646):
Fix installation of Info files if Texinfo source is in a subdirectory,
bug 373741.
Revision Changes Path
1.49 eclass/elisp.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?r1=1.48&r2=1.49
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- elisp.eclass 7 Feb 2011 21:48:53 -0000 1.48
+++ elisp.eclass 12 Aug 2011 16:14:55 -0000 1.49
@@ -1,11 +1,11 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.48 2011/02/07 21:48:53 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.49 2011/08/12 16:14:55 ulm Exp $
#
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org>
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
# Copyright 2007-2010 Christian Faulhammer <fauli@gentoo.org>
-# Copyright 2007-2010 Ulrich Müller <ulm@gentoo.org>
+# Copyright 2007-2011 Ulrich Müller <ulm@gentoo.org>
#
# @ECLASS: elisp.eclass
# @MAINTAINER:
@@ -155,6 +155,7 @@
fi
if [ -n "${ELISP_TEXINFO}" ]; then
set -- ${ELISP_TEXINFO}
+ set -- ${@##*/}
doinfo ${@/%.*/.info*} || die
fi
if [ -n "${DOCS}" ]; then
^ permalink raw reply [flat|nested] 18+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass
@ 2011-10-21 19:16 Ulrich Mueller (ulm)
0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Mueller (ulm) @ 2011-10-21 19:16 UTC (permalink / raw
To: gentoo-commits
ulm 11/10/21 19:16:16
Modified: elisp.eclass
Log:
ELISP_PATCHES is a space separated list.
Revision Changes Path
1.53 eclass/elisp.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp.eclass?r1=1.52&r2=1.53
Index: elisp.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- elisp.eclass 30 Aug 2011 20:10:13 -0000 1.52
+++ elisp.eclass 21 Oct 2011 19:16:16 -0000 1.53
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.52 2011/08/30 20:10:13 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.53 2011/10/21 19:16:16 ulm Exp $
#
# @ECLASS: elisp.eclass
# @MAINTAINER:
@@ -36,8 +36,9 @@
# @ECLASS-VARIABLE: ELISP_PATCHES
# @DEFAULT_UNSET
# @DESCRIPTION:
-# Any patches to apply after unpacking the sources. Patch files are
-# searched for in the current working dir, WORKDIR, and FILESDIR.
+# Space separated list of patches to apply after unpacking the sources.
+# Patch files are searched for in the current working dir, WORKDIR, and
+# FILESDIR.
# @ECLASS-VARIABLE: SITEFILE
# @DEFAULT_UNSET
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2011-10-21 19:16 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-03 15:48 [gentoo-commits] gentoo-x86 commit in eclass: elisp.eclass Ulrich Mueller (ulm)
-- strict thread matches above, loose matches on Subject: below --
2011-10-21 19:16 Ulrich Mueller (ulm)
2011-08-12 16:14 Ulrich Mueller (ulm)
2011-02-07 21:48 Ulrich Mueller (ulm)
2010-09-17 7:39 Ulrich Mueller (ulm)
2010-01-30 22:54 Ulrich Mueller (ulm)
2009-08-25 12:53 Ulrich Mueller (ulm)
2009-03-29 20:27 Ulrich Mueller (ulm)
2009-03-29 19:49 Ulrich Mueller (ulm)
2009-02-07 11:32 Christian Faulhammer (fauli)
2008-11-16 10:23 Ulrich Mueller (ulm)
2008-08-28 9:55 Ulrich Mueller (ulm)
2008-06-23 21:38 Christian Faulhammer (opfer)
2008-06-23 13:40 Ulrich Mueller (ulm)
2008-03-03 15:21 Ulrich Mueller (ulm)
2007-12-07 13:52 Ulrich Mueller (ulm)
2007-12-07 0:16 Christian Faulhammer (opfer)
2007-12-04 13:11 Ulrich Mueller (ulm)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox