X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=kelly;h=3d226fb672018725376efe98d67a0f120a0d393c;hb=68431a39b0b2d6fe1bb763a9b688bc36bd21de69;hp=80f1b204c272f9a65cd86642c5ddf4bfe717e505;hpb=c846e77a848d60dd115f00faa0d9a854161d99eb;p=dak.git diff --git a/kelly b/kelly index 80f1b204..3d226fb6 100755 --- a/kelly +++ b/kelly @@ -2,7 +2,7 @@ # Installs Debian packages # Copyright (C) 2000, 2001, 2002 James Troup -# $Id: kelly,v 1.1 2002-10-16 02:47:32 troup Exp $ +# $Id: kelly,v 1.4 2003-01-02 18:12:05 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 @@ -39,7 +39,7 @@ import db_access, katie, logging, utils; ############################################################################### # Globals -kelly_version = "$Revision: 1.1 $"; +kelly_version = "$Revision: 1.4 $"; Cnf = None; Options = None; @@ -125,7 +125,7 @@ def check(): elif files[file]["type"] == "dsc": reject(Katie.check_source_against_db(file)); (reject_msg, is_in_incoming) = Katie.check_dsc_against_db(file); - reject(reject_msg); + reject(reject_msg, ""); # Check the package is still in the override tables for suite in changes["distribution"].keys(): @@ -155,6 +155,13 @@ def init(): changes_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv); Options = Cnf.SubTree("Dinstall::Options") + if Options["Help"]: + usage(); + + if Options["Version"]: + print "kelly %s" % (kelly_version); + sys.exit(0); + Katie = katie.Katie(Cnf); projectB = Katie.projectB; @@ -170,7 +177,7 @@ def init(): ############################################################################### def usage (exit_code=0): - print """Usage: dinstall [OPTION]... [CHANGES]... + print """Usage: kelly [OPTION]... [CHANGES]... -a, --automatic automatic run -h, --help show this help and exit. -n, --no-action don't do anything @@ -369,17 +376,18 @@ def install (): install_bytes += float(files[file]["size"]); # Copy the .changes file across for suite which need it. - copy_changes_p = copy_katie_p = 0; + copy_changes = {}; + copy_katie = {}; for suite in changes["distribution"].keys(): if Cnf.has_key("Suite::%s::CopyChanges" % (suite)): - copy_changes_p = 1; + copy_changes[Cnf["Suite::%s::CopyChanges" % (suite)]] = ""; # and the .katie file... if Cnf.has_key("Suite::%s::CopyKatie" % (suite)): - copy_katie_p = 1; - if copy_changes_p: - utils.copy(pkg.changes_file, Cnf["Dir::Root"] + Cnf["Suite::%s::CopyChanges" % (suite)]); - if copy_katie_p: - utils.copy(Katie.pkg.changes_file[:-8]+".katie", Cnf["Suite::%s::CopyKatie" % (suite)]); + copy_katie[Cnf["Suite::%s::CopyKatie" % (suite)]] = ""; + for dest in copy_changes.keys(): + utils.copy(pkg.changes_file, Cnf["Dir::Root"] + dest); + for dest in copy_katie.keys(): + utils.copy(Katie.pkg.changes_file[:-8]+".katie", dest); projectB.query("COMMIT WORK"); @@ -551,13 +559,6 @@ def main(): changes_files = init(); - if Options["Help"]: - usage(); - - if Options["Version"]: - print "kelly %s" % (kelly_version); - sys.exit(0); - # -n/--dry-run invalidates some other options which would involve things happening if Options["No-Action"]: Options["Automatic"] = "";