]> git.decadent.org.uk Git - dak.git/blob - tea
54137c5826630d2babd9b9530bad7787c7e640f5
[dak.git] / tea
1 #!/usr/bin/env python
2
3 # 'Fix' stable to make debian-cd and dpkg -BORGiE users happy
4 # Copyright (C) 2000  James Troup <james@nocrew.org>
5 # $Id: tea,v 1.1 2000-12-05 04:27:48 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
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 = [('d',"debug","Claire::Options::Debug", "IntVal"),
48                  ('h',"help","Claire::Options::Help"),
49                  ('v',"version","Claire::Options::Version")];
50
51     apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
52
53     projectB = pg.connect('projectb', 'localhost');
54
55     db_access.init(Cnf, projectB);
56
57     q = projectB.query("SELECT l.path, f.filename FROM files f, location l WHERE f.location = l.id")
58     ql = q.getresult();
59
60     for i in ql:
61         filename = i[0] + i[1];
62         if os.access(filename, os.R_OK) == 0:
63             print filename
64
65 #######################################################################################
66
67 if __name__ == '__main__':
68     main()
69