use strict;
-my $what = $1 ? "non-free" : "*";
+my $what = $ARGV[0] ? "non-free" : "*";
# max. distinct results for a given package postfix
my $MAX_PACKAGE_POSTFIXES = 100;
$packages_small{$data{'package'}} .= "$suite $data{'architecture'} ".
"$section $subsection $data{'priority'} $data{'version'} $sdescr\000";
$sources_packages{$src} .=
- "$data{'package'} $data{'architecture'} $data{'version'}\000";
+ "$suite $data{'package'} $data{'version'} $data{'architecture'}\000";
}
untie %packages_all_db;
use strict;
+my $what = $ARGV[0] ? "non-free" : "*";
+
use DB_File;
+my %sources_small = ();
my @suites = ('oldstable', 'stable', 'testing', 'unstable', 'experimental');
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/*/source/Sources.gz|";
+ open PKG, "zcat /org/ftp.debian.org/ftp/dists/$suite/$what/source/Sources.gz|";
while (<PKG>) {
next if /^\s*$/;
my $data = "";
}
$sources_all_db{"$data{'package'} $data{'version'}"}
= $data;
+ my $section = 'main';
+ my $subsection = $data{section};
+ if ($data{section} && ($data{section} =~ m=/=o)) {
+ ($section, $subsection) = split m=/=o, $data{section}, 2;
+ }
+ $sources_small{$data{'package'}} .=
+ "$suite $section $subsection $data{'priority'} $data{'version'}\000";
}
untie %sources_all_db;
}
+print "Writing databases...\n";
+my %sources_small_db;
+tie %sources_small_db, "DB_File", "sources_small.db.new",
+ O_RDWR|O_CREAT, 0666, $DB_BTREE
+ or die "Error creating DB: $!";
+while (my ($k, $v) = each(%sources_small)) {
+ $v =~ s/.$//s;
+ $sources_small_db{$k} = $v;
+}
+untie %sources_small_db;
+
for my $suite (@suites) {
rename("sources_all_$suite.db.new", "sources_all_$suite.db");
}
+rename("sources_small.db.new", "sources_small.db");