X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=halle;h=bf9e6fd527fca60a8d50d17859b83d2014c6a362;hb=47996bac016067f8b97ebff3d394a999d8979802;hp=d218fd20b6418a282b10bfe718e79de37365bab6;hpb=c846e77a848d60dd115f00faa0d9a854161d99eb;p=dak.git diff --git a/halle b/halle index d218fd20..bf9e6fd5 100755 --- a/halle +++ b/halle @@ -1,8 +1,8 @@ #!/usr/bin/env python # Remove obsolete .changes files from proposed-updates -# Copyright (C) 2001, 2002 James Troup -# $Id: halle,v 1.9 2002-10-16 02:47:32 troup Exp $ +# Copyright (C) 2001, 2002, 2003, 2004 James Troup +# $Id: halle,v 1.11 2004-02-27 20:07:40 troup 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 @@ -79,9 +79,13 @@ def check_changes (filename): else: utils.fubar("unknown type, fix me"); if not pu.has_key(pkg): - utils.fubar("%s doesn't seem to exist in p-u?? (from %s [%s])" % (pkg, file, filename)); + # FIXME + utils.warn("%s doesn't seem to exist in p-u?? (from %s [%s])" % (pkg, file, filename)); + continue; if not pu[pkg].has_key(arch): - utils.fubar("%s doesn't seem to exist for %s in p-u?? (from %s [%s])" % (pkg, arch, file, filename)); + # FIXME + utils.warn("%s doesn't seem to exist for %s in p-u?? (from %s [%s])" % (pkg, arch, file, filename)); + continue; pu_version = utils.re_no_epoch.sub('', pu[pkg][arch]); if pu_version == version: if Options["verbose"]: @@ -117,7 +121,7 @@ def check_joey (filename): if len(split_line) != 2: utils.fubar("Parse error (not exactly 2 elements): %s" % (line)); install_type = split_line[0]; - if [ "install", "install-u", "sync-install" ].count(install_type) == 0: + if install_type not in [ "install", "install-u", "sync-install" ]: utils.fubar("Unknown install type ('%s') from: %s" % (install_type, line)); changes_filename = split_line[1] if Options["debug"]: