X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=madison;h=93eaa922b609c88fb6c61d2408dc1d4a13b6b179;hb=c8dcfcc759a71e3705a33cc72dbf918d3cb11c64;hp=1ce965d13be125cc57fefcabe4a6a0b1d45d110b;hpb=b77044c2e1855ffb8eb1a696c12e5d2b40d014e4;p=dak.git diff --git a/madison b/madison index 1ce965d1..93eaa922 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 James Troup -# $Id: madison,v 1.23 2003-01-02 18:11:20 troup Exp $ +# Copyright (C) 2000, 2001, 2002, 2003 James Troup +# $Id: madison,v 1.27 2003-03-14 19:04:07 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 @@ -27,7 +27,7 @@ ################################################################################ -import pg, sys; +import os, pg, sys; import utils, db_access; import apt_pkg; @@ -48,8 +48,8 @@ Display information about PACKAGE(s). -s, --suite=SUITE only show info for this suite -S, --source-and-binary show info for the binary children of source pkgs -Both ARCH and SUITE can be space seperated lists, e.g. - --architecture=\"m68k i386\"""" +Both ARCH and SUITE can be comma (or space) seperated lists, e.g. + --architecture=m68k,i386""" sys.exit(exit_code) ################################################################################ @@ -81,6 +81,10 @@ def main (): projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"])); db_access.init(Cnf, projectB); + # If cron.daily is running; warn the user that our output might seem strange + if os.path.exists(os.path.join(Cnf["Dir::Root"], "Archive_Maintenance_In_Progress")): + utils.warn("Archive maintenance is in progress; database inconsistencies are possible."); + # Parse -a/--architecture, -s/--suite (con_suites, con_architectures, con_components, check_source) = \ utils.parse_args(Options); @@ -93,9 +97,10 @@ def main (): if Options["Source-And-Binary"]: new_packages = []; for package in packages: - q = projectB.query("SELECT DISTINCT package FROM binaries WHERE EXISTS (SELECT s.source FROM source s WHERE binaries.source = s.id AND s.source %s '%s')" % (comparison_operator, package)); + q = projectB.query("SELECT DISTINCT b.package FROM binaries b, bin_associations ba, suite su, source s WHERE b.source = s.id AND su.id = ba.suite AND b.id = ba.bin AND s.source %s '%s' %s" % (comparison_operator, package, con_suites)); new_packages.extend(map(lambda x: x[0], q.getresult())); - new_packages.append(package); + if package not in new_packages: + new_packages.append(package); packages = new_packages; results = 0;