From 386b8e180e28b9d5c65595b0cde7cd48fc7d0b74 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Tue, 7 Apr 2009 22:51:52 +0000 Subject: [PATCH] cruft_report: Hack: skip debian-installer on kfreebsd Doesn't exist yet. --- dak/cruft_report.py | 2 ++ 1 file changed, 2 insertions(+) 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() -- 2.39.2