]> git.decadent.org.uk Git - dak.git/commitdiff
2004-11-27 James Troup <james@nocrew.org> * jennifer (check_distributions): support...
authorJames Troup <james@nocrew.org>
Sat, 27 Nov 2004 19:24:22 +0000 (19:24 +0000)
committerJames Troup <james@nocrew.org>
Sat, 27 Nov 2004 19:24:22 +0000 (19:24 +0000)
jennifer

index fcf41d28b795bff13f814c7aca48258b1b2519e7..4b3bf44a386adf433cd1d43f29f6eb5bcbbc5dda 100755 (executable)
--- a/jennifer
+++ b/jennifer
@@ -2,7 +2,7 @@
 
 # Checks Debian packages from Incoming
 # Copyright (C) 2000, 2001, 2002, 2003, 2004  James Troup <james@nocrew.org>
-# $Id: jennifer,v 1.53 2004-11-27 17:59:47 troup Exp $
+# $Id: jennifer,v 1.54 2004-11-27 19:24:22 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
@@ -45,7 +45,7 @@ re_strip_revision = re.compile(r"-([^-]+)$");
 ################################################################################
 
 # Globals
-jennifer_version = "$Revision: 1.53 $";
+jennifer_version = "$Revision: 1.54 $";
 
 Cnf = None;
 Options = None;
@@ -288,6 +288,10 @@ def check_distributions():
             if changes["distribution"].has_key(suite):
                 del changes["distribution"][suite];
                 reject("Ignoring %s as a target suite." % (suite), "Warning: ");
+        elif type == "reject":
+            suite = args[1];
+            if changes["distribution"].has_key(suite):
+                reject("Uploads to %s are not accepted." % (suite));
 
     # Ensure there is (still) a target distribution
     if changes["distribution"].keys() == []: