summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-12-03 20:43:21 +0000
committerUlrich Müller <ulm@gentoo.org>2011-12-03 20:43:21 +0000
commit7fae92e0d248a0034d4cb6e39b18c8fc2f20c159 (patch)
tree4488a90e123c1ca485bff2869c109fd55aa84b77 /eclass
parentDisable fortify patches with older glibcs #362315 by Leonid Volnitsky. (diff)
downloadgentoo-2-7fae92e0d248a0034d4cb6e39b18c8fc2f20c159.tar.gz
gentoo-2-7fae92e0d248a0034d4cb6e39b18c8fc2f20c159.tar.bz2
gentoo-2-7fae92e0d248a0034d4cb6e39b18c8fc2f20c159.zip
Use ebegin/eend instead of einfo.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog6
-rw-r--r--eclass/elisp-common.eclass6
2 files changed, 7 insertions, 5 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index cb3f7577a8a7..cd99fc6366d3 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,12 +1,12 @@
# ChangeLog for eclass directory
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.32 2011/12/03 08:54:46 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.33 2011/12/03 20:43:21 ulm Exp $
03 Dec 2011; Ulrich Mueller <ulm@gentoo.org> elisp.eclass,
elisp-common.eclass:
- Sync eclasses from Emacs overlay (revision 1752).
+ Sync eclasses from Emacs overlay (revision 1759).
elisp.eclass: Allow for user patches. New variable ELISP_REMOVE.
- elisp-common.eclass: Replace echo by einfo for proper logging.
+ elisp-common.eclass: Replace echo by ebegin/eend for proper logging.
02 Dec 2011; Brian Harring <ferringb@gentoo.org> eutils.eclass:
Fix eqawarn to match portage's return code; this fixes sporadic failures
diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass
index 8b696b31f72d..aaf86f4e150d 100644
--- a/eclass/elisp-common.eclass
+++ b/eclass/elisp-common.eclass
@@ -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-common.eclass,v 1.77 2011/12/03 08:54:46 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.78 2011/12/03 20:43:21 ulm Exp $
#
# @ECLASS: elisp-common.eclass
# @MAINTAINER:
@@ -329,7 +329,7 @@ elisp-site-regen() {
return 1
fi
- einfo "Regenerating site-gentoo.el for GNU Emacs (${EBUILD_PHASE}) ..."
+ ebegin "Regenerating site-gentoo.el for GNU Emacs (${EBUILD_PHASE})"
# Until January 2009, elisp-common.eclass sometimes created an
# auxiliary file for backwards compatibility. Remove any such file.
@@ -376,9 +376,11 @@ elisp-site-regen() {
# was actually no change.
# A case is a remerge where we have doubled output.
rm -f "${T}"/site-gentoo.el
+ eend
einfo "... no changes."
else
mv "${T}"/site-gentoo.el "${sitelisp}"/site-gentoo.el
+ eend
case ${#sflist[@]} in
0) ewarn "... Huh? No site initialisation files found." ;;
1) einfo "... ${#sflist[@]} site initialisation file included." ;;