summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-08-09 11:09:38 -0700
committerJoshua Lock <josh@linux.intel.com>2011-08-10 18:10:37 -0700
commitba9f2fe496eec0a221b563ffc9bb76eca592192f (patch)
treea903b044acb8024209bd5cdd321488365178f544
parent705d14d1e1108e0544c7eab827f1242f0839add9 (diff)
downloadbitbake-ba9f2fe496eec0a221b563ffc9bb76eca592192f.tar.gz
bb/ui/crumbs/tasklistmodel: fix some typos and add comments to mark()
Two similarly named variables in the mark() method resulted in the wrong variable being used in a couple of places. This patch adresses this in several ways: 1) Renames the variables to be less similar 2) Uses the correct variables 3) Adds some coments to document the methods intent Partially addresses [YOCTO #1355] Signed-off-by: Joshua Lock <josh@linux.intel.com>
-rw-r--r--lib/bb/ui/crumbs/tasklistmodel.py22
1 files changed, 15 insertions, 7 deletions
diff --git a/lib/bb/ui/crumbs/tasklistmodel.py b/lib/bb/ui/crumbs/tasklistmodel.py
index 3e097579f..96814c217 100644
--- a/lib/bb/ui/crumbs/tasklistmodel.py
+++ b/lib/bb/ui/crumbs/tasklistmodel.py
@@ -316,9 +316,13 @@ class TaskListModel(gtk.ListStore):
def mark(self, opath):
usersel = {}
removed = []
+
it = self.get_iter_first()
- name = self[opath][self.COL_NAME]
+ # The name of the item we're removing, so that we can use it to find
+ # other items which either depend on it, or were brought in by it
+ marked_name = self[opath][self.COL_NAME]
+ # Remove the passed item
self.remove_item_path(opath)
# Remove all dependent packages, update binb
@@ -330,7 +334,7 @@ class TaskListModel(gtk.ListStore):
deps = self[path][self.COL_DEPS]
binb = self[path][self.COL_BINB]
itype = self[path][self.COL_TYPE]
- iname = self[path][self.COL_NAME]
+ itname = self[path][self.COL_NAME]
# We ignore anything that isn't a package
if not itype == "package":
@@ -341,16 +345,20 @@ class TaskListModel(gtk.ListStore):
# is to save its name and re-mark it for inclusion once dependency
# processing is complete
if binb == "User Selected":
- usersel[iname] = self[path][self.COL_IMG]
+ usersel[itname] = self[path][self.COL_IMG]
+ # If the iterated item is included and depends on the removed
+ # item it should also be removed.
# FIXME: need to ensure partial name matching doesn't happen
- if inc and deps.count(name) and name not in removed:
+ if inc and deps.count(marked_name) and itname not in removed:
# found a dependency, remove it
- removed.append(name)
+ removed.append(itname)
self.mark(path)
- if inc and binb.count(name):
- bib = self.find_alt_dependency(name)
+ # If the iterated item was brought in by the removed (passed) item
+ # try and find an alternative dependee and update the binb column
+ if inc and binb.count(marked_name):
+ bib = self.find_alt_dependency(itname)
self[path][self.COL_BINB] = bib
# Re-add any removed user selected items