From: Frank Lichtenheld Date: Tue, 7 Apr 2009 22:51:52 +0000 (+0000) Subject: cruft_report: Hack: skip debian-installer on kfreebsd X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=386b8e180e28b9d5c65595b0cde7cd48fc7d0b74;p=dak.git cruft_report: Hack: skip debian-installer on kfreebsd Doesn't exist yet. --- diff --git a/dak/cruft_report.py b/dak/cruft_report.py index b2b5836e..4c6d323e 100755 --- a/dak/cruft_report.py +++ b/dak/cruft_report.py @@ -428,6 +428,8 @@ def main (): for component in check_components: architectures = filter(utils.real_arch, database.get_suite_architectures(suite)) for architecture in architectures: + if component == 'main/debian-installer' and re.match("kfreebsd", architecture): + continue filename = "%s/dists/%s/%s/binary-%s/Packages.gz" % (Cnf["Dir::Root"], suite, component, architecture) # apt_pkg.ParseTagFile needs a real file handle (fd, temp_filename) = utils.temp_filename()