X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lisa;h=724360a8aeeaa6c4f49852de01f7780a5d1d4377;hb=9a89f745ed13e05507dd5297fa4a860c4fdc2b2e;hp=c1d8b0a9d1f6b8c4ba5c1e303be6dc56d7b61827;hpb=699462cf1b150b68161349a6593b12512b65d39d;p=dak.git diff --git a/lisa b/lisa index c1d8b0a9..724360a8 100755 --- a/lisa +++ b/lisa @@ -1,8 +1,8 @@ #!/usr/bin/env python # Handles NEW and BYHAND packages -# Copyright (C) 2001 James Troup -# $Id: lisa,v 1.6 2002-04-16 14:47:12 troup Exp $ +# Copyright (C) 2001, 2002 James Troup +# $Id: lisa,v 1.10 2002-05-10 00:24:23 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 @@ -58,7 +58,7 @@ import apt_pkg, apt_inst; import db_access, fernanda, katie, logging, utils; # Globals -lisa_version = "$Revision: 1.6 $"; +lisa_version = "$Revision: 1.10 $"; Cnf = None; Options = None; @@ -485,7 +485,7 @@ def do_bxa_notification(): summary = summary + "Package: %s\n" % (control.Find("Package")); summary = summary + "Description: %s\n" % (control.Find("Description")); Katie.Subst["__BINARY_DESCRIPTIONS__"] = summary; - bxa_mail = utils.TemplateSubst(Katie.Subst,open(Cnf["Dir::TemplatesDir"]+"/lisa.bxa_notification","r").read()); + bxa_mail = utils.TemplateSubst(Katie.Subst,Cnf["Dir::Templates"]+"/lisa.bxa_notification"); utils.send_mail(bxa_mail,""); ################################################################################ @@ -510,7 +510,7 @@ def add_overrides (new): projectB.query("COMMIT WORK"); - if Cnf.FindI("Dinstall::BXANotify"): + if Cnf.FindB("Dinstall::BXANotify"): do_bxa_notification(); ################################################################################ @@ -572,9 +572,10 @@ def do_new(): elif answer == 'E': new = edit_overrides (new); elif answer == 'M': - Katie.do_reject(1, Options["Manual-Reject"]); - os.unlink(Katie.pkg.changes_file[:-8]+".katie"); - done = 1; + aborted = Katie.do_reject(1, Options["Manual-Reject"]); + if not aborted: + os.unlink(Katie.pkg.changes_file[:-8]+".katie"); + done = 1; elif answer == 'S': done = 1; elif answer == 'Q': @@ -759,6 +760,9 @@ def main(): Katie.Subst["__BCC__"] = bcc; for changes_file in changes_files: + changes_file = utils.validate_changes_file_arg(changes_file, 0); + if not changes_file: + continue; print "\n" + changes_file; do_pkg (changes_file);