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 1SfzXu-00020O-Ch for garchives@archives.gentoo.org; Sat, 16 Jun 2012 20:24:34 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FAFCE079E; Sat, 16 Jun 2012 20:24:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 53716E079E for ; Sat, 16 Jun 2012 20:24:27 +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 AFF221B4002 for ; Sat, 16 Jun 2012 20:24:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7A32DE5431 for ; Sat, 16 Jun 2012 20:24:25 +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: <1339878252.66c41adb5505545fde9654e196fd803c3e6c1c5d.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master 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: 66c41adb5505545fde9654e196fd803c3e6c1c5d X-VCS-Branch: master Date: Sat, 16 Jun 2012 20:24:25 +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: 28d12715-2bb9-4bff-bed2-5dcacb077e46 X-Archives-Hash: 611194c9d394e515ce5c706ffa892630 commit: 66c41adb5505545fde9654e196fd803c3e6c1c5d Author: Zac Medico gentoo org> AuthorDate: Sat Jun 16 20:24:12 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Jun 16 20:24:12 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D66c41adb depgraph: _autounmask in _highest_pkg_cache key --- 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 5eece98..83c17ac 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -3465,7 +3465,7 @@ class depgraph(object): return =20 def _select_pkg_highest_available(self, root, atom, onlydeps=3DFalse): - cache_key =3D (root, atom, atom.unevaluated_atom, onlydeps) + cache_key =3D (root, atom, atom.unevaluated_atom, onlydeps, self._dyna= mic_config._autounmask) ret =3D self._dynamic_config._highest_pkg_cache.get(cache_key) if ret is not None: pkg, existing =3D ret