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 1RQkT0-0006ME-4e for garchives@archives.gentoo.org; Wed, 16 Nov 2011 18:44:14 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 299B121C033; Wed, 16 Nov 2011 18:44:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CD92A21C033 for ; Wed, 16 Nov 2011 18:44:05 +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 4CE7D1B402D for ; Wed, 16 Nov 2011 18:44:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 5C98580042 for ; Wed, 16 Nov 2011 18:44:04 +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: <72f9ddefe49ab1b24196161a07587aac3cdfdd04.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: 72f9ddefe49ab1b24196161a07587aac3cdfdd04 Date: Wed, 16 Nov 2011 18:44:04 +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: 12f80e99-0163-41b9-adae-9b29c29340cd X-Archives-Hash: b749c056a06f05848a3971464a38c2b8 commit: 72f9ddefe49ab1b24196161a07587aac3cdfdd04 Author: Zac Medico gentoo org> AuthorDate: Wed Nov 16 18:43:51 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Nov 16 18:43:51 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D72f9ddef emerge --quiet-build: don't set PORTAGE_QUIET The PORTAGE_QUIET controls lots of stuff that really should only be controlled by --quiet, especially now that --quiet-build is enabled by default. For example, PORTAGE_QUIET supresses the successful checksum display that is produced by emerge --fetchonly. --- pym/_emerge/actions.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 4a72ff4..ba2e631 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2707,7 +2707,7 @@ def adjust_config(myopts, settings): if "--buildpkg" in myopts: settings.features.add("buildpkg") =20 - if "--quiet" in myopts or "--quiet-build" in myopts: + if "--quiet" in myopts: settings["PORTAGE_QUIET"]=3D"1" settings.backup_changes("PORTAGE_QUIET") =20