From f71a93a5267994aac465af3b3eb49fc8721c8347 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 2 Mar 2010 21:08:24 +0000 Subject: [PATCH] Fix vardbapi.move_ent and aux_update to clear relevant caches. (trunk r15489) svn path=/main/branches/2.1.7/; revision=15690 --- pym/portage/dbapi/vartree.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 1c08c7007..75143a318 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -220,6 +220,8 @@ class vardbapi(dbapi): #dest already exists; keep this puppy where it is. continue _movefile(origpath, newpath, mysettings=self.settings) + self._clear_pkg_cache(self._dblink(mycpv)) + self._clear_pkg_cache(self._dblink(mynewcpv)) # We need to rename the ebuild now. old_pf = catsplit(mycpv)[1] @@ -616,6 +618,7 @@ class vardbapi(dbapi): treetype="vartree", vartree=self.vartree) if not mylink.exists(): raise KeyError(cpv) + self._clear_pkg_cache(mylink) for k, v in values.items(): if v: mylink.setfile(k, v) -- 2.26.2