]> git.decadent.org.uk Git - dak.git/commitdiff
Components are case insenstive.
authorJames Troup <james@nocrew.org>
Wed, 5 Jun 2002 16:53:05 +0000 (16:53 +0000)
committerJames Troup <james@nocrew.org>
Wed, 5 Jun 2002 16:53:05 +0000 (16:53 +0000)
apt.conf-non-US
apt.conf.stable-non-US
jenna

index 59bf4014bbb9c34ed8a0eab08862a57d1aa90156..9241ffa36773dbc03e66a38c651197a5dd5f5fb2 100644 (file)
@@ -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)";
index 494c61d674ecf2e8dc63b29f82a7bc6e7b40c09f..42259f1809db38610070c8fb2c7efa3fe5f8c490 100644 (file)
@@ -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 95cba74bd8bcaa274eaa239e0025aaff2ebd3308..e1666b9c7f992ab7f52f8bca249b58dbe03adb15 100755 (executable)
--- 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 <james@nocrew.org>
-# $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: