]> git.decadent.org.uk Git - dak.git/blob - dak/check_transitions.py
Fix a number of syntax errors. Also do not remove elements from a dict where we itera...
[dak.git] / dak / check_transitions.py
1 #!/usr/bin/env python
2
3 # Check the release managers transition file for correctness and outdated transitions
4 # Copyright (C) 2008 Joerg Jaspert <joerg@debian.org>
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 ################################################################################
21
22 # <elmo> if klecker.d.o died, I swear to god, I'm going to migrate to gentoo.
23
24 ################################################################################
25
26 import os, pg, sys
27 import apt_pkg
28 import daklib.database
29 import daklib.utils
30
31 from syck import *
32
33 # Globals
34 Cnf = None
35 Options = None
36 projectB = None
37
38 ################################################################################
39
40 def init():
41     global Cnf, Options, projectB
42
43     apt_pkg.init()
44
45     Cnf = daklib.utils.get_conf()
46
47     Arguments = [('h',"help","Dinstall::Options::Help"),
48                  ('n',"no-action","Dinstall::Options::No-Action")]
49
50     for i in ["help", "no-action"]:
51         Cnf["Dinstall::Options::%s" % (i)] = ""
52
53     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
54     daklib.database.init(Cnf, projectB)
55     
56     Options = Cnf.SubTree("Dinstall::Options")
57
58     if Options["Help"]:
59         usage()
60
61 ################################################################################
62
63 def usage (exit_code=0):
64     print """Usage: check_transitions [OPTION]...
65   -h, --help                show this help and exit.
66   -n, --no-action           don't do anything"""
67     sys.exit(exit_code)
68
69 ################################################################################
70
71 def main():
72     global Cnf
73
74     init()
75     
76     # Only check if there is a file defined (and existant) with checks. It's a little bit
77     # specific to Debian, not much use for others, so return early there.
78     if not Cnf.has_key("Dinstall::Reject::ReleaseTransitions") or not os.path.exists("%s" % (Cnf["Dinstall::Reject::ReleaseTransitions"])):
79         daklib.utils.warn("Dinstall::Reject::ReleaseTransitions not defined or file %s not existant." %
80                           (Cnf["Dinstall::Reject::ReleaseTransitions"]))
81         sys.exit(1)
82     
83     # Parse the yaml file
84     sourcefile = file(Cnf["Dinstall::Reject::ReleaseTransitions"], 'r')
85     sourcecontent = sourcefile.read()
86     try:
87         transitions = load(sourcecontent)
88     except error, msg:
89         # This shouldn't happen, the release team has a wrapper to check the file, but better
90         # safe then sorry
91         daklib.utils.warn("Not checking transitions, the transitions file is broken: %s." % (msg))
92         sys.exit(2)
93
94     to_dump = 0
95     to_remove = []
96     # Now look through all defined transitions
97     for trans in transitions:
98         t = transition[trans]
99         source = t["source"]
100         new_vers = t["new"]
101
102         # Will be None if nothing is in testing.
103         curvers = daklib.database.get_testing_version(source)
104
105         print """
106 Looking at transition: %s
107  Source:      %s
108  New Version: %s
109  Responsible: %s
110  Reason:      %s
111  Blocked Packages (total: %d): %s
112 """ % (trans, source, new_vers, t["rm"], t["reason"], len(t["packages"]), ", ".join(t["packages"]))
113
114         if curvers and apt_pkg.VersionCompare(new_vers, curvers) == 1:
115             # This is still valid, the current version in database is older than
116             # the new version we wait for
117             print "This transition is still ongoing"
118         else:
119             print "This transition is over, the target package reached testing, removing"
120             print "%s wanted version: %s, has %s" % (source, new_vers, curvers)
121             to_remove.append(trans)
122             to_dump = 1
123         print "-------------------------------------------------------------------------"
124
125     if to_dump:
126         for remove in to_remove:
127             del transitions[remove]
128         destfile = file(Cnf["Dinstall::Reject::ReleaseTransitions"], 'w')
129         dump(transitions, destfile)
130
131 ################################################################################
132
133 if __name__ == '__main__':
134     main()