X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fqueue.py;h=20e04bd6fa969fd65d6a76a29e9b23a5229d4ac5;hb=379a8dd982fa7a20cdb6efaa39998872b3868eee;hp=514e3226ced30ee048d3ff22843f57ae7a7d4a8b;hpb=2c345145c5984f3cc9ea995da4c510c600237a35;p=dak.git diff --git a/daklib/queue.py b/daklib/queue.py index 514e3226..20e04bd6 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -1180,6 +1180,9 @@ class Upload(object): if not self.pkg.changes["architecture"].has_key("source"): return True + if session is None: + session = DBConn().session() + (status, reason) = self.load_dsc(action=action) if not status: self.rejects.append(reason) @@ -1217,7 +1220,11 @@ class Upload(object): # Only a limited list of source formats are allowed in each suite for dist in self.pkg.changes["distribution"].keys(): - allowed = [ x.format_name for x in get_suite_src_formats(dist, session) ] + suite = get_suite(dist, session=session) + if not suite: + self.rejects.append("%s: cannot find suite %s when checking source formats" % (dsc_filename, dist)) + continue + allowed = [ x.format_name for x in suite.srcformats ] if self.pkg.dsc["format"] not in allowed: self.rejects.append("%s: source format '%s' not allowed in %s (accepted: %s) " % (dsc_filename, self.pkg.dsc["format"], dist, ", ".join(allowed))) @@ -2000,22 +2007,23 @@ distribution.""" """ cnf = Config() - announcetemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.announce') + + # Skip all of this if not sending mail to avoid confusing people + if cnf.has_key("Dinstall::Options::No-Mail") and cnf["Dinstall::Options::No-Mail"]: + return "" # Only do announcements for source uploads with a recent dpkg-dev installed if float(self.pkg.changes.get("format", 0)) < 1.6 or not \ self.pkg.changes["architecture"].has_key("source"): return "" + announcetemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.announce') + lists_done = {} summary = "" self.Subst["__SHORT_SUMMARY__"] = short_summary - # Skip all of this if not sending mail to avoid confusing people - if cnf.has_key("Dinstall::Options::No-Mail") and cnf["Dinstall::Options::No-Mail"]: - return summary - for dist in self.pkg.changes["distribution"].keys(): suite = get_suite(dist) if suite is None: continue