From 8e70b841bb5320e7e369e0e7d7568d91412f1713 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 18 Feb 2006 19:18:31 +0000 Subject: Split out a vardbapi.update_ents() method and leave it unused for the moment since it's not currently being used properly anyway (see bug 122089). svn path=/main/trunk/; revision=2731 --- pym/portage.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'pym/portage.py') diff --git a/pym/portage.py b/pym/portage.py index 9ead23fdb..cf238850c 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -4362,15 +4362,20 @@ class vardbapi(dbapi): os.rename(old_eb_path+".ebuild", new_eb_path+".ebuild") write_atomic(os.path.join(newpath, "CATEGORY"), mynewcat+"\n") + fixdbentries([mylist], newpath) - dbdir = self.root+VDB_PATH + def update_ents(self, update_iter): + """Run fixdbentries on all installed packages (time consuming). Like + fixpackages, this should be run from a helper script and display + a progress indicator.""" + dbdir = os.path.join(self.root, VDB_PATH) for catdir in listdir(dbdir): catdir = dbdir+"/"+catdir if os.path.isdir(catdir): for pkgdir in listdir(catdir): pkgdir = catdir+"/"+pkgdir if os.path.isdir(pkgdir): - fixdbentries([mylist], pkgdir) + fixdbentries(update_iter, pkgdir) def move_slot_ent(self,mylist): pkg=mylist[1] -- cgit v1.2.3-1-g7c22