]> git.decadent.org.uk Git - dak.git/commitdiff
Fix utils.build_file_list() for 3.x source packages
authorRaphael Hertzog <hertzog@debian.org>
Sat, 28 Feb 2009 22:38:34 +0000 (23:38 +0100)
committerRaphaël Hertzog <hertzog@debian.org>
Mon, 26 Oct 2009 23:43:32 +0000 (00:43 +0100)
Let utils.build_file_list() know that we understand newer
formats like 3.0 (quilt) or 3.0 (native).

Signed-off-by: Raphael Hertzog <hertzog@debian.org>
daklib/utils.py

index 23c6318dfaa3ec9a0c9d800a77dc2253b4444895..9f244963dc7cdf8e6ac29e24b350197e11ac240e 100755 (executable)
@@ -536,10 +536,10 @@ def build_file_list(changes, is_a_dsc=0, field="files", hashname="md5sum"):
         format = format[:2]
 
     if is_a_dsc:
-        # format = (1,0) are the only formats we currently accept,
         # format = (0,0) are missing format headers of which we still
         # have some in the archive.
-        if format != (1,0) and format != (0,0):
+        if format != (1,0) and format != (0,0) and \
+           format != (3,0,"quilt") and format != (3,0,"native"):
             raise UnknownFormatError, "%s" % (changes.get("format","0.0"))
     else:
         if (format < (1,5) or format > (1,8)):