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 ) id 1SAxCd-0007st-JG for garchives@archives.gentoo.org; Fri, 23 Mar 2012 05:38:20 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABD4CE07AA; Fri, 23 Mar 2012 05:38:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 79C0DE07AA for ; Fri, 23 Mar 2012 05:38:11 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 885C01B4018 for ; Fri, 23 Mar 2012 05:38:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A22BBE5403 for ; Fri, 23 Mar 2012 05:38:08 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1332481059.67b8da916f1b4a601d09c3f867c005b39a04f28e.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: 67b8da916f1b4a601d09c3f867c005b39a04f28e X-VCS-Branch: master Date: Fri, 23 Mar 2012 05:38:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: cb811ea9-3913-4fe2-b39d-2315d0c0e323 X-Archives-Hash: 939d51c2581fce0f2a5c6c4765098ad4 commit: 67b8da916f1b4a601d09c3f867c005b39a04f28e Author: Zac Medico gentoo org> AuthorDate: Fri Mar 23 05:37:39 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Mar 23 05:37:39 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D67b8da91 repoman: disable dependency.unknown for blockers This will fix bug #382407. --- bin/repoman | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/bin/repoman b/bin/repoman index c5db186..d393df1 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1866,7 +1866,11 @@ for x in effective_scanlist: if atom =3D=3D "||": continue =20 - if not portdb.xmatch("match-all", atom) and \ + # Skip dependency.unknown for blockers, so that we + # don't encourage people to remove necessary blockers, + # as discussed in bug #382407. + if atom.blocker is None and \ + not portdb.xmatch("match-all", atom) and \ not atom.cp.startswith("virtual/"): unknown_pkgs.add((mytype, atom.unevaluated_atom)) =20