From: Jeroen van Wolffelaar Date: Wed, 1 Feb 2006 15:28:50 +0000 (+0000) Subject: Remove debugging shortcut X-Git-Tag: switch-to-templates~222 X-Git-Url: https://git.deb.at/w?a=commitdiff_plain;h=cda4816cde92d7a4a9e5ab2f07559a38f6067b1a;p=deb%2Fpackages.git Remove debugging shortcut --- diff --git a/bin/parse-packages b/bin/parse-packages index af6d219..7db1dae 100755 --- a/bin/parse-packages +++ b/bin/parse-packages @@ -40,7 +40,7 @@ for my $suite (@suites) { tie %packages_all_db, "DB_File", "packages_all_$suite.db.new", O_RDWR|O_CREAT, 0666, $DB_BTREE or die "Error creating DB: $!"; - open PKG, "zcat /org/ftp.debian.org/ftp/dists/$suite/non-free/{,debian-installer/}binary-*/Packages.gz|"; + open PKG, "zcat /org/ftp.debian.org/ftp/dists/$suite/*/{,debian-installer/}binary-*/Packages.gz|"; while () { next if /^\s*$/; my $data = ""; diff --git a/bin/parse-sources b/bin/parse-sources index a1afe8d..4a41905 100755 --- a/bin/parse-sources +++ b/bin/parse-sources @@ -34,7 +34,7 @@ for my $suite (@suites) { tie %sources_all_db, "DB_File", "sources_all_$suite.db.new", O_RDWR|O_CREAT, 0666, $DB_BTREE or die "Error creating DB: $!"; - open PKG, "zcat /org/ftp.debian.org/ftp/dists/$suite/non-free/source/Sources.gz|"; + open PKG, "zcat /org/ftp.debian.org/ftp/dists/$suite/*/source/Sources.gz|"; while () { next if /^\s*$/; my $data = "";