X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=jenna;h=52b80059fe767ccd5873c217a636ee54f136356d;hb=99400df5b3477807efb6cfb323515cedd51cff2c;hp=d84ffb29726d95328a4fe6290a28e2a504c88bc3;hpb=6c68616c83b577e687f91a6ee75a8139757f213f;p=dak.git diff --git a/jenna b/jenna index d84ffb29..52b80059 100755 --- a/jenna +++ b/jenna @@ -1,8 +1,8 @@ #!/usr/bin/env python # Generate file list which is then fed to apt-ftparchive to generate Packages and Sources files -# Copyright (C) 2000 James Troup -# $Id: jenna,v 1.4 2001-01-25 06:00:07 troup Exp $ +# Copyright (C) 2000, 2001 James Troup +# $Id: jenna,v 1.6 2001-03-02 02:24:33 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 @@ -189,7 +189,7 @@ def main(): output = utils.open_file("%s/%s_%s_binary-%s.list" % (Cnf["Dir::ListsDir"], suite, component, architecture), "w"); generate_bin_list(suite, component, architecture, output, "deb", dislocated_files); output.close(); - if component == "main": # FIXME: must be a cleaner way to say debian-installer is main only? + if component == "main" and (suite == "unstable" or suite == "testing"): # FIXME: must be a cleaner way to say debian-installer is main only? print "Processing dists/%s/%s/debian-installer/binary-%s..." % (suite,component, architecture); output = utils.open_file("%s/%s_%s_debian-installer_binary-%s.list" % (Cnf["Dir::ListsDir"], suite, component, architecture), "w"); generate_bin_list(suite, component, architecture, output, "udeb", dislocated_files);