]> git.deb.at Git - deb/packages.git/commitdiff
Show filelist from suite/arch specific db
authorJeroen van Wolffelaar <jeroen@wolffelaar.nl>
Wed, 8 Feb 2006 20:17:43 +0000 (20:17 +0000)
committerJeroen van Wolffelaar <jeroen@wolffelaar.nl>
Wed, 8 Feb 2006 20:17:43 +0000 (20:17 +0000)
cgi-bin/show_filelist.pl

index 120312a8f55ddd78e0a34be31fd6fdb86ae292c1..fd75a0491775aceb49b093990d62c7a7a6276136 100755 (executable)
@@ -95,10 +95,12 @@ print_debug();
 print_notes();
 
 unless (@Packages::CGI::fatal_errors) {
-    tie my %contents, 'DB_File', "$DBDIR/packages_contents.db",
+    tie my %contents, 'DB_File', "$DBDIR/packages_contents_${suite}_${arch}.db",
        O_RDONLY, 0666, $DB_BTREE
-       or die "couldn't tie DB $DBDIR/packages_contents.db: $!";
+       or die "couldn't tie DB $DBDIR/packages_contents_${suite}_${arch}.db: $!";
 
+    my $cont = $contents{$pkg};
+    print "No such package in this suite on this arch" if not exists $contents{$pkg};
     my @files = unpack "L/(CC/a)", $contents{$pkg};
     my $file = "";
     print "<pre>";