X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=madison;h=1ce965d13be125cc57fefcabe4a6a0b1d45d110b;hb=0c3d0a4f90abe114030020f2eacd0bc6dd756b7b;hp=34532c8ddeb1963d7f6c1f93be3e4d40de1b30a9;hpb=c846e77a848d60dd115f00faa0d9a854161d99eb;p=dak.git diff --git a/madison b/madison index 34532c8d..1ce965d1 100755 --- a/madison +++ b/madison @@ -2,7 +2,7 @@ # Display information about package(s) (suite, version, etc.) # Copyright (C) 2000, 2001, 2002 James Troup -# $Id: madison,v 1.21 2002-10-16 02:47:32 troup Exp $ +# $Id: madison,v 1.23 2003-01-02 18:11:20 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 @@ -38,27 +38,15 @@ projectB = None; ################################################################################ -def arch_compare (a, b): - if a == "source" and b == "source": - return 0; - elif a == "source": - return -1; - elif b == "source": - return 1; - - return cmp (a, b); - -################################################################################ - def usage (exit_code=0): print """Usage: madison [OPTION] PACKAGE[...] Display information about PACKAGE(s). -a, --architecture=ARCH only show info for this architecture + -h, --help show this help and exit -r, --regex treat PACKAGE as a regex -s, --suite=SUITE only show info for this suite -S, --source-and-binary show info for the binary children of source pkgs - -h, --help show this help and exit Both ARCH and SUITE can be space seperated lists, e.g. --architecture=\"m68k i386\"""" @@ -143,7 +131,7 @@ def main (): for suite in suites: sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite)); arches = d[pkg][version][suite]; - arches.sort(arch_compare); + arches.sort(utils.arch_compare_sw); sys.stdout.write(", ".join(arches)); sys.stdout.write('\n');