X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=cindy;h=35382033e4545ad486fd162889e620dc52801372;hb=fb4f73664b315abf14ecb2e140e772607a0761b8;hp=65ff19e83ec9f96e9f1c79c3fcb98f9f04c5eea4;hpb=ea3e80412db673367de2e4c32efb693beea96f4e;p=dak.git diff --git a/cindy b/cindy index 65ff19e8..35382033 100755 --- a/cindy +++ b/cindy @@ -1,8 +1,8 @@ #!/usr/bin/env python -# Output override files for apt-ftparchive and indices/ -# Copyright (C) 2000, 2001 James Troup -# $Id: cindy,v 1.7 2002-02-12 22:13:06 troup Exp $ +# Cruft checker for overrides +# Copyright (C) 2000, 2001, 2002 James Troup +# $Id: cindy,v 1.10 2002-05-23 09:54:23 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 @@ -20,7 +20,13 @@ ################################################################################ -# X-Listening-To: Sanitarium / Master of the Puppets - Metallica +###################################################################### +# NB: cindy is not a good idea with New Incoming as she doesn't take # +# into account accepted. You can minimize the impact of this by # +# running her immediately after katie but that's still racy because # +# lisa doesn't lock with katie. A better long term fix is the evil # +# plan for accepted to be in the DB. # +###################################################################### ################################################################################ @@ -106,7 +112,7 @@ def main (): for component in Cnf.SubTree("Component").List(): if component == "mixed": continue; # Ick - for type in Cnf.SubTree("OverrideType").List(): + for type in Cnf.ValueList("OverrideType"): print "Processing %s [%s - %s]..." % (suite, component, type); process(suite, component, type);