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