X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fcheck_overrides.py;fp=dak%2Fcheck_overrides.py;h=e833aa75ff4a479b420ac6b82e97554c12e1877c;hb=7307848b321c5c4f05c87ee18a049163ef299ed1;hp=622067879f8cfa590077284062e4657aa4077df8;hpb=d092db5a64fc5ee4143493a7f2bbb327077e08a3;p=dak.git diff --git a/dak/check_overrides.py b/dak/check_overrides.py index 62206787..e833aa75 100755 --- a/dak/check_overrides.py +++ b/dak/check_overrides.py @@ -345,26 +345,25 @@ def main (): else: Logger = daklog.Logger("check-overrides", 1) - for osuite in cnf.SubTree("Check-Overrides::OverrideSuites").List(): - if "1" != cnf["Check-Overrides::OverrideSuites::%s::Process" % osuite]: - continue - - osuite = osuite.lower() - + for suite in session.query(Suite).filter(Suite.overrideprocess==True): originosuite = None - originremark = "" - try: - originosuite = cnf["Check-Overrides::OverrideSuites::%s::OriginSuite" % osuite] - originosuite = originosuite.lower() + originremark = '' + + if suite.overrideorigin is not None: + originosuite = get_suite(suite.overrideorigin, session) + if originosuite is None: + utils.fubar("%s has an override origin suite of %s but it doesn't exist!" % (suite.suite_name, suite.overrideorigin)) + originosuite = originosuite.suite_name originremark = " taking missing from %s" % originosuite - except KeyError: - pass - print "Processing %s%s..." % (osuite, originremark) - suiteobj = get_suite(osuite) - # Get a list of all suites that use the override file of 'osuite' - ocodename = suiteobj.codename + print "Processing %s%s..." % (suite.suite_name, originremark) + + # Get a list of all suites that use the override file of 'suite.suite_name' as + # well as the suite + ocodename = suite.codename suiteids = [x.suite_id for x in session.query(Suite).filter(Suite.overridecodename == ocodename).all()] + if suite.suite_id not in suiteids: + suiteids.append(suite.suite_id) if len(suiteids) < 1: utils.fubar("Couldn't find id's of all suites: %s" % suiteids) @@ -381,9 +380,9 @@ def main (): for otype in otypes: print "Processing %s [%s - %s]" \ - % (osuite, component_name, otype) + % (suite.suite_name, component_name, otype) sys.stdout.flush() - process(osuite, suiteids, originosuite, component_name, otype, session) + process(suite.suite_name, suiteids, originosuite, component_name, otype, session) Logger.close()