X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=amber;h=4f1832adee18e517459ecc154182c4a19e0a8828;hb=9540d873fa78598454af57f5f8a4875969ed0439;hp=00bd0bafb5c98aa5b668c1a316238cf4bdd5c2f1;hpb=d1429a5ed3d1914ccc502ae146b32445967e9ba8;p=dak.git diff --git a/amber b/amber index 00bd0baf..4f1832ad 100755 --- a/amber +++ b/amber @@ -1,8 +1,8 @@ #!/usr/bin/env python # Wrapper for Debian Security team -# Copyright (C) 2002, 2003 James Troup -# $Id: amber,v 1.8 2003-03-14 19:06:02 troup Exp $ +# Copyright (C) 2002, 2003, 2004 James Troup +# $Id: amber,v 1.11 2005-11-26 07:52:06 ajt 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 @@ -64,7 +64,9 @@ def do_upload(changes_files): for component in Cnf.SubTree("Amber::ComponentMappings").List(): component_mapping[component] = Cnf["Amber::ComponentMappings::%s" % (component)]; uploads = {}; # uploads[uri] = file_list; + changesfiles = {}; # changesfiles[uri] = file_list; package_list = {} # package_list[source_name][version]; + changes_files.sort(utils.changes_compare); for changes_file in changes_files: changes_file = utils.validate_changes_file_arg(changes_file); # Reset variables @@ -78,6 +80,13 @@ def do_upload(changes_files): files = Katie.pkg.files; changes = Katie.pkg.changes; dsc = Katie.pkg.dsc; + # We have the changes, now return if its amd64, to not upload them to ftp-master + if changes["architecture"].has_key("amd64"): + print "Not uploading amd64 part to ftp-master\n"; + continue + if changes["distribution"].has_key("oldstable-security"): + print "Not uploading oldstable-security changes to ftp-master\n"; + continue # Build the file list for this .changes file for file in files.keys(): poolname = os.path.join(Cnf["Dir::Root"], Cnf["Dir::PoolRoot"], @@ -86,7 +95,6 @@ def do_upload(changes_files): file_list.append(poolname); orig_component = files[file].get("original component", files[file]["component"]); components[orig_component] = ""; - file_list.append(changes_file); # Determine the upload uri for this .changes file for component in components.keys(): upload_uri = component_mapping.get(component); @@ -105,6 +113,10 @@ def do_upload(changes_files): if not uploads.has_key(upload_uri): uploads[upload_uri] = []; uploads[upload_uri].extend(file_list); + # Update the changes list for the upload uri + if not changes.has_key(upload_uri): + changesfiles[upload_uri] = []; + changesfiles[upload_uri].append(changes_file); # Remember the suites and source name/version for suite in changes["distribution"].keys(): suites[suite] = ""; @@ -115,16 +127,13 @@ def do_upload(changes_files): package_list[dsc["source"]] = {}; package_list[dsc["source"]][dsc["version"]] = ""; - if len(suites.keys()) == 1 and suites.has_key("oldstable"): - print "Advisory only for 'oldstable'; not uploading elsewhere."; - return; - if not Options["No-Action"]: answer = yes_no("Upload to files to main archive (Y/n)?"); if answer != "y": return; for uri in uploads.keys(): + uploads[uri].extend(changesfiles[uri]); (host, path) = uri.split(":"); file_list = " ".join(uploads[uri]); print "Uploading files to %s..." % (host); @@ -347,6 +356,9 @@ def main(): print "Generating template advisory..."; make_advisory(advisory_number, changes_files); + # Trigger security mirrors + spawn("sudo -u archvsync /home/archvsync/signal_security"); + do_upload(changes_files); ################################################################################