From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SR4CY-0006sQ-Tg for garchives@archives.gentoo.org; Sun, 06 May 2012 16:20:51 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA67FE0A80; Sun, 6 May 2012 16:11:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B4BC7E09BE for ; Sun, 6 May 2012 16:07:16 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B0071B4072 for ; Sun, 6 May 2012 16:07:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 293CFE542E for ; Sun, 6 May 2012 16:07:15 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1197446969.04954eee7630cdc2f5d36146f5b314b2a96dc9d9.sping@gentoo> Subject: [gentoo-commits] proj/emacs-tools:backups/emacs-updater@1030 commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog emacs-updater.sh X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 04954eee7630cdc2f5d36146f5b314b2a96dc9d9 X-VCS-Branch: backups/emacs-updater@1030 Date: Sun, 6 May 2012 16:07:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 4a33c23a-8ca3-4d11-b63f-fe013a3d79cf X-Archives-Hash: 045483e352c5b91b7f864c1d3338a454 commit: 04954eee7630cdc2f5d36146f5b314b2a96dc9d9 Author: Ulrich M=C3=BCller gentoo org> AuthorDate: Wed Dec 12 08:09:29 2007 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Dec 12 08:09:29 2007 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/emacs-tools.g= it;a=3Dcommit;h=3D04954eee Make "Processing" message more informative. Don't ask users to report all rebuilt packages as bugs. Break some long lines. svn path=3D/emacs-extra/eselect-emacs/; revision=3D845 --- ChangeLog | 6 ++++++ emacs-updater.sh | 21 +++++++++++++-------- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 29ff43a..7467d12 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-12-12 Ulrich Mueller + + * emacs-updater.sh: Make "Processing" message more informative. + Don't ask users to report all rebuilt packages as bugs. + Break some long lines. + 2007-12-06 Ulrich Mueller =20 * emacs-updater.sh: Test for existence of non-empty temp file; diff --git a/emacs-updater.sh b/emacs-updater.sh index 392ebae..a93471a 100755 --- a/emacs-updater.sh +++ b/emacs-updater.sh @@ -34,12 +34,16 @@ failure() { echo "${RED}*${NORMAL}${BOLD} ${OUTPUT}${NORMAL}"=20 } =20 -echo -echo "Emacs updater version ${VERSION}" -echo "Written by the Gentoo Emacs team http://www.gentoo.org/proj/en/lis= p/emacs/" -echo "Find packages that are installed in the wrong location, file bugs = on http://bugs.gentoo.org/" -echo -warning "Note, you must use the eclasses from the Emacs Overlay for prop= er operation! " +cat <<-EOF + +Emacs updater version ${VERSION} +Written by the Gentoo Emacs team http://www.gentoo.org/proj/en/lisp/emac= s/ +Find packages that are installed in the wrong location + +EOF + +warning "Note, you must use the eclasses from the Emacs Overlay" +warning "for proper operation!" echo =20 if ! [ -x /usr/bin/qfile ]; then @@ -50,7 +54,7 @@ fi =20 for sf in "${ROOT}/${SITELISP}"/[0-9][0-9]*-gentoo.el do - message "Processing ..." + message "Processing ${sf##*/} ..." qfile -qC "${sf}" >> "${TMPFILE}" done echo @@ -77,4 +81,5 @@ esac =20 emerge -av $(cat "${TMPFILE}") =20 -warning "If a package is being rebuilt over and over again, please repor= t it on http://bugs.gentoo.org/" +warning "If a package is being rebuilt over and over again," +warning "please report it on http://bugs.gentoo.org/"