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 1SR44l-0005Rr-Rs for garchives@archives.gentoo.org; Sun, 06 May 2012 16:12:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0ADEE082D; Sun, 6 May 2012 16:06:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 72DA4E0830 for ; Sun, 6 May 2012 16:06:10 +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 158B91B4074 for ; Sun, 6 May 2012 16:06:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 33614E542D for ; Sun, 6 May 2012 16:06:08 +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: <1262610312.6170b3b36f1a0ba95a24dae44be53fce88646ddd.sping@gentoo> Subject: [gentoo-commits] proj/emacs-tools:emacs-updater commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog emacs-updater X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 6170b3b36f1a0ba95a24dae44be53fce88646ddd X-VCS-Branch: emacs-updater Date: Sun, 6 May 2012 16:06:08 +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: cd05607b-0b02-4d31-bcfb-db26340ee063 X-Archives-Hash: f7423f0d52aff69cd66610f8fb446027 commit: 6170b3b36f1a0ba95a24dae44be53fce88646ddd Author: Christian Faulhammer gentoo org> AuthorDate: Mon Jan 4 13:05:12 2010 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Mon Jan 4 13:05:12 2010 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/emacs-tools.g= it;a=3Dcommit;h=3D6170b3b3 emacs-updater: (pm_portage) Add --keep-going option for user convenience svn path=3D/emacs-updater/; revision=3D1495 --- ChangeLog | 5 +++++ emacs-updater | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 37b0c4b..3e371a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-01-04 Christian Faulhammer + + * emacs-updater (pm_portage): Add --keep-going option for user + convenience + 2009-08-27 Ulrich Mueller =20 * Version 1.6 released. diff --git a/emacs-updater b/emacs-updater index 37d1e38..79e61e7 100755 --- a/emacs-updater +++ b/emacs-updater @@ -73,7 +73,7 @@ version() { =20 # Wrapper for package manager commands have_portage() { type -P emerge >/dev/null; } -pm_portage() { emerge --oneshot --ask --verbose "$@"; } +pm_portage() { emerge --oneshot --ask --verbose --keep-going "$@"; } =20 have_pkgcore() { type -P pmerge >/dev/null; } pm_pkgcore() { pmerge --oneshot --ask "$@"; }