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 BDA9213888F for ; Thu, 15 Oct 2015 21:39:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31B0121C0A7; Thu, 15 Oct 2015 21:39:50 +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 CC00D21C0A7 for ; Thu, 15 Oct 2015 21:39:49 +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 9133F340BAF for ; Thu, 15 Oct 2015 21:39:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15A12922 for ; Thu, 15 Oct 2015 21:39:46 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <1444945125.68283db9d0a775c334087a27601edf042987294c.fuzzyray@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/eclean/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/eclean/search.py X-VCS-Directories: pym/gentoolkit/eclean/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: 68283db9d0a775c334087a27601edf042987294c X-VCS-Branch: master Date: Thu, 15 Oct 2015 21:39:46 +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: 2eb87786-a522-4556-9ef7-4bf41c8d5acc X-Archives-Hash: d59b70273fa797cc62551cdd4c7052eb commit: 68283db9d0a775c334087a27601edf042987294c Author: Marc Joliet gmx de> AuthorDate: Thu Oct 15 21:16:57 2015 +0000 Commit: Paul Varner gentoo org> CommitDate: Thu Oct 15 21:38:45 2015 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=68283db9 eclean: fix eclean-pkg -n -d Bug #472020 Signed-off-by: Paul Varner gentoo.org> pym/gentoolkit/eclean/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/eclean/search.py b/pym/gentoolkit/eclean/search.py index 5fcb6bc..1a83fd4 100644 --- a/pym/gentoolkit/eclean/search.py +++ b/pym/gentoolkit/eclean/search.py @@ -574,7 +574,7 @@ def findPackages( # exclusion because pkg still exists (in porttree or vartree) del clean_me[cpv] continue - if portage.cpv_getkey(cpv) in cp_all: + if portage.cpv_getkey(cpv) in cp_all and port_dbapi.cpv_exists(cpv): # exlusion because of --package-names del clean_me[cpv]