]> git.decadent.org.uk Git - dak.git/commitdiff
Merge commit 'tomv_w/master' into merge
authorJoerg Jaspert <joerg@debian.org>
Tue, 14 Oct 2008 19:41:17 +0000 (21:41 +0200)
committerJoerg Jaspert <joerg@debian.org>
Tue, 14 Oct 2008 19:41:17 +0000 (21:41 +0200)
* commit 'tomv_w/master':
  EVIL SINGLE TAB CHARACTER IN LAST COMMIT EMERGENCY FIX
  changelog
  bug #
  produce changes without signature, fix delay calculation also for status

Signed-off-by: Joerg Jaspert <joerg@debian.org>
ChangeLog
dak/show_deferred.py

index b3034433de3fc8ea5b830ecf643762ebbe03169b..e57705e2f5e30d484ee905c72b767a0a92eed95b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-10-14  Thomas Viehmann <tv@beamnet.de>
+
+       * dak/show_deferred.py: produce .changes and improve status
+
 2008-10-07  Joerg Jaspert  <joerg@debian.org>
 
        * config/debian/cron.dinstall: Only keep the last 60 days of
index 4ffa5e6ec021ca2cd591a5c6ac9b83e51a21f432..bb29fdda6b19c8743bd7bc4ed28883dff877045c 100755 (executable)
@@ -28,6 +28,14 @@ from daklib import database
 from daklib import queue
 from daklib import utils
 
+################################################################################
+### work around bug #487902 in debian-python 0.1.10
+deb822.Changes._multivalued_fields = {
+            "files": [ "md5sum", "size", "section", "priority", "name" ],
+            "checksums-sha1": ["sha1", "size", "name"],
+            "checksums-sha256": ["sha256", "size", "name"],
+          }
+
 ################################################################################
 
 row_number = 1
@@ -146,7 +154,7 @@ def get_upload_data(changesfn):
                 if os.path.exists(qfn):
                     os.symlink(qfn,lfn)
                     os.chmod(qfn, 0644)
-    return (delaydays*24*60*60+remainingtime, changesname, delay, uploader, achanges.get('closes').split(),achanges)
+    return (max(delaydays-1,0)*24*60*60+remainingtime, changesname, delay, uploader, achanges.get('closes').split(),achanges)
 
 def list_uploads(filelist):
     uploads = map(get_upload_data, filelist)
@@ -166,13 +174,13 @@ def list_uploads(filelist):
         f = open(fn,"w")
         try:
             for u in uploads:
-                print >> f, """Changes: %s
-Location: DEFERRED
+                print >> f, "Changes: %s"%u[1]
+                fields = """Location: DEFERRED
 Delayed-Until: %s
-Delay-Remaining: %s"""%(u[1],time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(time.time()+u[0])),u[2])
-                for k,v in u[5].items():
-                    if not k.startswith('Checksums-') and k != 'Files':
-                        print >> f, "%s: %s"%(k,v)
+Delay-Remaining: %s"""%(time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(time.time()+u[0])),u[2])
+                print >> f, fields
+                print >> f, str(u[5]).rstrip()
+                open(os.path.join(Cnf["Show-Deferred::LinkPath"],u[1]),"w").write(str(u[5])+fields+'\n')
                 print >> f
             f.close()
             os.rename(os.path.join(Cnf["Show-Deferred::LinkPath"],'.status.tmp'),
@@ -231,7 +239,7 @@ def main():
         # remove dead links
         for r,d,f in os.walk(Cnf["Show-Deferred::LinkPath"]):
             for af in f:
-                af = os.path.join(r,af)
-                if (not os.path.exists(af) or
+                afp = os.path.join(r,af)
+                if (not os.path.exists(afp) or
                     (af.endswith('.changes') and af not in available_changes)):
-                    os.unlink(af)
+                    os.unlink(afp)