3 # Generate file list which is then fed to apt-ftparchive to generate Packages and Sources files
4 # Copyright (C) 2000, 2001 James Troup <james@nocrew.org>
5 # $Id: jenna,v 1.6 2001-03-02 02:24:33 troup Exp $
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #######################################################################################
23 # BTAF: "GOD *DAMMIT*!! What the FUCK happened to my free will??"
25 # -- http://www.angryflower.com/timelo.gif
27 #######################################################################################
29 import pg, string, os, sys
31 import db_access, utils, claire
36 def generate_src_list(suite, component, output, dislocated_files):
39 suite_id = db_access.get_suite_id(suite);
42 q = projectB.query("SELECT s.source, s.version, l.path, f.filename, s.id, f.id FROM source s, src_associations sa, location l, files f WHERE sa.source = s.id AND sa.suite = '%d' AND l.id = f.location AND s.file = f.id ORDER BY s.source, s.version"
45 q = projectB.query("SELECT s.source, s.version, l.path, f.filename, s.id, f.id FROM source s, src_associations sa, location l, component c, files f WHERE lower(c.name) = '%s' AND (c.id = l.component OR l.component = NULL) AND sa.source = s.id AND sa.suite = '%d' AND l.id = f.location AND s.file = f.id ORDER BY s.source, s.version"
46 % (component, suite_id));
47 entries = q.getresult();
51 filename = entry[2]+entry[3];
55 if dislocated_files.has_key(file_id):
56 filename = dislocated_files[file_id];
57 if os.path.exists(filename):
58 if sources.has_key(source):
59 if apt_pkg.VersionCompare(sources[source]["version"], version) == -1:
60 if not Cnf.Find("Suite::%s::Untouchable" % (suite)):
61 print "deleting %s (%s) in favour of newer version %s..." % (source, sources[source]["version"], version)
62 projectB.query("DELETE FROM src_associations WHERE source = %s AND suite = %d" % (sources[source]["id"], suite_id))
64 if Cnf.Find("Jenna::Options::Verbose"):
65 print "[untouchable] would delete %s (%s) in favour of newer version %s..." % (source, sources[source]["version"], version)
66 sources[source] = { "id": id, "version": version, "filename": filename }
68 if not Cnf.Find("Suite::%s::Untouchable" % (suite)):
69 print "deleting %s (%s) in favour of newer version %s..." % (source, version, sources[source]["version"])
70 projectB.query("DELETE FROM src_associations WHERE source = %s AND suite = %d" % (id, suite_id))
72 if Cnf.Find("Jenna::Options::Verbose"):
73 print "[untouchable] would delete %s (%s) in favour of newer version %s..." % (source, version, sources[source]["version"])
75 sources[source] = { "id": id, "version": version, "filename": filename }
77 if not Cnf.Find("Suite::%s::Untouchable" % (suite)):
78 sys.stderr.write("WARNING: deleting %s because it doesn't exist.\n" % (filename));
79 projectB.query("DELETE FROM src_associations WHERE source = %s AND suite = %d" % (id, suite_id))
81 # Write the list of files out
82 source_keys = sources.keys();
84 for source in source_keys:
85 output.write(sources[source]["filename"]+'\n')
87 def generate_bin_list(suite, component, architecture, output, type, dislocated_files):
90 suite_id = db_access.get_suite_id(suite);
93 q = projectB.query("SELECT b.package, b.version, l.path, f.filename, b.id, f.id FROM architecture a, binaries b, bin_associations ba, location l, files f WHERE ( a.arch_string = '%s' OR a.arch_string = 'all' ) AND a.id = b.architecture AND ba.bin = b.id AND ba.suite = '%d' AND l.id = f.location AND b.file = f.id AND b.type = '%s' ORDER BY b.package, b.version, a.arch_string" % (architecture, suite_id, type));
95 q = projectB.query("SELECT b.package, b.version, l.path, f.filename, b.id, f.id FROM architecture a, binaries b, bin_associations ba, location l, component c, files f WHERE lower(c.name) = '%s' AND (c.id = l.component OR l.component = NULL) AND (a.arch_string = '%s' OR a.arch_string = 'all') AND a.id = b.architecture AND ba.bin = b.id AND ba.suite = '%d' AND l.id = f.location AND b.file = f.id AND b.type = '%s' ORDER BY b.package, b.version, a.arch_string" % (component, architecture, suite_id, type));
96 entries = q.getresult();
100 filename = entry[2]+entry[3];
104 if dislocated_files.has_key(file_id):
105 filename = dislocated_files[file_id];
107 if os.path.exists(filename):
108 if packages.has_key(package):
109 if apt_pkg.VersionCompare(packages[package]["version"], version) == -1:
110 if not Cnf.Find("Suite::%s::Untouchable" % (suite)):
111 print "deleting %s (%s) in favour of newer version %s..." % (package, packages[package]["version"], version)
112 projectB.query("DELETE FROM bin_associations WHERE bin = %s AND suite = %d" % (packages[package]["id"], suite_id))
114 if Cnf.Find("Jenna::Options::Verbose"):
115 print "[untouchable] would delete %s (%s) in favour of newer version %s..." % (package, packages[package]["version"], version)
116 packages[package] = { "id": id, "version": version, "filename": filename }
118 if not Cnf.Find("Suite::%s::Untouchable" % (suite)):
119 print "deleting %s (%s) in favour of newer version %s..." % (package, version, packages[package]["version"])
120 projectB.query("DELETE FROM bin_associations WHERE bin = %s AND suite = %d" % (id, suite_id))
122 if Cnf.Find("Jenna::Options::Verbose"):
123 print "[untochable] would delete %s (%s) in favour of newer version %s..." % (package, version, packages[package]["version"])
125 packages[package] = { "id": id, "version": version, "filename": filename }
127 if not Cnf.Find("Suite::%s::Untouchable" % (suite)):
128 sys.stderr.write("WARNING: deleting %s because it doesn't exist.\n" % (filename));
129 projectB.query("DELETE FROM bin_associations WHERE bin = %s AND suite = %d" % (id, suite_id))
131 # Write the list of files out
132 package_keys = packages.keys();
134 for package in package_keys:
135 output.write(packages[package]["filename"]+'\n')
140 global Cnf, projectB;
141 dislocated_files = {};
143 projectB = pg.connect('projectb', 'localhost');
147 Cnf = apt_pkg.newConfiguration();
148 apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
150 Arguments = [('a',"architecture","Jenna::Options::Architecture", "HasArg"),
151 ('c',"component","Jenna::Options::Component", "HasArg"),
152 ('d',"debug","Jenna::Options::Debug", "IntVal"),
153 ('h',"help","Jenna::Options::Help"),
154 ('s',"suite", "Jenna::Options::Suite", "HasArg"),
155 ('v',"verbose","Jenna::Options::Verbose"),
156 ('V',"version","Jenna::Options::Version")];
158 apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
160 db_access.init(Cnf, projectB);
162 if Cnf["Jenna::Options::Suite"] == "":
163 Cnf["Jenna::Options::Suite"] = string.join(Cnf.SubTree("Suite").List());
164 for suite in string.split(Cnf["Jenna::Options::Suite"]):
165 suite = string.lower(suite);
166 if suite == 'stable':
167 dislocated_files = claire.find_dislocated_stable(Cnf, projectB);
168 components = Cnf["Jenna::Options::Component"];
169 if not Cnf.has_key("Suite::%s::Components" % (suite)):
172 components = string.join(Cnf.SubTree("Suite::%s::Components" % (suite)).List());
173 for component in string.split(components):
174 component = string.lower(component)
175 architectures = Cnf["Jenna::Options::Architecture"];
176 if architectures == "":
177 architectures = string.join(Cnf.SubTree("Suite::%s::Architectures" % (suite)).List());
178 for architecture in string.split(architectures):
179 architecture = string.lower(architecture)
180 if architecture == "all":
182 if architecture == "source":
183 print "Processing dists/%s/%s/%s..." % (suite, component, architecture);
184 output = utils.open_file("%s/%s_%s_%s.list" % (Cnf["Dir::ListsDir"], suite, component, architecture), "w")
185 generate_src_list(suite, component, output, dislocated_files);
188 print "Processing dists/%s/%s/binary-%s..." % (suite, component, architecture);
189 output = utils.open_file("%s/%s_%s_binary-%s.list" % (Cnf["Dir::ListsDir"], suite, component, architecture), "w");
190 generate_bin_list(suite, component, architecture, output, "deb", dislocated_files);
192 if component == "main" and (suite == "unstable" or suite == "testing"): # FIXME: must be a cleaner way to say debian-installer is main only?
193 print "Processing dists/%s/%s/debian-installer/binary-%s..." % (suite,component, architecture);
194 output = utils.open_file("%s/%s_%s_debian-installer_binary-%s.list" % (Cnf["Dir::ListsDir"], suite, component, architecture), "w");
195 generate_bin_list(suite, component, architecture, output, "udeb", dislocated_files);
198 if __name__ == '__main__':