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 1SR43i-0005DA-34 for garchives@archives.gentoo.org; Sun, 06 May 2012 16:11:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0562BE0824; Sun, 6 May 2012 16:06:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C83A2E0829 for ; Sun, 6 May 2012 16:06:09 +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 674691B4074 for ; Sun, 6 May 2012 16:06:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5F4F0E542C for ; Sun, 6 May 2012 16:06:07 +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: <1251269077.21b7b6eb0946a5459eb277d4f61b236d4db84a35.sping@gentoo> Subject: [gentoo-commits] proj/emacs-tools:emacs-updater commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: emacs-updater X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 21b7b6eb0946a5459eb277d4f61b236d4db84a35 X-VCS-Branch: emacs-updater Date: Sun, 6 May 2012 16:06:07 +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: 0fdececc-7d46-4f51-890f-c12e27d525c4 X-Archives-Hash: b858d5f8fc25e346f40960fbb92385d4 commit: 21b7b6eb0946a5459eb277d4f61b236d4db84a35 Author: Ulrich M=C3=BCller gentoo org> AuthorDate: Wed Aug 26 06:44:37 2009 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Aug 26 06:44:37 2009 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/emacs-tools.g= it;a=3Dcommit;h=3D21b7b6eb Be more verbose in orphan mode. svn path=3D/emacs-updater/; revision=3D1384 --- emacs-updater | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/emacs-updater b/emacs-updater index f6d0c5a..8832fed 100755 --- a/emacs-updater +++ b/emacs-updater @@ -260,7 +260,7 @@ NO_OF_FILES=3D$(sed -n '$=3D' "${TMPFILE}") message "Assigning ${NO_OF_FILES} file${s} to packages ..." =20 if [ "${ORPHANS}" ]; then - qfile -oCR -f "${TMPFILE}" | sort -u + qfile -oCR -f "${TMPFILE}" | sort -u > "${PKGFILE}" elif [ "${EXACT}" ]; then qfile -eqCR -f "${TMPFILE}" | sort -u | sed 's/^/=3D/' > "${PKGFILE}= " else @@ -276,11 +276,15 @@ fi =20 NO_OF_PACKAGES=3D$(sed -n '$=3D' "${PKGFILE}") [ ${NO_OF_PACKAGES} -eq 1 ] && s=3D || s=3Ds -message "${NO_OF_PACKAGES} package${s} to remerge:" +if [ "${ORPHANS}" ]; then + message "${NO_OF_PACKAGES} orphan file${s} found:" +else + message "${NO_OF_PACKAGES} package${s} to remerge:" +fi =20 cat "${PKGFILE}" =20 -if [ "${PRETEND}" ]; then +if [ "${PRETEND}" -o "${ORPHANS}" ]; then exit 4 fi =20 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 1SR4FV-0007U7-HS for garchives@archives.gentoo.org; Sun, 06 May 2012 16:23:53 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C1DCE0885; Sun, 6 May 2012 16:15:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4EA83E09CC for ; Sun, 6 May 2012 16:07:25 +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 E393E1B4059 for ; Sun, 6 May 2012 16:07:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A92D7E542B for ; Sun, 6 May 2012 16:07:23 +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: <1251269077.21b7b6eb0946a5459eb277d4f61b236d4db84a35.sping@gentoo> Subject: [gentoo-commits] proj/emacs-tools:backups/emacs-updater@1480 commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: emacs-updater X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 21b7b6eb0946a5459eb277d4f61b236d4db84a35 X-VCS-Branch: backups/emacs-updater@1480 Date: Sun, 6 May 2012 16:07:23 +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: 9d446e07-5267-4800-98ae-a8797814c8b0 X-Archives-Hash: d3ff97b832afb1cc636f227680cf4408 Message-ID: <20120506160723.icPUV5WayRiysmMu6jyOCIsyF36C_M1gSkaMk1w8TIQ@z> commit: 21b7b6eb0946a5459eb277d4f61b236d4db84a35 Author: Ulrich M=C3=BCller gentoo org> AuthorDate: Wed Aug 26 06:44:37 2009 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Aug 26 06:44:37 2009 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/emacs-tools.g= it;a=3Dcommit;h=3D21b7b6eb Be more verbose in orphan mode. svn path=3D/emacs-updater/; revision=3D1384 --- emacs-updater | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/emacs-updater b/emacs-updater index f6d0c5a..8832fed 100755 --- a/emacs-updater +++ b/emacs-updater @@ -260,7 +260,7 @@ NO_OF_FILES=3D$(sed -n '$=3D' "${TMPFILE}") message "Assigning ${NO_OF_FILES} file${s} to packages ..." =20 if [ "${ORPHANS}" ]; then - qfile -oCR -f "${TMPFILE}" | sort -u + qfile -oCR -f "${TMPFILE}" | sort -u > "${PKGFILE}" elif [ "${EXACT}" ]; then qfile -eqCR -f "${TMPFILE}" | sort -u | sed 's/^/=3D/' > "${PKGFILE}= " else @@ -276,11 +276,15 @@ fi =20 NO_OF_PACKAGES=3D$(sed -n '$=3D' "${PKGFILE}") [ ${NO_OF_PACKAGES} -eq 1 ] && s=3D || s=3Ds -message "${NO_OF_PACKAGES} package${s} to remerge:" +if [ "${ORPHANS}" ]; then + message "${NO_OF_PACKAGES} orphan file${s} found:" +else + message "${NO_OF_PACKAGES} package${s} to remerge:" +fi =20 cat "${PKGFILE}" =20 -if [ "${PRETEND}" ]; then +if [ "${PRETEND}" -o "${ORPHANS}" ]; then exit 4 fi =20