From: James Troup Date: Wed, 5 Jun 2002 16:53:05 +0000 (+0000) Subject: Components are case insenstive. X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=sidebyside;h=cd4af5e0861a437353d10058c3cb099e3befb369;p=dak.git Components are case insenstive. --- diff --git a/apt.conf-non-US b/apt.conf-non-US index 59bf4014..9241ffa3 100644 --- a/apt.conf-non-US +++ b/apt.conf-non-US @@ -22,8 +22,8 @@ TreeDefault tree "dists/testing/non-US" { - FileList "/org/non-us.debian.org/database/dists/testing_non-us/$(SECTION)_binary-$(ARCH).list"; - SourceFileList "/org/non-us.debian.org/database/dists/testing_non-us/$(SECTION)_source.list"; + FileList "/org/non-us.debian.org/database/dists/testing_non-US/$(SECTION)_binary-$(ARCH).list"; + SourceFileList "/org/non-us.debian.org/database/dists/testing_non-US/$(SECTION)_source.list"; Sections "main contrib non-free"; Architectures "alpha arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc source"; BinOverride "override.woody.$(SECTION)"; @@ -32,8 +32,8 @@ tree "dists/testing/non-US" tree "dists/woody-proposed-updates/non-US" { - FileList "/org/non-us.debian.org/database/dists/woody-proposed-updates_non-us/$(SECTION)_binary-$(ARCH).list"; - SourceFileList "/org/non-us.debian.org/database/dists/woody-proposed-updates_non-us/$(SECTION)_source.list"; + FileList "/org/non-us.debian.org/database/dists/woody-proposed-updates_non-US/$(SECTION)_binary-$(ARCH).list"; + SourceFileList "/org/non-us.debian.org/database/dists/woody-proposed-updates_non-US/$(SECTION)_source.list"; Sections "main contrib non-free"; Architectures "alpha arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc source"; BinOverride "override.woody.$(SECTION)"; @@ -43,8 +43,8 @@ tree "dists/woody-proposed-updates/non-US" tree "dists/unstable/non-US" { - FileList "/org/non-us.debian.org/database/dists/unstable_non-us/$(SECTION)_binary-$(ARCH).list"; - SourceFileList "/org/non-us.debian.org/database/dists/unstable_non-us/$(SECTION)_source.list"; + FileList "/org/non-us.debian.org/database/dists/unstable_non-US/$(SECTION)_binary-$(ARCH).list"; + SourceFileList "/org/non-us.debian.org/database/dists/unstable_non-US/$(SECTION)_source.list"; Sections "main contrib non-free"; Architectures "alpha arm hppa hurd-i386 i386 ia64 mips mipsel m68k powerpc s390 sh sparc source"; BinOverride "override.sid.$(SECTION)"; diff --git a/apt.conf.stable-non-US b/apt.conf.stable-non-US index 494c61d6..42259f18 100644 --- a/apt.conf.stable-non-US +++ b/apt.conf.stable-non-US @@ -22,8 +22,8 @@ TreeDefault tree "dists/stable/non-US" { - FileList "/org/non-us.debian.org/database/dists/stable_non-us/$(SECTION)_binary-$(ARCH).list"; - SourceFileList "/org/non-us.debian.org/database/dists/stable_non-us/$(SECTION)_source.list"; + FileList "/org/non-us.debian.org/database/dists/stable_non-US/$(SECTION)_binary-$(ARCH).list"; + SourceFileList "/org/non-us.debian.org/database/dists/stable_non-US/$(SECTION)_source.list"; Sections "main contrib non-free"; Architectures "alpha arm i386 m68k powerpc sparc source"; BinOverride "override.potato.$(SECTION)"; diff --git a/jenna b/jenna index 95cba74b..e1666b9c 100755 --- a/jenna +++ b/jenna @@ -2,7 +2,7 @@ # Generate file lists used by apt-ftparchive to generate Packages and Sources files # Copyright (C) 2000, 2001, 2002 James Troup -# $Id: jenna,v 1.18 2002-06-05 00:18:39 troup Exp $ +# $Id: jenna,v 1.19 2002-06-05 16:53:05 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 @@ -347,8 +347,8 @@ def write_filelists(packages, dislocated_files): else: components = string.split(Options["Components"]); udeb_components = Cnf.ValueList("Suite::%s::UdebComponents" % (suite)); - udeb_components = map(string.lower, udeb_components); - for component in map(string.lower, components): + udeb_components = udeb_components; + for component in components: if not d[suite].has_key(component): d[suite][component] = {}; if component in udeb_components: