]> git.decadent.org.uk Git - dak.git/commitdiff
drop generation of md5sum output in release files
authorJoerg Jaspert <joerg@debian.org>
Sun, 20 Feb 2011 17:51:14 +0000 (18:51 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sun, 20 Feb 2011 17:51:14 +0000 (18:51 +0100)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/generate_releases.py

index 49859c61a8f43d48cb2aad25dbf908dc0ddaed78..5644b957646e5280dbeedfc5230b199ad2e4f77d 100755 (executable)
@@ -108,7 +108,7 @@ def compressnames (tree,type,file):
 decompressors = { 'zcat' : gzip.GzipFile,
                   'bzip2' : bz2.BZ2File }
 
-def print_md5sha_files (tree, files, hashop):
+def print_hash_files (tree, files, hashop):
     path = Cnf["Dir::Root"] + tree + "/"
     for name in files:
         hashvalue = ""
@@ -141,14 +141,11 @@ def print_md5sha_files (tree, files, hashop):
         else:
             out.write(" %s %8d %s\n" % (hashvalue, hashlen, name))
 
-def print_md5_files (tree, files):
-    print_md5sha_files (tree, files, apt_pkg.md5sum)
-
 def print_sha1_files (tree, files):
-    print_md5sha_files (tree, files, apt_pkg.sha1sum)
+    print_hash_files (tree, files, apt_pkg.sha1sum)
 
 def print_sha256_files (tree, files):
-    print_md5sha_files (tree, files, apt_pkg.sha256sum)
+    print_hash_files (tree, files, apt_pkg.sha256sum)
 
 def write_release_file (relpath, suite, component, origin, label, arch, version="", suite_suffix="", notautomatic="", butautomaticupgrades=""):
     try:
@@ -371,8 +368,6 @@ def main ():
         else:
             print "ALERT: no tree/bindirectory for %s" % (tree)
 
-        out.write("MD5Sum:\n")
-        print_md5_files(tree, files)
         out.write("SHA1:\n")
         print_sha1_files(tree, files)
         out.write("SHA256:\n")