From: Zac Medico Date: Tue, 2 Mar 2010 21:08:24 +0000 (-0000) Subject: Fix vardbapi.move_ent and aux_update to clear relevant caches. (trunk r15489) X-Git-Tag: v2.1.8~33 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=f71a93a5267994aac465af3b3eb49fc8721c8347;p=portage.git Fix vardbapi.move_ent and aux_update to clear relevant caches. (trunk r15489) svn path=/main/branches/2.1.7/; revision=15690 --- 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)