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 544AF13877A for ; Tue, 19 Aug 2014 12:17:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26098E09C5; Tue, 19 Aug 2014 12:17:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B431E0998 for ; Tue, 19 Aug 2014 12:17:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AF0DC340310 for ; Tue, 19 Aug 2014 12:17:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 864143BBC for ; Tue, 19 Aug 2014 07:01:05 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1407788539.910d073d04e01cbe24b300b9dc33697e9ca48b72.mgorny@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/unmerge.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 910d073d04e01cbe24b300b9dc33697e9ca48b72 X-VCS-Branch: master Date: Tue, 19 Aug 2014 07:01:05 +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: 9fc491bc-892d-4fec-8a05-007ed90afa24 X-Archives-Hash: cb0e8f6551a9a3ceb30942cfacf2c6de commit: 910d073d04e01cbe24b300b9dc33697e9ca48b72 Author: Alexander Berntsen gentoo org> AuthorDate: Thu Jun 12 16:53:50 2014 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Aug 11 20:22:19 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=910d073d emerge: Prepend '=' to unmerge atoms (bug 512578) Signed-off-by: Alexander Berntsen gentoo.org> Reviewed-By: Brian Dolbec gentoo.org> Reviewed-By: Michał Górny gentoo.org> --- pym/_emerge/unmerge.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pym/_emerge/unmerge.py b/pym/_emerge/unmerge.py index 8f98563..30b1930 100644 --- a/pym/_emerge/unmerge.py +++ b/pym/_emerge/unmerge.py @@ -488,7 +488,8 @@ def _unmerge_display(root_config, myopts, unmerge_action, if quiet: writemsg_level("\n", noiselevel=-1) - writemsg_level("\nAll selected packages: %s\n" % " ".join(all_selected), noiselevel=-1) + writemsg_level("\nAll selected packages: %s\n" % + " ".join('=%s' % x for x in all_selected), noiselevel=-1) writemsg_level("\n>>> " + colorize("UNMERGE_WARN", "'Selected'") + \ " packages are slated for removal.\n")