X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=bin%2Fparse-sources;h=63eda09c28878304aa56ec937a66b4bf99007c26;hb=fcdd03b487a852fead30b5f9f6d25f8c36d5c5c2;hp=77c7da542d6ec564b5b304124dc3ea6c1221a398;hpb=2fea5d1ed90131319a07494c8fedd42778494ded;p=deb%2Fpackages.git diff --git a/bin/parse-sources b/bin/parse-sources index 77c7da5..63eda09 100755 --- a/bin/parse-sources +++ b/bin/parse-sources @@ -22,9 +22,13 @@ use strict; my $what = $ARGV[0] ? "non-free" : "*"; +# max. distinct results for a given package postfix +my $MAX_SOURCE_POSTFIXES = 100; use DB_File; my %sources_small = (); +my %source_names = (); +my %source_postfixes = (); my @suites = ('oldstable', 'stable', 'testing', 'unstable', 'experimental'); @@ -53,11 +57,15 @@ for my $suite (@suites) { } $sources_all_db{"$data{'package'} $data{'version'}"} = $data; + + $source_names{$data{'package'}} = 1; + my $section = 'main'; 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"; } @@ -76,7 +84,33 @@ while (my ($k, $v) = each(%sources_small)) { } untie %sources_small_db; +# package names stuff: +for my $pkg (keys %source_names) { + for (my $i=0;$i $MAX_SOURCE_POSTFIXES) { + $v = "\001" . $nr; + } + $source_postfixes_db{$k} = $v; +} +untie %source_postfixes_db; + for my $suite (@suites) { rename("sources_all_$suite.db.new", "sources_all_$suite.db"); } rename("sources_small.db.new", "sources_small.db"); +rename("source_postfixes.db.new", "source_postfixes.db");