From: James Troup Date: Fri, 2 Mar 2001 02:46:02 +0000 (+0000) Subject: Disable action for now. X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=faf42c1d777c994b83c27152e1d18c38ce7aa4f0;p=dak.git Disable action for now. --- diff --git a/cindy b/cindy index af437038..fc80afd5 100755 --- a/cindy +++ b/cindy @@ -1,8 +1,8 @@ #!/usr/bin/env python # Output override files for apt-ftparchive and indices/ -# Copyright (C) 2000 James Troup -# $Id: cindy,v 1.1 2001-01-16 21:52:37 troup Exp $ +# Copyright (C) 2000, 2001 James Troup +# $Id: cindy,v 1.2 2001-03-02 02:46:02 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 @@ -73,21 +73,22 @@ def process(suite, component, type): if not packages.has_key(package): if not src_packages.has_key(package): print "DELETING: %s" % (package); - projectB.query("DELETE FROM override WHERE package = '%s' AND suite = %s AND component = %s AND type = %s" - % (package, suite_id, component_id, type_id)); + #projectB.query("DELETE FROM override WHERE package = '%s' AND suite = %s AND component = %s AND type = %s" + #% (package, suite_id, component_id, type_id)); else: print "MAKING SOURCE: %s" % (package); - projectB.query("DELETE FROM override WHERE package = '%s' AND suite = %s AND component = %s AND type = %s" - % (package, suite_id, component_id, type_id)); + #projectB.query("DELETE FROM override WHERE package = '%s' AND suite = %s AND component = %s AND type = %s" + #% (package, suite_id, component_id, type_id)); # Then if source doesn't already have a copy, insert it into source q = projectB.query("SELECT package FROM override WHERE package = '%s' AND suite = %s AND component = %s AND type = %s" % (package, suite_id, component_id, dsc_type_id)); if q.getresult() == []: - projectB.query("INSERT INTO override (package, suite, component, priority, section, type, maintainer) VALUES ('%s', %s, %s, %s, %s, %s, '%s')" % (package, suite_id, component_id, i[1], i[2], dsc_type_id, i[3])); + #projectB.query("INSERT INTO override (package, suite, component, priority, section, type, maintainer) VALUES ('%s', %s, %s, %s, %s, %s, '%s')" % (package, suite_id, component_id, i[1], i[2], dsc_type_id, i[3])); + print "(nop)" else: # dsc if not src_packages.has_key(package): print "DELETING: %s" % (package); - projectB.query("DELETE FROM override WHERE package = '%s' AND suite = %s AND component = %s AND type = %s" - % (package, suite_id, component_id, type_id)); + #projectB.query("DELETE FROM override WHERE package = '%s' AND suite = %s AND component = %s AND type = %s" + #% (package, suite_id, component_id, type_id)); projectB.query("COMMIT WORK");