]> git.decadent.org.uk Git - dak.git/commitdiff
reject on syntax error in Checksum-* filelist
authorThomas Viehmann <tv@beamnet.de>
Sat, 3 May 2008 07:04:31 +0000 (07:04 +0000)
committerThomas Viehmann <tv@beamnet.de>
Sat, 3 May 2008 07:04:31 +0000 (07:04 +0000)
ChangeLog
dak/process_unchecked.py

index 12ad5189ad600a19c104f16ad7a06a3d7f865ff6..fc6e9f88276864682abe594ba6d03c265dd55091 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-03  Thomas Viehmann  <tv@beamnet.de>
+
+       * dak/process_unchecked.py (check_hashes): Reject on error while
+       parsing Checksums-*.
+
 2008-05-02  Joerg Jaspert  <joerg@debian.org>
 
        * config/debian/pseudo-packages*: Removed listarchives, closes #468667
index 8bfc25cee1f9f6203e804af39c7ed8aa1180c582..abf53fd103ed8abf2fb391eff49977ff28fa8714 100644 (file)
@@ -947,6 +947,8 @@ def check_hashes ():
             check_hash(".changes %s" % (h), fs, h, f, files)
         except daklib.utils.no_files_exc:
             reject("No Checksums-%s: field in .changes" % (h))
+        except daklib.utils.changes_parse_error_exc, line:
+            reject("parse error for Checksums-%s in .changes, can't grok: %s." % (h, line))
 
         if "source" not in changes["architecture"]: continue
 
@@ -955,6 +957,8 @@ def check_hashes ():
             check_hash(".dsc %s" % (h), fs, h, f, dsc_files)
         except daklib.utils.no_files_exc:
             reject("No Checksums-%s: field in .dsc" % (h))
+        except daklib.utils.changes_parse_error_exc, line:
+            reject("parse error for Checksums-%s in .dsc, can't grok: %s." % (h, line))
 
 ################################################################################