3 # Generate Maintainers file used by e.g. the Debian Bug Tracking System
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006 James Troup <james@nocrew.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 ################################################################################
22 # ``As opposed to "Linux sucks. Respect my academic authoritah, damn
23 # you!" or whatever all this hot air amounts to.''
24 # -- ajt@ in _that_ thread on debian-devel@
26 ################################################################################
30 from daklib import database
31 from daklib import utils
33 ################################################################################
37 maintainer_from_source_cache = {}
39 fixed_maintainer_cache = {}
41 ################################################################################
43 def usage (exit_code=0):
44 print """Usage: dak make-maintainers [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(database.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","Make-Maintainers::Options::Help")]
82 if not Cnf.has_key("Make-Maintainers::Options::Help"):
83 Cnf["Make-Maintainers::Options::Help"] = ""
85 extra_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
86 Options = Cnf.SubTree("Make-Maintainers::Options")
91 projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
92 database.init(Cnf, projectB)
94 for suite in Cnf.SubTree("Suite").List():
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 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()
140 maintainer = fix_maintainer(" ".join(split[1:]))
141 if lhs.find('~') != -1:
142 (package, version) = lhs.split('~', 1)
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__':