From: Joerg Jaspert Date: Thu, 15 Jan 2009 00:44:38 +0000 (+0100) Subject: Merge commit 'stew/master' into merge X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=7132fa99d5e9754b353c58ecd69efac9b1ff86b9;p=dak.git Merge commit 'stew/master' into merge * commit 'stew/master': make examine_package check dependencies based on suite Get rid of non ascii character in source file. update dinstall.html for 4 daily dinstall runs fix removals rss feed when there are fewer than 16 removals Signed-off-by: Joerg Jaspert --- 7132fa99d5e9754b353c58ecd69efac9b1ff86b9 diff --cc dak/examine_package.py index c7ab7ad5,f7f3f0d5..49d18dc6 --- a/dak/examine_package.py +++ b/dak/examine_package.py @@@ -524,9 -527,11 +527,11 @@@ def main () if f.endswith(".changes"): check_changes(f) elif f.endswith(".deb") or f.endswith(".udeb"): - check_deb(file) - # default to unstable when we don't have a .changes file ++ # default to unstable when we don't have a .changes file + # perhaps this should be a command line option? - check_deb('unstable', file) ++ check_deb('unstable', file) elif f.endswith(".dsc"): - check_dsc(f) + check_dsc('unstable', f) else: utils.fubar("Unrecognised file type: '%s'." % (f)) finally: