3 # Generate Maintainers file used by e.g. the Debian Bug Tracking System
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004 James Troup <james@nocrew.org>
5 # $Id: charisma,v 1.18 2004-06-17 15:02:02 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 # ``As opposed to "Linux sucks. Respect my academic authoritah, damn
24 # you!" or whatever all this hot air amounts to.''
25 # -- ajt@ in _that_ thread on debian-devel@
27 ################################################################################
30 import db_access, utils;
33 ################################################################################
37 maintainer_from_source_cache = {}
39 fixed_maintainer_cache = {}
41 ################################################################################
43 def usage (exit_code=0):
44 print """Usage: charisma [OPTION] EXTRA_FILE[...]
45 Generate an index of packages <=> Maintainers.
47 -h, --help show this help and exit
51 ################################################################################
53 def fix_maintainer (maintainer):
54 global fixed_maintainer_cache;
56 if not fixed_maintainer_cache.has_key(maintainer):
57 fixed_maintainer_cache[maintainer] = utils.fix_maintainer(maintainer)[0]
59 return fixed_maintainer_cache[maintainer]
61 def get_maintainer (maintainer):
62 return fix_maintainer(db_access.get_maintainer(maintainer));
64 def get_maintainer_from_source (source_id):
65 global maintainer_from_source_cache
67 if not maintainer_from_source_cache.has_key(source_id):
68 q = projectB.query("SELECT m.name FROM maintainer m, source s WHERE s.id = %s and s.maintainer = m.id" % (source_id));
69 maintainer = q.getresult()[0][0]
70 maintainer_from_source_cache[source_id] = fix_maintainer(maintainer)
72 return maintainer_from_source_cache[source_id]
74 ################################################################################
79 Cnf = utils.get_conf()
81 Arguments = [('h',"help","Charisma::Options::Help")];
82 if not Cnf.has_key("Charisma::Options::Help"):
83 Cnf["Charisma::Options::Help"] = "";
85 extra_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
86 Options = Cnf.SubTree("Charisma::Options");
91 projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
92 db_access.init(Cnf, projectB);
94 for suite in Cnf.SubTree("Suite").List():
95 suite = suite.lower();
96 suite_priority = int(Cnf["Suite::%s::Priority" % (suite)]);
99 q = projectB.query("SELECT s.source, s.version, m.name FROM src_associations sa, source s, suite su, maintainer m WHERE su.suite_name = '%s' AND sa.suite = su.id AND sa.source = s.id AND m.id = s.maintainer" % (suite))
100 sources = q.getresult();
101 for source in sources:
104 maintainer = fix_maintainer(source[2]);
105 if packages.has_key(package):
106 if packages[package]["priority"] <= suite_priority:
107 if apt_pkg.VersionCompare(packages[package]["version"], version) < 0:
108 packages[package] = { "maintainer": maintainer, "priority": suite_priority, "version": version };
110 packages[package] = { "maintainer": maintainer, "priority": suite_priority, "version": version };
113 q = projectB.query("SELECT b.package, b.source, b.maintainer, b.version FROM bin_associations ba, binaries b, suite s WHERE s.suite_name = '%s' AND ba.suite = s.id AND ba.bin = b.id" % (suite));
114 binaries = q.getresult();
115 for binary in binaries:
117 source_id = binary[1];
119 # Use the source maintainer first; falling back on the binary maintainer as a last resort only
121 maintainer = get_maintainer_from_source(source_id);
123 maintainer = get_maintainer(binary[2]);
124 if packages.has_key(package):
125 if packages[package]["priority"] <= suite_priority:
126 if apt_pkg.VersionCompare(packages[package]["version"], version) < 0:
127 packages[package] = { "maintainer": maintainer, "priority": suite_priority, "version": version };
129 packages[package] = { "maintainer": maintainer, "priority": suite_priority, "version": version };
131 # Process any additional Maintainer files (e.g. from non-US or pseudo packages)
132 for filename in extra_files:
133 file = utils.open_file(filename);
134 for line in file.readlines():
135 line = utils.re_comments.sub('', line).strip();
138 split = line.split();
140 maintainer = fix_maintainer(" ".join(split[1:]));
141 if lhs.find('~') != -1:
142 (package, version) = lhs.split('~');
146 # A version of '*' overwhelms all real version numbers
147 if not packages.has_key(package) or version == '*' \
148 or apt_pkg.VersionCompare(packages[package]["version"], version) < 0:
149 packages[package] = { "maintainer": maintainer, "version": version };
152 package_keys = packages.keys()
154 for package in package_keys:
155 lhs = "~".join([package, packages[package]["version"]]);
156 print "%-30s %s" % (lhs, packages[package]["maintainer"]);
158 ################################################################################
160 if __name__ == '__main__':