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 C7D9B138A6C for ; Fri, 10 Apr 2015 16:58:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BFF2E07E0; Fri, 10 Apr 2015 16:58:35 +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 0D173E07E0 for ; Fri, 10 Apr 2015 16:58:34 +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 E7EEC340BD1 for ; Fri, 10 Apr 2015 16:58:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5651915A1C for ; Fri, 10 Apr 2015 16:58:28 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1428685000.cb4594635a2ebced9e4e68a4324b83dcd70eff1c.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/repoman X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: cb4594635a2ebced9e4e68a4324b83dcd70eff1c X-VCS-Branch: master Date: Fri, 10 Apr 2015 16:58:28 +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: ae6ae52e-ec4e-4873-aeec-e97de205b8fd X-Archives-Hash: c94ce17dc633d56c0a9effa1bd5a43b7 commit: cb4594635a2ebced9e4e68a4324b83dcd70eff1c Author: Zac Medico gentoo org> AuthorDate: Thu Apr 2 21:01:27 2015 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Apr 10 16:56:40 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=cb459463 repoman: fix dependency.unknown to ignore USE deps (bug 525376) The surrounding code is ignorant of USE flags, because it calls use_reduce(matchall=True), therefore it makes sense for the dependency.unknown code to ignore USE deps. X-Gentoo-Bug: 525376 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=525376 bin/repoman | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/repoman b/bin/repoman index 7101a00..4a21e37 100755 --- a/bin/repoman +++ b/bin/repoman @@ -2049,9 +2049,10 @@ for x in effective_scanlist: # Skip dependency.unknown for blockers, so that we # don't encourage people to remove necessary blockers, - # as discussed in bug #382407. + # as discussed in bug 382407. We use atom.without_use + # due to bug 525376. if not is_blocker and \ - not portdb.xmatch("match-all", atom) and \ + not portdb.xmatch("match-all", atom.without_use) and \ not atom.cp.startswith("virtual/"): unknown_pkgs.add((mytype, atom.unevaluated_atom))