X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=bin%2Fparse-sources;h=9c97e2f315750f5849a1c2eef5d76cdacd9b906c;hb=d7e4f0140bcffe72a4392c0491011e4943bef3cb;hp=63eda09c28878304aa56ec937a66b4bf99007c26;hpb=85fe15ad93203463ec78b732f69722b141fc9636;p=deb%2Fpackages.git diff --git a/bin/parse-sources b/bin/parse-sources index 63eda09..9c97e2f 100755 --- a/bin/parse-sources +++ b/bin/parse-sources @@ -20,28 +20,30 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA use strict; +use lib './lib'; my $what = $ARGV[0] ? "non-free" : "*"; # max. distinct results for a given package postfix my $MAX_SOURCE_POSTFIXES = 100; use DB_File; +use Packages::Config qw( $TOPDIR $DBDIR @ARCHIVES @SUITES ); +&Packages::Config::init( './' ); my %sources_small = (); my %source_names = (); my %source_postfixes = (); -my @suites = ('oldstable', 'stable', 'testing', 'unstable', 'experimental'); - $/ = ""; -for my $suite (@suites) { +for my $archive (@ARCHIVES) { + for my $suite (@SUITES) { - print "Reading $suite...\n"; + print "Reading $archive/$suite...\n"; my %sources_all_db; - tie %sources_all_db, "DB_File", "sources_all_$suite.db.new", + tie %sources_all_db, "DB_File", "$DBDIR/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/$what/source/Sources.gz|"; + open PKG, "zcat $TOPDIR/archive/$archive/$suite/$what/source/Sources.gz|"; while () { next if /^\s*$/; my $data = ""; @@ -55,27 +57,29 @@ for my $suite (@suites) { $key =~ tr [A-Z] [a-z]; $data{$key} = $value; } + $data .= "Archive: $archive\n"; $sources_all_db{"$data{'package'} $data{'version'}"} = $data; $source_names{$data{'package'}} = 1; my $section = 'main'; - my $subsection = $data{section}; + my $subsection = $data{section} || '-'; if ($data{section} && ($data{section} =~ m=/=o)) { ($section, $subsection) = split m=/=o, $data{section}, 2; } $data{'priority'} = "-" if not exists($data{'priority'}); $sources_small{$data{'package'}} .= - "$suite $section $subsection $data{'priority'} $data{'version'}\000"; + "$archive $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", +tie %sources_small_db, "DB_File", "$DBDIR/sources_small.db.new", O_RDWR|O_CREAT, 0666, $DB_BTREE or die "Error creating DB: $!"; while (my ($k, $v) = each(%sources_small)) { @@ -94,7 +98,7 @@ for my $pkg (keys %source_names) { } } my %source_postfixes_db; -tie %source_postfixes_db, "DB_File", "source_postfixes.db.new", +tie %source_postfixes_db, "DB_File", "$DBDIR/source_postfixes.db.new", O_RDWR|O_CREAT, 0666, $DB_BTREE or die "Error creating DB: $!"; while (my ($k, $v) = each(%source_postfixes)) { @@ -109,8 +113,8 @@ while (my ($k, $v) = each(%source_postfixes)) { } untie %source_postfixes_db; -for my $suite (@suites) { - rename("sources_all_$suite.db.new", "sources_all_$suite.db"); +for my $suite (@SUITES) { + rename("$DBDIR/sources_all_$suite.db.new", "$DBDIR/sources_all_$suite.db"); } -rename("sources_small.db.new", "sources_small.db"); -rename("source_postfixes.db.new", "source_postfixes.db"); +rename("$DBDIR/sources_small.db.new", "$DBDIR/sources_small.db"); +rename("$DBDIR/source_postfixes.db.new", "$DBDIR/source_postfixes.db");