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 <gentoo-commits+bounces-348130-garchives=archives.gentoo.org@lists.gentoo.org>) id 1QQ5xq-00036s-HL for garchives@archives.gentoo.org; Fri, 27 May 2011 22:57:06 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74F0C1C077; Fri, 27 May 2011 22:56:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 454FF1C077 for <gentoo-commits@lists.gentoo.org>; Fri, 27 May 2011 22:56:59 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C7A1C641C6 for <gentoo-commits@lists.gentoo.org>; Fri, 27 May 2011 22:56:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id EC60D80505 for <gentoo-commits@lists.gentoo.org>; Fri, 27 May 2011 22:56:57 +0000 (UTC) From: "Zac Medico" <zmedico@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" <zmedico@gentoo.org> Message-ID: <d8c868bbf2f2ffc1b2890e7c4d57f03621ac9007.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: d8c868bbf2f2ffc1b2890e7c4d57f03621ac9007 Date: Fri, 27 May 2011 22:56:57 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: dec84970afa7f5a6ad8c6ca776e1f162 commit: d8c868bbf2f2ffc1b2890e7c4d57f03621ac9007 Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Fri May 27 22:53:21 2011 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Fri May 27 22:53:21 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dd8c868bb depclean: warn for each unmatched argument This output is similar to that produced by unmerge(). --- pym/_emerge/actions.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 9bc2c2b..f6b6928 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -563,7 +563,10 @@ def action_depclean(settings, trees, ldpath_mtimes, for x in args_set: if vardb.match(x): matched_packages =3D True - break + else: + writemsg_level("--- Couldn't find '%s' to %s.\n" % \ + (x.replace("null/", ""), action), + level=3Dlogging.WARN, noiselevel=3D-1) if not matched_packages: writemsg_level(">>> No packages selected for removal by %s\n" % \ action)