X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fcruft_report.py;h=73619d590395bb00f189fbdc6e5b7f0bd377fbaa;hb=ed2d1928a25b95eb69616cf10bedd02c40740d8d;hp=cc475f5dcabb45a1f4845308b0aad9a78b79e0bc;hpb=59c7c406ddc6d5feee95bd05ada41c5d72d0eaea;p=dak.git diff --git a/dak/cruft_report.py b/dak/cruft_report.py index cc475f5d..73619d59 100755 --- a/dak/cruft_report.py +++ b/dak/cruft_report.py @@ -358,7 +358,9 @@ def main (): # Set up checks based on mode if Options["Mode"] == "daily": - checks = [ "nbs", "nviu", "nvit", "obsolete source" ] + checks = [ "nbs", "nviu", "nvit" ] + # 'obsolete source' is broken since the introduction of dak dominate + #checks = [ "nbs", "nviu", "nvit", "obsolete source" ] elif Options["Mode"] == "full": checks = [ "nbs", "nviu", "nvit", "obsolete source", "nfu", "dubious nbs", "bnb", "bms", "anais" ] else: @@ -386,7 +388,7 @@ def main (): bin_not_built = {} if "bnb" in checks: - bins_in_suite = get_suite_binaries(suite_name, session) + bins_in_suite = get_suite_binaries(suite, session) # Checks based on the Sources files components = cnf.ValueList("Suite::%s::Components" % (suite_name))