X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=madison;h=5a17892b5c6480b0f76779ed36669721e2a875b4;hb=950d3a6f5d3733d912a9e9b586d8de7d9405db7b;hp=e15572cb38973cde1b6067c02b1f085dccb67b30;hpb=613b92636db6c204f6985f3b1231429eb7b29733;p=dak.git diff --git a/madison b/madison index e15572cb..5a17892b 100755 --- a/madison +++ b/madison @@ -1,8 +1,8 @@ #!/usr/bin/env python # Display information about package(s) (suite, version, etc.) -# Copyright (C) 2000, 2001, 2002, 2003, 2004 James Troup -# $Id: madison,v 1.31 2004-11-27 18:00:16 troup Exp $ +# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 James Troup +# $Id: madison,v 1.33 2005-11-15 09:50:32 ajt 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 @@ -20,10 +20,10 @@ ################################################################################ -# And, lo, a great and menacing voice rose from the depths, and with -# great wrath and vehemence it's voice boomed across the -# land... ``hehehehehehe... that *tickles*'' -# -- aj on IRC +# ooo, elmo has "special powers" +# ooo, does he have lasers that shoot out of his eyes? +# dunno +# maybe he can turn invisible? that'd sure help with improved transparency! ################################################################################ @@ -187,9 +187,9 @@ SELECT s.source, s.version, 'source', su.suite_name, c.name, m.name for arch in arches: sys.stdout.write("%s %s %s\n" % (pkg, version, arch)); if Options["GreaterOrEqual"]: - print "\ndep-retry %s (>= %s)" % (pkg, highver[pkg]) + print "\n%s (>= %s)" % (pkg, highver[pkg]) if Options["GreaterThan"]: - print "\ndep-retry %s (>> %s)" % (pkg, highver[pkg]) + print "\n%s (>> %s)" % (pkg, highver[pkg]) if not results: sys.exit(1);