X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fprocess_unchecked.py;h=87c11d49fe193a0aa96da89cf41c9cb88b4995af;hb=1e9716e68398727fcbda2153e7a2fc6fb9bb8575;hp=0a12eacabde747c504d0c8e11b62f9fe7e1d02fb;hpb=886228a319cf00e80feb24aaf49ecc2db995b243;p=dak.git diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 0a12eaca..87c11d49 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -437,6 +437,15 @@ def check_files(): deb_file.close() # Can't continue, none of the checks on control would work. continue + + # Check for mandantory "Description:" + deb_file.seek ( 0 ) + try: + apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))["Description"] + '\n' + except: + reject("%s: Missing Description in binary package" % (f)) + continue + deb_file.close() # Check for mandatory fields @@ -1576,7 +1585,10 @@ def main(): changes_files.remove(f) if changes_files == []: - utils.fubar("Need at least one .changes file as an argument.") + if Cnf["Dinstall::Options::Directory"] == "": + utils.fubar("Need at least one .changes file as an argument.") + else: + sys.exit(0) # Check that we aren't going to clash with the daily cron job