]> git.decadent.org.uk Git - dak.git/commitdiff
only consider sourceful uploads for sponsor notification
authorThomas Viehmann <tv@beamnet.de>
Thu, 24 Apr 2008 21:49:30 +0000 (21:49 +0000)
committerThomas Viehmann <tv@beamnet.de>
Thu, 24 Apr 2008 21:49:30 +0000 (21:49 +0000)
dak/process_unchecked.py

index 82133068be56c33fb4d4b96b6908467eaafb14b5..6e62c431284b95790fe7f22b53fca747a5710b0e 100755 (executable)
@@ -1072,7 +1072,8 @@ def check_signed_by_key():
         if uid_name == "": sponsored = 1
     else:
         sponsored = 1
-        if daklib.utils.is_email_alias(uid_email):
+        if ("source" not in changes["architecture"] and
+            daklib.utils.is_email_alias(uid_email)):
             sponsor_addresses = daklib.utils.gpg_get_key_addresses(changes["fingerprint"])
             if (changes["maintaineremail"] not in sponsor_addresses and
                 changes["changedbyemail"] not in sponsor_addresses):