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 E53B4138D29 for ; Fri, 14 Feb 2014 21:22:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56AF8E0ABF; Fri, 14 Feb 2014 21:22:17 +0000 (UTC) Received: from mout.gmx.net (mout.gmx.net [212.227.15.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5CE3E0ABD for ; Fri, 14 Feb 2014 21:22:16 +0000 (UTC) Received: from localhost.localdomain ([88.150.32.217]) by mail.gmx.com (mrgmx001) with ESMTPSA (Nemesis) id 0M3RVA-1VNYbm2Dlw-00r2Hz for ; Fri, 14 Feb 2014 22:22:14 +0100 From: Sebastian Luther To: gentoo-portage-dev@lists.gentoo.org Subject: [gentoo-portage-dev] [PATCH] Remove bogus countdown during clean list printing (bug 501296) Date: Fri, 14 Feb 2014 22:22:03 +0100 Message-Id: <1392412923-32639-1-git-send-email-SebastianLuther@gmx.de> X-Mailer: git-send-email 1.8.3.2 X-Provags-ID: V03:K0:vTolqjLNcMcAmcin6P2ZUu6J7XEzxAzbnOT8QvHTeryIThRjl3T anK0iqPSbPOahSjclVttYtF3jc/VArdfn4ayWyfcWVw6efGcrk+sLlPIxBe3+fNF838KSY/ ND6xXIMqQeBVyJoNXvh6/XWMyaFanOtl5GCuZmiN3aAHNrqVfMfq7m1ESxH7t+dsPfXQ/Ps IZYFZrptA/QwZMnbXF82Q== Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-portage-dev@lists.gentoo.org Reply-to: gentoo-portage-dev@lists.gentoo.org X-Archives-Salt: b0dcec2d-4154-4bc3-a9ff-05870f47fad0 X-Archives-Hash: 0e178b39bd008a0e9d510f52b0291c9d Before this patch a fake unmerge countdown would be shown after an @system package was printed. If the users aborts at this point, it looked as if some packages were missing from the clean list compared to the --pretend output. --- pym/_emerge/unmerge.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pym/_emerge/unmerge.py b/pym/_emerge/unmerge.py index b46b89c..f632a97 100644 --- a/pym/_emerge/unmerge.py +++ b/pym/_emerge/unmerge.py @@ -457,9 +457,6 @@ def _unmerge_display(root_config, myopts, unmerge_action, writemsg_level(colorize("WARN","!!! Unmerging it may " + \ "be damaging to your system.\n\n"), level=logging.WARNING, noiselevel=-1) - if clean_delay and "--pretend" not in myopts and "--ask" not in myopts: - countdown(int(settings["EMERGE_WARNING_DELAY"]), - colorize("UNMERGE_WARN", "Press Ctrl-C to Stop")) if not quiet: writemsg_level("\n %s\n" % (bold(cp),), noiselevel=-1) else: -- 1.8.3.2