]> git.decadent.org.uk Git - dak.git/commitdiff
rhona debugging code
authorAnthony Towns <aj@azure.humbug.org.au>
Fri, 25 Nov 2005 04:42:59 +0000 (04:42 +0000)
committerAnthony Towns <aj@azure.humbug.org.au>
Fri, 25 Nov 2005 04:42:59 +0000 (04:42 +0000)
ChangeLog
rhona

index 83e886504600a5cc1c38f8687d6c3b4788841ba6..37603347313f59c78450029fd0a4c0e98381f4bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
        works
        * jennifer: Re-enable .deb ar format checking
        * katie.py: Convert to +bX binNMU special casing
+       * rhona: Add some debug output when deleting binaries
 
 2005-11-15  Anthony Towns  <aj@erisian.com.au>
 
diff --git a/rhona b/rhona
index e3c7fc561a167dbe56f4948b10140064d7eaf2b1..409b5fe44f0c82ad9765e3c1d04cf1004fda825b 100755 (executable)
--- a/rhona
+++ b/rhona
@@ -2,7 +2,7 @@
 
 # rhona, cleans up unassociated binary and source packages
 # Copyright (C) 2000, 2001, 2002, 2003  James Troup <james@nocrew.org>
-# $Id: rhona,v 1.27 2003-09-07 13:52:20 troup Exp $
+# $Id: rhona,v 1.28 2005-11-25 04:42:59 ajt 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
@@ -178,6 +178,7 @@ def clean_binaries():
     if not Options["No-Action"]:
         before = time.time();
         sys.stdout.write("[Deleting from binaries table... ");
+        sys.stderr.write("DELETE FROM binaries WHERE EXISTS (SELECT 1 FROM files WHERE binaries.file = files.id AND files.last_used <= '%s')\n" % (delete_date));
         projectB.query("DELETE FROM binaries WHERE EXISTS (SELECT 1 FROM files WHERE binaries.file = files.id AND files.last_used <= '%s')" % (delete_date));
         sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before)));