X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=ashley;h=12b860a63f68865cb904ce2f046d28ba283b1301;hb=d889e5903fc6da2f7ba081dca17c457a20db5fa0;hp=38ee3ca98f007068d32106ded720ee2fafeccd3d;hpb=e38ec49727ef15c6dcad16f7ebdb56e8e254d568;p=dak.git diff --git a/ashley b/ashley index 38ee3ca9..12b860a6 100755 --- a/ashley +++ b/ashley @@ -1,8 +1,8 @@ #!/usr/bin/env python # Dump variables from a .katie file to stdout -# Copyright (C) 2001 James Troup -# $Id: ashley,v 1.1 2002-02-12 23:08:07 troup Exp $ +# Copyright (C) 2001, 2002 James Troup +# $Id: ashley,v 1.4 2002-05-08 11:08:45 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 @@ -25,6 +25,8 @@ def main(): Cnf = utils.get_conf() k = katie.Katie(Cnf); for arg in sys.argv[1:]: + if arg[-6:] == ".katie": + arg = arg[:-6]+".changes"; if arg[-8:] != ".changes": utils.warn("Skipping '%s', unknown file type." % (arg)); continue; @@ -36,15 +38,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 +56,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];