提交 9874d8cd 编写于 作者: J James Troup

cleanup patch from tbm + real_arch filter

上级 553d10b0
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Dependency check proposed-updates # Dependency check proposed-updates
# Copyright (C) 2001, 2002 James Troup <james@nocrew.org> # Copyright (C) 2001, 2002 James Troup <james@nocrew.org>
# $Id: jeri,v 1.8 2002-05-23 12:36:25 troup Exp $ # $Id: jeri,v 1.9 2002-06-08 00:17:59 troup Exp $
# This program is free software; you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License as published by
...@@ -230,15 +230,15 @@ def check_joey (filename): ...@@ -230,15 +230,15 @@ def check_joey (filename):
os.chdir("%s/dists/proposed-updates" % (Cnf["Dir::Root"])); os.chdir("%s/dists/proposed-updates" % (Cnf["Dir::Root"]));
for line in file.readlines(): for line in file.readlines():
line = line[:-1]; line = string.rstrip(line);
if string.find(line, 'install') != -1: if string.find(line, 'install') != -1:
split_line = string.split(line); split_line = string.split(line);
if len(split_line) != 2:
utils.fubar("Parse error (not exactly 2 elements): %s" % (line));
install_type = split_line[0]; install_type = split_line[0];
if [ "install", "install-u", "sync-install" ].count(install_type) == 0: if [ "install", "install-u", "sync-install" ].count(install_type) == 0:
utils.fubar("Unknown install type ('%s') from: %s" % (install_type, line)); utils.fubar("Unknown install type ('%s') from: %s" % (install_type, line));
changes_filename = split_line[1] changes_filename = split_line[1]
if len(split_line) != 2:
utils.fubar("Parse error (more than 2 elements): %s" % (line));
if Options["debug"]: if Options["debug"]:
print "Processing %s..." % (changes_filename); print "Processing %s..." % (changes_filename);
check_changes(changes_filename); check_changes(changes_filename);
...@@ -255,10 +255,7 @@ def parse_packages(): ...@@ -255,10 +255,7 @@ def parse_packages():
suite = "stable"; suite = "stable";
stable = {}; stable = {};
components = Cnf.ValueList("Suite::%s::Components" % (suite)); components = Cnf.ValueList("Suite::%s::Components" % (suite));
architectures = Cnf.ValueList("Suite::%s::Architectures" % (suite)); architectures = filter(utils.real_arch, Cnf.ValueList("Suite::%s::Architectures" % (suite)));
for arch in [ "source", "all" ]:
if architectures.count(arch):
architectures.remove(arch);
for component in components: for component in components:
for architecture in architectures: for architecture in architectures:
filename = "%s/dists/%s/%s/binary-%s/Packages" % (Cnf["Dir::Root"], suite, component, architecture); filename = "%s/dists/%s/%s/binary-%s/Packages" % (Cnf["Dir::Root"], suite, component, architecture);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册