From: Zac Medico Date: Sun, 28 Feb 2010 03:42:22 +0000 (-0000) Subject: Fix vardbapi.move_ent and aux_update to clear relevant caches. X-Git-Tag: v2.2_rc64~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=652a94233e65ba6a83929edc3319b0f7676bb77b;p=portage.git Fix vardbapi.move_ent and aux_update to clear relevant caches. svn path=/main/trunk/; revision=15489 --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 0ccc4ddd4..5d594803b 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -949,6 +949,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] @@ -1345,6 +1347,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)