summaryrefslogtreecommitdiffstats
path: root/upgrade.py
diff options
context:
space:
mode:
Diffstat (limited to 'upgrade.py')
-rw-r--r--upgrade.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/upgrade.py b/upgrade.py
index f717599e3..68376146a 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -716,6 +716,19 @@ def upgradeFindPackages(intf, method, id, instPath, dir):
log(text)
id.grpset.hdrlist[new].select()
+ # firefox replaces mozilla/netscape (#137244)
+ if (id.grpset.hdrlist.has_key("firefox") and
+ not id.grpset.hdrlist["firefox"].isSelected()):
+ found = 0
+ for p in ("mozilla", "netscape-navigator", "netscape-communicator"):
+ mi = ts.dbMatch("name", p)
+ found += mi.count()
+ if found > 0:
+ text = "Upgrade: Found a graphical browser. Pulling in firefox"
+ id.upgradeDeps = "%s%s\n" %(id.upgradeDeps, text)
+ log(text)
+ id.grpset.hdrlist["firefox"].select()
+
# now some upgrade removal black list checking... there are things that
# if they were installed in the past, we want to remove them because
# they'll screw up the upgrade otherwise