From: James Troup Date: Fri, 3 Oct 2003 16:39:20 +0000 (+0000) Subject: .udeb NBS support for rene X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=07546f143ccc9c1b32bc895ba789934fd396f53c;p=dak.git .udeb NBS support for rene --- diff --git a/TODO b/TODO index 0bed3d33..2451bfa2 100644 --- a/TODO +++ b/TODO @@ -27,6 +27,9 @@ queue/approved Others ------ + o jennifer crashes if run as a user in -n mode when orig.tar.gz is + in queue/new... + [maybe I should reject debian packages with a non-Debian origin or bugs field] [agreed; dunno what origin does but non-Debian bugs fields would be bad] diff --git a/rene b/rene index 27f1b103..d97c4c6e 100755 --- a/rene +++ b/rene @@ -2,7 +2,7 @@ # Check for obsolete binary packages # Copyright (C) 2000, 2001, 2002, 2003 James Troup -# $Id: rene,v 1.21 2003-04-15 16:01:45 troup Exp $ +# $Id: rene,v 1.22 2003-10-03 16:39:20 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 @@ -311,7 +311,7 @@ def main (): os.unlink(temp_filename); # Checks based on the Packages files - for component in components: + for component in components + ['main/debian-installer']: architectures = filter(utils.real_arch, Cnf.ValueList("Suite::%s::Architectures" % (suite))); for architecture in architectures: filename = "%s/dists/%s/%s/binary-%s/Packages" % (Cnf["Dir::Root"], suite, component, architecture);