From: Luca Falavigna <dktrkranz@debian.org>
Date: Sat, 28 Aug 2010 14:17:10 +0000 (+0000)
Subject: daklib/queue.py: send mails to sponsors too
X-Git-Tag: debian-r/squeeze~623^2
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=373708ec90ca29b27f2123ac79700955e6e6c220;p=dak.git

daklib/queue.py: send mails to sponsors too

sponsoremail is not adjusted anymore, so check whether
a given upload has been sponsored in order to fill that
field. This addresses bug #568369.

Signed-off-by: Luca Falavigna <dktrkranz@debian.org>
---

diff --git a/daklib/queue.py b/daklib/queue.py
index 8d814e86..afd32778 100755
--- a/daklib/queue.py
+++ b/daklib/queue.py
@@ -329,8 +329,11 @@ class Upload(object):
             self.Subst["__MAINTAINER_TO__"] = self.pkg.changes["maintainer2047"]
             self.Subst["__MAINTAINER__"] = self.pkg.changes.get("maintainer", "Unknown")
 
-        if "sponsoremail" in self.pkg.changes:
+        session = DBConn().session()
+        fpr = get_fingerprint(self.pkg.changes['fingerprint'], session)
+        if self.check_if_upload_is_sponsored("%s@debian.org" % fpr.uid.uid, fpr.uid.name):
             self.Subst["__MAINTAINER_TO__"] += ", %s" % self.pkg.changes["sponsoremail"]
+        session.close()
 
         if cnf.has_key("Dinstall::TrackingServer") and self.pkg.changes.has_key("source"):
             self.Subst["__MAINTAINER_TO__"] += "\nBcc: %s@%s" % (self.pkg.changes["source"], cnf["Dinstall::TrackingServer"])