]> git.donarmstrong.com Git - dak.git/commitdiff
Remove copychanges from dak.conf
authorJoerg Jaspert <joerg@debian.org>
Sun, 19 Sep 2010 14:32:21 +0000 (16:32 +0200)
committerJoerg Jaspert <joerg@debian.org>
Sun, 19 Sep 2010 14:32:21 +0000 (16:32 +0200)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
config/debian/dak.conf
daklib/queue.py

index 0ba61e394800bf559c7b218fc8e028a50c3f60f8..a4dd96316d8034768b39f66d9cfedfd753063599 100644 (file)
@@ -205,7 +205,6 @@ Suite
          contrib;
          non-free;
        };
-       CopyChanges "dists/proposed-updates/";
        CommentsDir "/srv/ftp-master.debian.org/queue/p-u-new/COMMENTS/";
        OverrideSuite "stable";
        ValidTime 604800; // 7 days
index c379b0bcf8c7d92c3292d1de3bae8a48805788a9..e3874b620583f9c293de9ab7c22e136a0c954333 100755 (executable)
@@ -2051,10 +2051,9 @@ distribution."""
             stats.accept_bytes += float(entry["size"])
 
         # Copy the .changes file across for suite which need it.
-        copy_changes = {}
-        for suite_name in self.pkg.changes["distribution"].keys():
-            if cnf.has_key("Suite::%s::CopyChanges" % (suite_name)):
-                copy_changes[cnf["Suite::%s::CopyChanges" % (suite_name)]] = ""
+        copy_changes = dict([(x.copychanges, '')
+                             for x in session.query(Suite).filter(Suite.suite_name.in_([self.pkg.changes["distribution"].keys()])).all()
+                             if x.copychanges is not None])
 
         for dest in copy_changes.keys():
             utils.copy(self.pkg.changes_file, os.path.join(cnf["Dir::Root"], dest))