]> git.decadent.org.uk Git - dak.git/blob - dak/check_transitions.py
89ac4c7f61a4cedeccabe9cbeceba20b22ba3fc7
[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     Check the release managers transition file for correctness and outdated transitions
66   -h, --help                show this help and exit.
67   -n, --no-action           don't do anything"""
68     sys.exit(exit_code)
69
70 ################################################################################
71
72 def main():
73     global Cnf
74
75     init()
76     
77     # Only check if there is a file defined (and existant) with checks. It's a little bit
78     # specific to Debian, not much use for others, so return early there.
79     if not Cnf.has_key("Dinstall::Reject::ReleaseTransitions") or not os.path.exists("%s" % (Cnf["Dinstall::Reject::ReleaseTransitions"])):
80         daklib.utils.warn("Dinstall::Reject::ReleaseTransitions not defined or file %s not existant." %
81                           (Cnf["Dinstall::Reject::ReleaseTransitions"]))
82         sys.exit(1)
83     
84     # Parse the yaml file
85     sourcefile = file(Cnf["Dinstall::Reject::ReleaseTransitions"], 'r')
86     sourcecontent = sourcefile.read()
87     try:
88         transitions = load(sourcecontent)
89     except error, msg:
90         # This shouldn't happen, the release team has a wrapper to check the file, but better
91         # safe then sorry
92         daklib.utils.warn("Not checking transitions, the transitions file is broken: %s." % (msg))
93         sys.exit(2)
94
95     to_dump = 0
96     to_remove = []
97     # Now look through all defined transitions
98     for trans in transitions:
99         t = transitions[trans]
100         source = t["source"]
101         new_vers = t["new"]
102
103         # Will be None if nothing is in testing.
104         curvers = daklib.database.get_testing_version(source)
105
106         print """
107 Looking at transition: %s
108  Source:      %s
109  New Version: %s
110  Responsible: %s
111  Reason:      %s
112  Blocked Packages (total: %d): %s
113 """ % (trans, source, new_vers, t["rm"], t["reason"], len(t["packages"]), ", ".join(t["packages"]))
114
115         if curvers and apt_pkg.VersionCompare(new_vers, curvers) == 1:
116             # This is still valid, the current version in database is older than
117             # the new version we wait for
118             print "This transition is still ongoing"
119         else:
120             print "This transition is over, the target package reached testing, removing"
121             print "%s wanted version: %s, has %s" % (source, new_vers, curvers)
122             to_remove.append(trans)
123             to_dump = 1
124         print "-------------------------------------------------------------------------"
125
126     if to_dump:
127         for remove in to_remove:
128             if Options["No-Action"]:
129                 print "I: I would remove the %s transition" % (remove)
130             else:
131                 del transitions[remove]
132         if not Options["No-Action"]:
133             destfile = file(Cnf["Dinstall::Reject::ReleaseTransitions"], 'w')
134             dump(transitions, destfile)
135
136 ################################################################################
137
138 if __name__ == '__main__':
139     main()