summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-04 20:30:17 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-04 20:30:17 +0000
commit2a94d9259c94b2579d4b3729670a1f299f5c7c09 (patch)
tree9cbe648a55931a2168ce81080289672bf06dfa37 /pym
parenteb9fa5ef6e15cc77836d298db737e51ef603230c (diff)
downloadportage-2a94d9259c94b2579d4b3729670a1f299f5c7c09.tar.gz
portage-2a94d9259c94b2579d4b3729670a1f299f5c7c09.tar.bz2
portage-2a94d9259c94b2579d4b3729670a1f299f5c7c09.zip
Bug #261082 - Fix --getbinpkgonly code in binarytree._populate() to
update the aux_get cache when it's appropriate for a remote package to override a local package. svn path=/main/trunk/; revision=12747
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/bintree.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py
index 40886a55b..9bd8eb92e 100644
--- a/pym/portage/dbapi/bintree.py
+++ b/pym/portage/dbapi/bintree.py
@@ -725,6 +725,9 @@ class binarytree(object):
break
if identical:
del self._remotepkgs[cpv]
+ else:
+ # Override the local package in the aux_get cache.
+ self.dbapi._aux_cache[cpv] = remote_metadata
else:
# Local package instances override remote instances.
for cpv in metadata: