[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] dak/new_security_install.py: Attempt to tidy up the buildd queue.



The buildd team believes that the fact that the packages are in the security
pool after this point should be good enough.

Signed-off-by: Mark Hymers <mhy@debian.org>
---
 ChangeLog                   |    6 ++++++
 dak/new_security_install.py |   12 ++++++++++++
 2 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f83eb3e..6d8284a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-27  Mark Hymers  <mhy@debian.org>
+
+	* dak/new_security_install.py: Attempt to tidy up the buildd queue.  The
+	buildd team believes that the fact that the packages are in the security
+	pool after this point should be good enough.
+
 2008-11-25  Joerg Jaspert  <joerg@debian.org>
 
 	* dak/process_unchecked.py (queue_(un)embargo): (Hopefully) enable
diff --git a/dak/new_security_install.py b/dak/new_security_install.py
index 99dae8c..ce6543d 100755
--- a/dak/new_security_install.py
+++ b/dak/new_security_install.py
@@ -282,6 +282,7 @@ def actually_upload(changes_files):
         print "Moving files to UploadQueue"
         for filename in uploads[uri]:
             utils.copy(filename, Cnf["Dir::Upload"])
+            remove_from_buildd(suites, filename)
         #spawn("lftp -c 'open %s; cd %s; put %s'" % (host, path, file_list))
 
     if not Options["No-Action"]:
@@ -292,6 +293,17 @@ def actually_upload(changes_files):
                 file.write(" ".join([source, version])+'\n')
         file.close()
 
+def remove_from_buildd(suites, filename):
+    """Check the buildd dir for each suite and remove the file if needed"""
+    builddbase = Cnf["Dir::QueueBuild"]
+    filebase = os.path.basename(filename)
+    for s in suites:
+        try:
+            os.unlink(os.path.join(builddbase, s, filebase))
+        except OSError, e:
+            utils.warn("Problem removing %s from buildd queue %s [%s]" % (filebase, s, str(e)))
+
+
 def generate_advisory(template):
     global changes, advisory
 
-- 
1.5.6.5



Reply to: