X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=madison;h=d2879795b400713e597bf41740e4f17f2749d3c8;hb=3e4d6edf1d0e697cae141be043054d1109364fec;hp=3799746377cf3d023d5c5dede054c6e7733ee66c;hpb=96814560a5a4df0954f9e112cfc33bce760f0d88;p=dak.git diff --git a/madison b/madison index 37997463..d2879795 100755 --- a/madison +++ b/madison @@ -2,7 +2,7 @@ # Display information about package(s) (suite, version, etc.) # Copyright (C) 2000, 2001, 2002, 2003 James Troup -# $Id: madison,v 1.25 2003-02-10 18:24:24 troup Exp $ +# $Id: madison,v 1.26 2003-03-05 15:58:04 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; @@ -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,7 +97,7 @@ def main (): if Options["Source-And-Binary"]: new_packages = []; for package in packages: - q = projectB.query("SELECT DISTINCT package FROM binaries JOIN source ON binaries.source = source.id WHERE source.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())); if package not in new_packages: new_packages.append(package);