提交 40e7b810 编写于 作者: J James Troup

Move christina to lene

上级 78befa37
#!/usr/bin/env python
# Compares Packages-Arch-Specific (from Quinn-Diff) against the archive
# Copyright (C) 2000, 2001 James Troup <james@nocrew.org>
# $Id: christina,v 1.4 2001-11-18 19:57:58 rmurray Exp $
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
################################################################################
# 23:12|<aj> I will not hush!
# 23:12|<elmo> :>
# 23:12|<aj> Where there is injustice in the world, I shall be there!
# 23:13|<aj> I shall not be silenced!
# 23:13|<aj> The world shall know!
# 23:13|<aj> The world *must* know!
# 23:13|<elmo> oh dear, he's gone back to powerpuff girls... ;-)
# 23:13|<aj> yay powerpuff girls!!
# 23:13|<aj> buttercup's my favourite, who's yours?
# 23:14|<aj> you're backing away from the keyboard right now aren't you?
# 23:14|<aj> *AREN'T YOU*?!
# 23:15|<aj> I will not be treated like this.
# 23:15|<aj> I shall have my revenge.
# 23:15|<aj> I SHALL!!!
################################################################################
import pg, sys, os, string
import utils, db_access
import apt_pkg;
################################################################################
Cnf = None;
projectB = None;
################################################################################
def rev_cmp_by_suite (a, b):
ai = Cnf["Suite::%s::Priority" % (a)];
bi = Cnf["Suite::%s::Priority" % (b)];
if a < b:
return 1;
elif a > b:
return -1;
return 0;
def sort_dict (d):
sys.stderr.write("Sorting... ");
for i in d.keys():
suites = d[i];
suites.sort(rev_cmp_by_suite);
d[i] = suites[0];
sys.stderr.write("done.\n");
def add_to_dict (q):
d = {};
ql = q.getresult();
for i in ql:
package = i[0];
suite = i[1];
if not d.has_key(package):
d[package] = [];
d[package].append(suite);
return d;
def get_binaries ():
sys.stderr.write("Binaries query... ");
q = projectB.query("SELECT DISTINCT b.package, su.suite_name FROM binaries b, bin_associations ba, suite su WHERE b.id = ba.bin AND su.id = ba.suite");
sys.stderr.write("done.\n");
binaries = add_to_dict (q);
sort_dict(binaries);
return binaries;
def get_source ():
sys.stderr.write("Source query... ");
q = projectB.query("SELECT DISTINCT s.source, su.suite_name FROM source s, src_associations sa, suite su WHERE s.id = sa.source AND su.id = sa.suite");
sys.stderr.write("done.\n");
source = add_to_dict (q);
sort_dict(source);
return source;
def main ():
global Cnf, projectB;
Cnf = utils.get_conf()
Arguments = [('d',"debug","Christina::Options::Debug", "IntVal"),
('h',"help","Christina::Options::Help"),
('v',"version","Christina::Options::Version")];
apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
db_access.init(Cnf, projectB);
# Get a list of binaries and source with their latest suite
binaries = get_binaries();
source = get_source();
as_binaries = {};
as_source = {};
filename = "/org/buildd.debian.org/web/quinn-diff/Packages-arch-specific";
file = utils.open_file(filename);
line_count = 0;
for line in file.readlines():
line = string.strip(utils.re_comments.sub("", line));
line_count = line_count + 1;
if line == "":
continue;
sline = string.split(line, ':');
if len(sline) != 2:
utils.warn("parse error on line %s; skipping" % (line_count));
continue;
(package, architectures) = map(string.strip, sline);
# Binary
if package[0] != '%':
if not binaries.has_key(package):
if source.has_key(package):
print "SHOULD BE SOURCE: %s ==> %s" % (package, architectures);
else:
print "MISSING: %s ==> %s" % (package, architectures);
else:
if binaries[package] == "unstable":
as_binaries[package] = architectures;
# Source
else:
package = package[1:]
if not source.has_key(package):
if binaries.has_key(package):
print "SHOULD BE BINARY: %s ==> %s" % (package, architectures);
else:
print "[source] MISSING: %s ==> %s" % (package, architectures);
else:
if source[package] == "unstable":
as_source[package] = architectures;
suite_id = db_access.get_suite_id("unstable");
for package in as_binaries.keys():
as_architectures = string.split(as_binaries[package]);
arches_arch_specific = {};
for i in as_architectures:
arches_arch_specific[i] = "";
q = projectB.query("SELECT a.arch_string FROM bin_associations ba, binaries b, architecture a WHERE a.id = b.architecture AND b.package = '%s' AND ba.suite = %s AND ba.bin = b.id" % (package, suite_id));
ql = q.getresult();
print "%s: %s vs. %s" % (package, ql, as_architectures);
arches_in_archive = {};
for i in ql:
arches_in_archive[i[0]] = "";
for arch in as_architectures:
if arch[0] == "!":
arch = arch[1:];
if arches_in_archive.has_key(arch):
utils.warn("%s is excluded from %s but is in the archive for %s.[1]" % (package, arch, arch));
else:
if not arches_in_archive.has_key(arch):
utils.warn("%s is listed as buildable on %s but isn't in the archive for %s." % (package, arch, arch));
for arch in arches_in_archive.keys():
if not arches_arch_specific.has_key(arch):
utils.warn("%s is excluded from %s but is in the archive for %s.[2]" % (package, arch, arch));
# HO HUM; maybe have control words in the comments like "<STABLE>" ? bit icky
# see if package exists at all
# see if package exists for excluded arch
# see if package in specific suite
# compare against source package's .dsc!
# ??
#######################################################################################
if __name__ == '__main__':
main()
......@@ -2,7 +2,6 @@ alyson - sync's the ISC-style configuration file with the SQL DB
andrea - looks for fixable descrepancies between stable and unstable
catherine - poolifies packages; i.e. moves them from legacy dists/ locations into the pool
charisma - generates Maintainers files used by e.g. the Debian BTS
christina - ???
claire - generates compatability symlink tree for legacy dists/ locations
fernanda - checker script for new packages in incoming
heidi - manipulates suite tags; i.e. removes/adds packages from any given suite
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册