]> git.decadent.org.uk Git - dak.git/commitdiff
s/Maintainers/Uploaders/ [YAY for the dpkg developers; they're my HEROES]
authorJames Troup <james@nocrew.org>
Sun, 24 Jun 2001 23:17:43 +0000 (23:17 +0000)
committerJames Troup <james@nocrew.org>
Sun, 24 Jun 2001 23:17:43 +0000 (23:17 +0000)
katie

diff --git a/katie b/katie
index 0277650b9b01bcc077526b8b1c892aea5181d483..03c3298d722fe0cb5509b8fe6727f323695e48e2 100755 (executable)
--- a/katie
+++ b/katie
@@ -2,7 +2,7 @@
 
 # Installs Debian packaes
 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
-# $Id: katie,v 1.49 2001-06-23 19:16:27 troup Exp $
+# $Id: katie,v 1.50 2001-06-24 23:17:43 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
@@ -114,13 +114,13 @@ class nmu_p:
         if dsc_name == changes["maintainername"] and (changes["changedbyname"] == "" or changes["changedbyname"] == dsc_name):
             return 0;
         
-        if dsc.has_key("maintainers"):
-            maintainers = string.split(dsc["maintainers"], ",");
-            maintainernames = {};
-            for i in maintainers:
+        if dsc.has_key("uploaders"):
+            uploaders = string.split(dsc["uploaders"], ",");
+            uploadernames = {};
+            for i in uploaders:
                 (rfc822, name, email) = utils.fix_maintainer (string.strip(i));
-                maintainernames[name] = "";
-            if maintainernames.has_key(changes["changedbyname"]):
+                uploadernames[name] = "";
+            if uploadernames.has_key(changes["changedbyname"]):
                 return 0;
 
         # Some group maintained packages (e.g. Debian QA) are never NMU's
@@ -1332,7 +1332,7 @@ def main():
     Subst = {}
     Subst["__ADMIN_ADDRESS__"] = Cnf["Dinstall::MyAdminAddress"];
     Subst["__BUG_SERVER__"] = Cnf["Dinstall::BugServer"];
-    bcc = "X-Katie: $Revision: 1.49 $"
+    bcc = "X-Katie: $Revision: 1.50 $"
     if Cnf.has_key("Dinstall::Bcc"):
         Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"]);
     else: