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 1Pq1B2-00054P-KD for garchives@archives.gentoo.org; Thu, 17 Feb 2011 10:33:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECDECE086C; Thu, 17 Feb 2011 10:33:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id BB3D3E086C for ; Thu, 17 Feb 2011 10:33:28 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 414C61B41A7 for ; Thu, 17 Feb 2011 10:33:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 930DA8006A for ; Thu, 17 Feb 2011 10:33:27 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <734af3a2f4d3e04127d8a467d09b40040dddb72a.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/actions.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 734af3a2f4d3e04127d8a467d09b40040dddb72a Date: Thu, 17 Feb 2011 10:33:27 +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: X-Archives-Hash: 4ed7319315e2d55717c1c562cfe49496 commit: 734af3a2f4d3e04127d8a467d09b40040dddb72a Author: Zac Medico gentoo org> AuthorDate: Thu Feb 17 10:32:20 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Feb 17 10:32:20 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D734af3a2 emerge --sync: display message when cvs fails --- pym/_emerge/actions.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 278002b..79d70ba 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2400,6 +2400,8 @@ def action_sync(settings, trees, mtimedb, myopts, m= yaction): retval =3D portage.process.spawn_bash( "cd %s; exec cvs -z0 -q update -dP" % \ (portage._shell_quote(myportdir),), **spawn_kwargs) + writemsg_level("!!! cvs update error; exiting.\n", + noiselevel=3D-1, level=3Dlogging.ERROR) if retval !=3D os.EX_OK: sys.exit(retval) dosyncuri =3D syncuri