]> git.decadent.org.uk Git - dak.git/blob - madison
Remove use of ROUser -- both auric and pandora have select granted to public(everyone...
[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.9 2001-09-05 18:51:21 rmurray 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 arch_compare (a, b):
40     if a == "source" and b == "source":
41         return 0;
42     elif a == "source":
43         return -1;
44     elif b == "source":
45         return 1;
46
47     return cmp (a, b);
48
49 ################################################################################
50
51 def main ():
52     global Cnf, projectB;
53
54     apt_pkg.init();
55
56     Cnf = apt_pkg.newConfiguration();
57     apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
58
59     Arguments = [('a',"architecture","Madison::Options::Architecture", "HasArg"),
60                  ('m',"maintainer","Madison::Options::Architecture"),
61                  ('s',"suite","Madison::Options::Suite", "HasArg"),
62                  ('D',"debug","Madison::Options::Debug", "IntVal"),
63                  ('h',"help","Madison::Options::Help"),
64                  ('V',"version","Madison::Options::Version")];
65
66     packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
67     Options = Cnf.SubTree("Madison::Options")
68     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
69     db_access.init(Cnf, projectB);
70
71     if packages == []:
72         utils.fubar("need at least one package name as an argument.");
73
74     if Options.get("Suite"):
75         con_suites = "AND (";
76         for suite in string.split(Options["Suite"]):
77             suite_id = db_access.get_suite_id(suite);
78             if suite_id == -1:
79                 utils.warn("suite '%s' not recognised." % (suite));
80             else:
81                 con_suites = con_suites + "su.id = %s OR " % (suite_id)
82         con_suites = con_suites[:-3] + ")"
83     else:
84         con_suites = "";
85
86     if Options.get("Architecture"):
87         con_architectures = "AND (";
88         check_source = 0;
89         for architecture in string.split(Options["Architecture"]):
90             if architecture == "source":
91                 check_source = 1;
92             architecture_id = db_access.get_architecture_id(architecture);
93             if architecture_id == -1:
94                 utils.warn("architecture '%s' not recognised." % (architecture));
95             else:
96                 con_architectures = con_architectures + "a.id = %s OR " % (architecture_id)
97         con_architectures = con_architectures[:-3] + ")"
98     else:
99         con_architectures = "";
100         check_source = 1;
101
102     for package in packages:
103         q = projectB.query("SELECT b.package, b.version, a.arch_string, su.suite_name, m.name FROM binaries b, architecture a, suite su, bin_associations ba, maintainer m WHERE b.package = '%s' AND a.id = b.architecture AND su.id = ba.suite AND b.id = ba.bin AND b.maintainer = m.id %s %s" % (package, con_suites, con_architectures));
104         ql = q.getresult();
105         if check_source:
106             q = projectB.query("SELECT s.source, s.version, 'source', su.suite_name, m.name FROM source s, suite su, src_associations sa, maintainer m WHERE s.source = '%s' AND su.id = sa.suite AND s.id = sa.source AND s.maintainer = m.id %s" % (package, con_suites));
107             ql.extend(q.getresult());
108         d = {};
109         for i in ql:
110             package = i[0];
111             version = i[1];
112             architecture = i[2];
113             suite = i[3];
114             if not d.has_key(version):
115                 d[version] = {};
116             if not d[version].has_key(suite):
117                 d[version][suite] = [];
118             d[version][suite].append(architecture);
119
120         versions = d.keys();
121         versions.sort(apt_pkg.VersionCompare);
122         for version in versions:
123             suites = d[version].keys();
124             suites.sort();
125             for suite in suites:
126                 sys.stdout.write("%10s | %10s | %13s | " % (package, version, suite));
127                 count = 0;
128                 arches = d[version][suite];
129                 arches.sort(arch_compare);
130                 for arch in arches:
131                     if count > 0:
132                         sys.stdout.write(', ');
133                     sys.stdout.write(arch);
134                     count = count + 1;
135                 sys.stdout.write('\n');
136
137 #######################################################################################
138
139 if __name__ == '__main__':
140     main()
141