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 1ROtFO-0005Db-PT for garchives@archives.gentoo.org; Fri, 11 Nov 2011 15:42:31 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E74821C06F; Fri, 11 Nov 2011 15:42:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4E6B721C06F for ; Fri, 11 Nov 2011 15:42:20 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C0D4C1B403E for ; Fri, 11 Nov 2011 15:42:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3294880042 for ; Fri, 11 Nov 2011 15:42:19 +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: <0cc174b6fc28feb26ea151d76f794e0ff2c2fa39.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: man/, /, pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: RELEASE-NOTES man/emerge.1 pym/_emerge/main.py X-VCS-Directories: man/ / pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 0cc174b6fc28feb26ea151d76f794e0ff2c2fa39 Date: Fri, 11 Nov 2011 15:42:19 +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: 18e72976-b730-431b-a0cd-46e33fd4abd3 X-Archives-Hash: 3dfcd3ed3026b760ccad93d62d7909f3 commit: 0cc174b6fc28feb26ea151d76f794e0ff2c2fa39 Author: Zac Medico gentoo org> AuthorDate: Fri Nov 11 15:42:11 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Nov 11 15:42:11 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D0cc174b6 Enable emerge --quiet-build by default. See discussion on the gentoo-dev mailing list: http://archives.gentoo.org/gentoo-dev/msg_4f0401066abe2dc04458a952ac2a17b= d.xml --- RELEASE-NOTES | 5 +++++ man/emerge.1 | 11 +++++++++-- pym/_emerge/main.py | 3 ++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 64dff1c..e0d9554 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -20,6 +20,11 @@ portage-2.2 /var/lib/portage/world, has been extended to include nested sets that = may be listed /var/lib/portage/world_sets. =20 +portage-2.1.10.34 +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D +* The emerge --quiet-build option is now enabled by default. Set + --quiet-build=3Dn in EMERGE_DEFAULT_OPTS if you want to disable it by = default. + portage-2.1.10.27 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * FEATURES=3Dfixpackages is now enabled unconditionally. Set --package-m= oves=3Dn diff --git a/man/emerge.1 b/man/emerge.1 index e63d386..b011125 100644 --- a/man/emerge.1 +++ b/man/emerge.1 @@ -590,8 +590,15 @@ Results may vary, but the general outcome is a reduc= ed or condensed output from portage's displays. .TP .BR "\-\-quiet\-build [ y | n ]" -Redirect all build output to logs alone, and do not -display it on stdout. +Redirect all build output to logs alone, and do not display it on +stdout. If a build failure occurs for a single package, the build +log will be automatically displayed on stdout. If there are multiple +build failures (due to options like \-\-keep\-going or \-\-jobs), +then the content of the log files will not be displayed, and instead +the paths of the log files will be displayed together with the +corresponding die messages. This option is enabled by default. In +order to disable \-\-quiet\-build by default, set \-\-quiet\-build=3Dn +in the \fBEMERGE_DEFAULT_OPTS\fR variable in \fBmake.conf\fR(5). .TP .BR \-\-quiet\-unmerge\-warn Disable the warning message that's shown prior to diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index e2e12c6..a2995e2 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -847,7 +847,8 @@ def parse_opts(tmpcmdline, silent=3DFalse): "--quiet-build": { "help" : "redirect build output to logs", "type" : "choice", - "choices" : true_y_or_n + "choices" : true_y_or_n, + "default" : "y", }, =20 "--rebuild-if-new-rev": {