3 """ Dependency check proposed-updates """
4 # Copyright (C) 2001, 2002, 2004, 2006 James Troup <james@nocrew.org>
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.
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.
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
20 ################################################################################
22 # | > amd64 is more mature than even some released architectures
24 # | This might be true of the architecture, unfortunately it seems to be the
25 # | exact opposite for most of the people involved with it.
27 # <1089213290.24029.6.camel@descent.netsplit.com>
29 ################################################################################
32 import apt_pkg, apt_inst
33 from daklib import database
34 from daklib import utils
35 from daklib.regexes import re_no_epoch
37 ################################################################################
46 ################################################################################
48 def usage (exit_code=0):
49 print """Usage: dak check-proposed-updates [OPTION] <CHANGES FILE | DEB FILE | ADMIN FILE>[...]
50 (Very) Basic dependency checking for proposed-updates.
52 -q, --quiet be quieter about what is being done
53 -v, --verbose be more verbose about what is being done
54 -h, --help show this help and exit
56 Need either changes files, deb files or an admin.txt file with a '.joey' suffix."""
59 ################################################################################
61 def d_test (dict, key, positive, negative):
69 ################################################################################
71 def check_dep (depends, dep_type, check_archs, filename, files):
73 for arch in check_archs:
74 for parsed_dep in apt_pkg.ParseDepends(depends):
76 for atom in parsed_dep:
77 (dep, version, constraint) = atom
79 if stable.has_key(dep):
80 if stable[dep].has_key(arch):
81 if apt_pkg.CheckDep(stable[dep][arch], constraint, version):
83 print "Found %s as a real package." % (utils.pp_deps(parsed_dep))
87 if stable_virtual.has_key(dep):
88 if stable_virtual[dep].has_key(arch):
89 if not constraint and not version:
91 print "Found %s as a virtual package." % (utils.pp_deps(parsed_dep))
94 # As part of the same .changes?
95 epochless_version = re_no_epoch.sub('', version)
96 dep_filename = "%s_%s_%s.deb" % (dep, epochless_version, arch)
97 if files.has_key(dep_filename):
99 print "Found %s in the same upload." % (utils.pp_deps(parsed_dep))
103 # [FIXME: must be a better way ... ]
104 error = "%s not found. [Real: " % (utils.pp_deps(parsed_dep))
105 if stable.has_key(dep):
106 if stable[dep].has_key(arch):
107 error += "%s:%s:%s" % (dep, arch, stable[dep][arch])
109 error += "%s:-:-" % (dep)
112 error += ", Virtual: "
113 if stable_virtual.has_key(dep):
114 if stable_virtual[dep].has_key(arch):
115 error += "%s:%s" % (dep, arch)
120 error += ", Upload: "
121 if files.has_key(dep_filename):
129 sys.stderr.write("MWAAP! %s: '%s' %s can not be satisifed:\n" % (filename, utils.pp_deps(parsed_dep), dep_type))
131 sys.stderr.write(" %s\n" % (error))
136 def check_package(filename, files):
138 control = apt_pkg.ParseSection(apt_inst.debExtractControl(utils.open_file(filename)))
140 utils.warn("%s: debExtractControl() raised %s." % (filename, sys.exc_type))
142 Depends = control.Find("Depends")
143 Pre_Depends = control.Find("Pre-Depends")
144 #Recommends = control.Find("Recommends")
145 pkg_arch = control.Find("Architecture")
146 base_file = os.path.basename(filename)
147 if pkg_arch == "all":
148 check_archs = architectures
150 check_archs = [pkg_arch]
154 pkg_unsat += check_dep(Pre_Depends, "pre-dependency", check_archs, base_file, files)
157 pkg_unsat += check_dep(Depends, "dependency", check_archs, base_file, files)
159 #pkg_unsat += check_dep(Recommends, "recommendation", check_archs, base_file, files)
163 ################################################################################
165 def pass_fail (filename, result):
166 if not Options["quiet"]:
167 print "%s:" % (os.path.basename(filename)),
173 ################################################################################
175 def check_changes (filename):
177 changes = utils.parse_changes(filename)
178 files = utils.build_file_list(changes)
179 except ChangesUnicodeError:
180 utils.warn("Improperly encoded changes file, not utf-8")
183 utils.warn("Error parsing changes file '%s'" % (filename))
188 # Move to the pool directory
191 pool_dir = Cnf["Dir::Pool"] + '/' + utils.poolify(changes["source"], files[f]["component"])
195 for f in files.keys():
196 if f.endswith(".deb"):
197 result = check_package(f, files)
198 if Options["verbose"]:
200 changes_result += result
202 pass_fail (filename, changes_result)
207 ################################################################################
209 def check_deb (filename):
210 result = check_package(filename, {})
211 pass_fail(filename, result)
214 ################################################################################
216 def check_joey (filename):
217 f = utils.open_file(filename)
220 os.chdir("%s/dists/proposed-updates" % (Cnf["Dir::Root"]))
222 for line in f.readlines():
224 if line.find('install') != -1:
225 split_line = line.split()
226 if len(split_line) != 2:
227 utils.fubar("Parse error (not exactly 2 elements): %s" % (line))
228 install_type = split_line[0]
229 if install_type not in [ "install", "install-u", "sync-install" ]:
230 utils.fubar("Unknown install type ('%s') from: %s" % (install_type, line))
231 changes_filename = split_line[1]
233 print "Processing %s..." % (changes_filename)
234 check_changes(changes_filename)
239 ################################################################################
241 def parse_packages():
242 global stable, stable_virtual, architectures
244 # Parse the Packages files (since it's a sub-second operation on auric)
247 components = Cnf.ValueList("Suite::%s::Components" % (suite))
248 architectures = filter(utils.real_arch, database.get_suite_architectures(suite))
249 for component in components:
250 for architecture in architectures:
251 filename = "%s/dists/%s/%s/binary-%s/Packages" % (Cnf["Dir::Root"], suite, component, architecture)
252 packages = utils.open_file(filename, 'r')
253 Packages = apt_pkg.ParseTagFile(packages)
254 while Packages.Step():
255 package = Packages.Section.Find('Package')
256 version = Packages.Section.Find('Version')
257 provides = Packages.Section.Find('Provides')
258 if not stable.has_key(package):
260 stable[package][architecture] = version
262 for virtual_pkg in provides.split(","):
263 virtual_pkg = virtual_pkg.strip()
264 if not stable_virtual.has_key(virtual_pkg):
265 stable_virtual[virtual_pkg] = {}
266 stable_virtual[virtual_pkg][architecture] = "NA"
269 ################################################################################
272 global Cnf, projectB, Options
274 Cnf = utils.get_conf()
276 Arguments = [('d', "debug", "Check-Proposed-Updates::Options::Debug"),
277 ('q',"quiet","Check-Proposed-Updates::Options::Quiet"),
278 ('v',"verbose","Check-Proposed-Updates::Options::Verbose"),
279 ('h',"help","Check-Proposed-Updates::Options::Help")]
280 for i in [ "debug", "quiet", "verbose", "help" ]:
281 if not Cnf.has_key("Check-Proposed-Updates::Options::%s" % (i)):
282 Cnf["Check-Proposed-Updates::Options::%s" % (i)] = ""
284 arguments = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
285 Options = Cnf.SubTree("Check-Proposed-Updates::Options")
290 utils.fubar("need at least one package name as an argument.")
292 projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
293 database.init(Cnf, projectB)
295 print "Parsing packages files...",
300 if f.endswith(".changes"):
302 elif f.endswith(".deb"):
304 elif f.endswith(".joey"):
307 utils.fubar("Unrecognised file type: '%s'." % (f))
309 #######################################################################################
311 if __name__ == '__main__':