X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fprocess_unchecked.py;h=fab21cbf4492a7d3bf4447e0dbf28be6c793e911;hb=4db4a1577f7971458d41966083b82e46d50b8a04;hp=7ff9a0f34bef9ae21bd5aa9953d5f8ede986d461;hpb=0c8e82cef114ecfcfee6e6a5ec1dfdfd585f5556;p=dak.git diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 7ff9a0f3..fab21cbf 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -52,7 +52,7 @@ from debian_bundle import deb822 from daklib.dbconn import * from daklib.binary import Binary from daklib import daklog -from daklib import queue +from daklib.queue import * from daklib import utils from daklib.textutils import fix_maintainer from daklib.dak_exceptions import * @@ -433,10 +433,16 @@ def acknowledge_new(u, summary, short_summary): # the .changes file. def process_it(changes_file): + global Logger + cnf = Config() + holding = Holding() + u = Upload() u.pkg.changes_file = changes_file + u.pkg.directory = os.getcwd() + u.logger = Logger # Some defaults in case we can't fully process the .changes file u.pkg.changes["maintainer2047"] = cnf["Dinstall::MyEmailAddress"] @@ -466,18 +472,19 @@ def process_it(changes_file): # Absolutize the filename to avoid the requirement of being in the # same directory as the .changes file. - copy_to_holding(os.path.abspath(changes_file)) + holding.copy_to_holding(os.path.abspath(changes_file)) # Relativize the filename so we use the copy in holding # rather than the original... changespath = os.path.basename(u.pkg.changes_file) - changes["fingerprint"] = utils.check_signature(changespath, reject) + (u.pkg.changes["fingerprint"], rejects) = utils.check_signature(changespath) - if changes["fingerprint"]: + if u.pkg.changes["fingerprint"]: valid_changes_p = u.load_changes(changespath) else: valid_changes_p = False + u.rejects.extend(rejects) if valid_changes_p: while u.reprocess: