]> git.decadent.org.uk Git - dak.git/blob - madison
source and -s/--suite support
[dak.git] / madison
1 #!/usr/bin/env python
2
3 # 'Fix' stable to make debian-cd and dpkg -BORGiE users happy
4 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
5 # $Id: madison,v 1.6 2001-04-03 10:03:30 troup Exp $
6
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.
11
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.
16
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
20
21 #   And, lo, a great and menacing voice rose from the depths, and with
22 #   great wrath and vehemence it's voice boomed across the
23 #   land... ``hehehehehehe... that *tickles*''
24 #                                                       -- aj on IRC
25
26 ################################################################################
27
28 import pg, sys, os, string
29 import utils, db_access
30 import apt_pkg;
31
32 ################################################################################
33
34 Cnf = None;
35 projectB = None;
36
37 ################################################################################
38
39 def main ():
40     global Cnf, projectB;
41
42     apt_pkg.init();
43     
44     Cnf = apt_pkg.newConfiguration();
45     apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
46
47     Arguments = [('s',"suite","Madison::Options::Suite", "HasArg"),
48                  ('D',"debug","Madison::Options::Debug", "IntVal"),
49                  ('h',"help","Madison::Options::Help"),
50                  ('V',"version","Madison::Options::Version")];
51
52     packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
53     Options = Cnf.SubTree("Madison::Options")
54     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]), None, None, Cnf["DB::ROUser"]);
55     db_access.init(Cnf, projectB);
56
57     if packages == []:
58         utils.fubar("need at least one package name as an argument.");
59
60     if Options["Suite"]:
61         con_suites = "AND (";
62         for suite in string.split(Options["Suite"]):
63             suite_id = db_access.get_suite_id(suite);
64             if suite_id == -1:
65                 utils.warn("suite '%s' not recognised." % (suite));
66             else:
67                 con_suites = con_suites + "su.id = %s OR " % (suite_id)
68         con_suites = con_suites[:-3] + ")"
69     else:
70         con_suites = "";
71
72
73     for package in packages:
74         q = projectB.query("SELECT b.package, b.version, a.arch_string, su.suite_name FROM binaries b, architecture a, suite su, bin_associations ba WHERE b.package = '%s' AND a.id = b.architecture AND su.id = ba.suite AND b.id = ba.bin %s" % (package, con_suites));
75         ql = q.getresult();
76         q = projectB.query("SELECT s.source, s.version, 'source', su.suite_name FROM source s, suite su, src_associations sa WHERE s.source = '%s' AND su.id = sa.suite AND s.id = sa.source %s" % (package, con_suites));
77         ql.extend(q.getresult());
78         d = {};
79         for i in ql:
80             package = i[0];
81             version = i[1];
82             architecture = i[2];
83             suite = i[3];
84             if not d.has_key(version):
85                 d[version] = {};
86             if not d[version].has_key(suite):
87                 d[version][suite] = [];
88             d[version][suite].append(architecture);
89             
90         versions = d.keys();
91         versions.sort(apt_pkg.VersionCompare);
92         for version in versions:
93             suites = d[version].keys();
94             suites.sort();
95             for suite in suites:
96                 sys.stdout.write("%10s | %10s | %13s | " % (package, version, suite));
97                 count = 0;
98                 for arch in d[version][suite]:
99                     if count > 0:
100                         sys.stdout.write(', ');
101                     sys.stdout.write(arch);
102                     count = count + 1;
103                 sys.stdout.write('\n');
104
105 #######################################################################################
106
107 if __name__ == '__main__':
108     main()
109