From d84f6c79157771b629985653796a95eada3b93d0 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 10 Oct 2006 08:35:40 +0000 Subject: Only do a slotmove on a slot dep atom if the slotmove atom has no operator (otherwise there's not enough information to perform the slotmove). svn path=/main/trunk/; revision=4647 --- pym/portage_update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pym') diff --git a/pym/portage_update.py b/pym/portage_update.py index bed74c35c..57aa8b43b 100644 --- a/pym/portage_update.py +++ b/pym/portage_update.py @@ -8,7 +8,7 @@ from portage_util import ConfigProtect, grabfile, new_protect_filename, \ normalize_path, write_atomic, writemsg from portage_exception import DirectoryNotFound, PortageException from portage_versions import ververify -from portage_dep import dep_getkey, isvalidatom, isjustname +from portage_dep import dep_getkey, get_operator, isvalidatom, isjustname from portage_const import USER_CONFIG_PATH, WORLD_FILE ignored_dbentries = ("CONTENTS", "environment.bz2") @@ -25,7 +25,7 @@ def update_dbentry(update_cmd, mycontent): else: return "".join(matchobj.groups()) mycontent = re.sub("(%s-)(\\S*)" % old_value, myreplace, mycontent) - elif update_cmd[0] == "slotmove": + elif update_cmd[0] == "slotmove" and get_operator(update_cmd[1]) is None: pkg, origslot, newslot = update_cmd[1:] old_value = "%s:%s" % (pkg, origslot) if mycontent.count(old_value): -- cgit v1.2.3-1-g7c22