X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=jeri;h=91f51930dc9a9e606ea11bc4c692fa7b7ab3d1d6;hb=fb3d44c5e9b4a010f56cffd8fd5e35d6221805f9;hp=72b2077e6285e517480092209a7186c02db48288;hpb=1c22942feaaa4487e9e5c28da39d9b9ec467523c;p=dak.git diff --git a/jeri b/jeri index 72b2077e..91f51930 100755 --- a/jeri +++ b/jeri @@ -2,7 +2,7 @@ # Dependency check proposed-updates # Copyright (C) 2001, 2002, 2004 James Troup -# $Id: jeri,v 1.13 2004-06-24 00:41:39 troup Exp $ +# $Id: jeri,v 1.15 2005-02-08 22:43:45 troup Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -20,13 +20,12 @@ ################################################################################ -# ARRRGGGHHH -# what's wrong with me!?!?!? -# i was just nice to some mormon doorknockers!!! -# AJ?!?! -# i know!!!!! -# I'm gonna have to kick your ass when you come over -# aj: GET THE HELL OUT OF THE CABAL! :P +# | > amd64 is more mature than even some released architectures +# | +# | This might be true of the architecture, unfortunately it seems to be the +# | exact opposite for most of the people involved with it. +# +# <1089213290.24029.6.camel@descent.netsplit.com> ################################################################################ @@ -80,7 +79,7 @@ def check_dep (depends, dep_type, check_archs, filename, files): if stable[dep].has_key(arch): if apt_pkg.CheckDep(stable[dep][arch], constraint, version): if Options["debug"]: - print "Found %s as a real package." % (utils.pp_dep(parsed_dep)); + print "Found %s as a real package." % (utils.pp_deps(parsed_dep)); unsat = 0; break; # As a virtual? @@ -88,7 +87,7 @@ def check_dep (depends, dep_type, check_archs, filename, files): if stable_virtual[dep].has_key(arch): if not constraint and not version: if Options["debug"]: - print "Found %s as a virtual package." % (utils.pp_dep(parsed_dep)); + print "Found %s as a virtual package." % (utils.pp_deps(parsed_dep)); unsat = 0; break; # As part of the same .changes? @@ -96,12 +95,12 @@ def check_dep (depends, dep_type, check_archs, filename, files): dep_filename = "%s_%s_%s.deb" % (dep, epochless_version, arch); if files.has_key(dep_filename): if Options["debug"]: - print "Found %s in the same upload." % (utils.pp_dep(parsed_dep)); + print "Found %s in the same upload." % (utils.pp_deps(parsed_dep)); unsat = 0; break; # Not found... # [FIXME: must be a better way ... ] - error = "%s not found. [Real: " % (utils.pp_dep(parsed_dep)) + error = "%s not found. [Real: " % (utils.pp_deps(parsed_dep)) if stable.has_key(dep): if stable[dep].has_key(arch): error += "%s:%s:%s" % (dep, arch, stable[dep][arch]); @@ -126,7 +125,7 @@ def check_dep (depends, dep_type, check_archs, filename, files): unsat.append(error); if unsat: - sys.stderr.write("MWAAP! %s: '%s' %s can not be satisifed:\n" % (filename, utils.pp_dep(parsed_dep), dep_type)); + sys.stderr.write("MWAAP! %s: '%s' %s can not be satisifed:\n" % (filename, utils.pp_deps(parsed_dep), dep_type)); for error in unsat: sys.stderr.write(" %s\n" % (error)); pkg_unsat = 1;