2007-02-08 Anthony Towns <ajt@debian.org>
+ * dak/generate_releases.py (print_sha256_files): new function.
+ (main): use it.
+
* dak/process_accepted.py (stable_install): fix name of template
mail.
def print_sha1_files (tree, files):
print_md5sha_files (tree, files, apt_pkg.sha1sum)
+def print_sha256_files (tree, files):
+ print_md5sha_files (tree, files, apt_pkg.sha256sum)
+
################################################################################
def main ():
print_md5_files(tree, files)
out.write("SHA1:\n")
print_sha1_files(tree, files)
+ out.write("SHA256:\n")
+ print_sha256_files(tree, files)
out.close()
if Cnf.has_key("Dinstall::SigningKeyring"):