]> git.decadent.org.uk Git - dak.git/commitdiff
Add some missing variables
authorJames Troup <james@nocrew.org>
Fri, 15 Feb 2002 22:42:52 +0000 (22:42 +0000)
committerJames Troup <james@nocrew.org>
Fri, 15 Feb 2002 22:42:52 +0000 (22:42 +0000)
ashley

diff --git a/ashley b/ashley
index 38ee3ca98f007068d32106ded720ee2fafeccd3d..be54f2b94b4c8d3767f77982d13bcb550a0661e8 100755 (executable)
--- a/ashley
+++ b/ashley
@@ -2,7 +2,7 @@
 
 # Dump variables from a .katie file to stdout
 # Copyright (C) 2001  James Troup <james@nocrew.org>
-# $Id: ashley,v 1.1 2002-02-12 23:08:07 troup Exp $
+# $Id: ashley,v 1.2 2002-02-15 22:42:52 troup Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -36,15 +36,15 @@ def main():
         changes = k.pkg.changes;
         print " Changes:";
         # Mandatory changes fields
-        for i in [ "source", "version", "maintainer", "urgency" ]:
+        for i in [ "source", "version", "maintainer", "urgency", "changedby822", "changedbyname", "maintainername", "maintaineremail", "fingerprint" ]:
             print "  %s: %s" % (string.capitalize(i), changes[i]);
             del changes[i];
         # Mandatory changes lists
-        for i in [ "distribution", "architecture" ]:
+        for i in [ "distribution", "architecture", "closes" ]:
             print "  %s: %s" % (string.capitalize(i), string.join(changes[i].keys()));
             del changes[i];
         # Optional changes fields
-        for i in [ "changed-by", "changedby822", "maintainer822", "filecontents" ]:
+        for i in [ "changed-by", "maintainer822", "filecontents", "format" ]:
             if changes.has_key(i):
                 print "  %s: %s" % (string.capitalize(i), changes[i]);
                 del changes[i];
@@ -54,7 +54,7 @@ def main():
 
         dsc = k.pkg.dsc;
         print " Dsc:";
-        for i in [ "source", "version", "maintainer" ]:
+        for i in [ "source", "version", "maintainer", "fingerprint", "uploaders" ]:
             if dsc.has_key(i):
                 print "  %s: %s" % (string.capitalize(i), dsc[i]);
                 del dsc[i];