summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-11-03 19:11:37 +0000
committerZac Medico <zmedico@gentoo.org>2007-11-03 19:11:37 +0000
commit6b8689901005ab83789d4b5797bf2e89e59c8a8e (patch)
treea81e624c35f6fad61b5e4b6466adee1bce755d1e /pym
parent91bca744b0795e088979eca36785c3d09e90d324 (diff)
downloadportage-6b8689901005ab83789d4b5797bf2e89e59c8a8e.tar.gz
portage-6b8689901005ab83789d4b5797bf2e89e59c8a8e.tar.bz2
portage-6b8689901005ab83789d4b5797bf2e89e59c8a8e.zip
Fix update_config_files() so that it uses update_dbentry()
to handle update commands since that already supports slotmove commands for SLOT atoms. svn path=/main/trunk/; revision=8397
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/update.py61
1 files changed, 30 insertions, 31 deletions
diff --git a/pym/portage/update.py b/pym/portage/update.py
index 0ba48ed4d..36108dd22 100644
--- a/pym/portage/update.py
+++ b/pym/portage/update.py
@@ -176,40 +176,39 @@ def update_config_files(config_root, protect, protect_mask, update_iter):
if file_contents.has_key(x):
del file_contents[x]
continue
- worldlist = grabfile(os.path.join(config_root, WORLD_FILE))
- # TODO: handle slotmove commands for SLOT stoms
+ worldlist = grabfile(os.path.join(config_root, WORLD_FILE))
+ modified = False
for update_cmd in update_iter:
- if update_cmd[0] == "move":
- old_value, new_value = update_cmd[1], update_cmd[2]
- #update world entries:
- for x in range(0,len(worldlist)):
- #update world entries, if any.
- worldlist[x] = \
- dep_transform(worldlist[x], old_value, new_value)
-
- #update /etc/portage/packages.*
- for x in file_contents:
- for mypos in range(0,len(file_contents[x])):
- line = file_contents[x][mypos]
- if line[0] == "#" or not line.strip():
- continue
- myatom = line.split()[0]
- if myatom.startswith("-"):
- # package.mask supports incrementals
- myatom = myatom[1:]
- if not isvalidatom(myatom):
- continue
- key = dep_getkey(myatom)
- if key == old_value:
- file_contents[x][mypos] = \
- line.replace(old_value, new_value)
- update_files[x] = 1
- sys.stdout.write("p")
- sys.stdout.flush()
+ for pos, atom in enumerate(worldlist):
+ new_atom = update_dbentry(update_cmd, atom)
+ if atom != new_atom:
+ worldlist[pos] = new_atom
+ modified = True
+ if modified:
+ worldlist.sort()
+ write_atomic(os.path.join(config_root, WORLD_FILE),
+ "\n".join(worldlist)+"\n")
- worldlist.sort()
- write_atomic(os.path.join(config_root, WORLD_FILE), "\n".join(worldlist)+"\n")
+ # update /etc/portage/packages.*
+ ignore_line_re = re.compile(r'^#|^\s*$')
+ for update_cmd in update_iter:
+ for x, contents in file_contents.iteritems():
+ for pos, line in enumerate(contents):
+ if ignore_line_re.match(line):
+ continue
+ atom = line.split()[0]
+ if atom.startswith("-"):
+ # package.mask supports incrementals
+ atom = atom[1:]
+ if not isvalidatom(atom):
+ continue
+ new_atom = update_dbentry(update_cmd, atom)
+ if atom != new_atom:
+ contents[pos] = line.replace(atom, new_atom)
+ update_files[x] = 1
+ sys.stdout.write("p")
+ sys.stdout.flush()
protect_obj = ConfigProtect(
config_root, protect, protect_mask)