From f1da06467b7cc48f67ad7e77cae92e448e8f509e Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 4 Mar 2006 06:35:16 +0000 Subject: [PATCH] Rename the global updates do_upgrade() function to parse_updates(). svn path=/main/trunk/; revision=2810 --- pym/portage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage.py b/pym/portage.py index 66a695655..8a33d155f 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -6734,7 +6734,7 @@ for x in mtimedb.keys(): #,"porttree":portagetree(root,virts),"bintree":binarytree(root,virts)} features=settings["FEATURES"].split() -def do_upgrade(mykey, mycontent): +def parse_updates(mycontent): """Valid updates are returned as a list of split update commands.""" myupd = [] errors = [] @@ -6875,7 +6875,7 @@ def global_updates(): writemsg(green("Performing Global Updates: ")+bold(mykey)+"\n") writemsg("(Could take a couple of minutes if you have a lot of binary packages.)\n") writemsg(" "+bold(".")+"='update pass' "+bold("*")+"='binary update' "+bold("@")+"='/var/db move'\n"+" "+bold("s")+"='/var/db SLOT move' "+bold("S")+"='binary SLOT move' "+bold("p")+"='update /etc/portage/package.*'\n") - valid_updates, errors = do_upgrade(mykey, mycontent) + valid_updates, errors = parse_updates(mycontent) myupd.extend(valid_updates) print len(valid_updates) * "." if len(errors) == 0: -- 2.26.2