]> git.deb.at Git - deb/packages.git/commitdiff
Remove debugging shortcut
authorJeroen van Wolffelaar <jeroen@wolffelaar.nl>
Wed, 1 Feb 2006 15:28:50 +0000 (15:28 +0000)
committerJeroen van Wolffelaar <jeroen@wolffelaar.nl>
Wed, 1 Feb 2006 15:28:50 +0000 (15:28 +0000)
bin/parse-packages
bin/parse-sources

index af6d21906c8c0bd7d1128a4872e9ef5f96257c30..7db1dae42e27a7116aec00a60a658ecbbf807fd8 100755 (executable)
@@ -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 (<PKG>) {
                next if /^\s*$/;
                my $data = "";
index a1afe8d24cf0f9cf11c1aa7540d43e85ed21d890..4a419058c93e647f2154409d00c69174ec9df47b 100755 (executable)
@@ -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 (<PKG>) {
                next if /^\s*$/;
                my $data = "";