From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 48E2C138247 for ; Thu, 28 Nov 2013 09:20:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF47FE0BDD; Thu, 28 Nov 2013 09:20:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6BEE4E0BDD for ; Thu, 28 Nov 2013 09:20:20 +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 5EA2633F24D for ; Thu, 28 Nov 2013 09:20:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2602BE54FB for ; Thu, 28 Nov 2013 09:20:15 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <1385630360.25d15b99c1f3f0c84243cc3d80587009aeaa3673.arfrever@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/depgraph.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: 25d15b99c1f3f0c84243cc3d80587009aeaa3673 X-VCS-Branch: master Date: Thu, 28 Nov 2013 09:20:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bf8f5a69-c0ac-4c2b-a84e-2eaf98f39eb0 X-Archives-Hash: 6a847d72e16431c904650b747a562747 commit: 25d15b99c1f3f0c84243cc3d80587009aeaa3673 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Thu Nov 28 09:19:20 2013 +0000 Commit: Arfrever Frehtes Taifersar Arahesis Apache Org> CommitDate: Thu Nov 28 09:19:20 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=25d15b99 _emerge.depgraph.depgraph._show_abi_rebuild_info(): Write to stdout instead of stderr. --- pym/_emerge/depgraph.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 6634405..b02d3473 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -704,13 +704,13 @@ class depgraph(object): if not self._forced_rebuilds: return - writemsg("\nThe following packages are causing rebuilds:\n\n", noiselevel=-1) + writemsg_stdout("\nThe following packages are causing rebuilds:\n\n", noiselevel=-1) for root in self._forced_rebuilds: for child in self._forced_rebuilds[root]: - writemsg(" %s causes rebuilds for:\n" % (child,), noiselevel=-1) + writemsg_stdout(" %s causes rebuilds for:\n" % (child,), noiselevel=-1) for parent in self._forced_rebuilds[root][child]: - writemsg(" %s\n" % (parent,), noiselevel=-1) + writemsg_stdout(" %s\n" % (parent,), noiselevel=-1) def _show_ignored_binaries(self): """