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 1QPiFc-00088C-76 for garchives@archives.gentoo.org; Thu, 26 May 2011 21:37:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BB9C1C026; Thu, 26 May 2011 21:37:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6DC8A1C026 for ; Thu, 26 May 2011 21:37:42 +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 0AA6C1B400C for ; Thu, 26 May 2011 21:37:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 6F58280505 for ; Thu, 26 May 2011 21:37:41 +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: Subject: [gentoo-commits] proj/portage:2.1.9 commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/depgraph.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: f7594e756f54aa03d59e9be08ebc1c0b5c6d2c60 Date: Thu, 26 May 2011 21:37:41 +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: X-Archives-Hash: a6d3e7656ff4329c2cbc91276a8ddd67 commit: f7594e756f54aa03d59e9be08ebc1c0b5c6d2c60 Author: Zac Medico gentoo org> AuthorDate: Thu May 26 21:37:04 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu May 26 21:37:04 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Df7594e75 _add_pkg_dep_string: fix virt_dep satisfied check This is a mistake made when merging commit 6e6b9c5928e175af42615542866fc9b3aef694e6 to create commit 75b0a8aed8e56f02c0b455b4ee31fdc7e2b464cf. --- pym/_emerge/depgraph.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index dcebafe..7affe3b 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -1341,7 +1341,7 @@ class depgraph(object): (virt_pkg.cpv, [str(x) for x in atoms]), noiselevel=3D-1, level=3Dlogging.DEBUG) =20 - inst_pkgs =3D vardb.match_pkgs(atom) + inst_pkgs =3D vardb.match_pkgs(virt_dep.atom) if inst_pkgs: for inst_pkg in inst_pkgs: if self._pkg_visibility_check(inst_pkg):