some 3.8 updates

This commit is contained in:
pvalchev 2005-09-20 17:59:40 +00:00
parent 3a16cc2762
commit 6befda6c28

View File

@ -1,6 +1,6 @@
#!/usr/bin/perl -w
# $OpenBSD: gen-package-pages,v 1.9 2005/05/17 22:08:13 pvalchev Exp $
# $OpenBSD: gen-package-pages,v 1.10 2005/09/20 17:59:40 pvalchev Exp $
# Copyright (c) 2004 Michael Coulter
#
@ -40,7 +40,7 @@ use subs qw(dprint gen_arch_page gen_pkg_page gen_pkg_listing_page getfile
htmlfile gen_index_page arch_body arch_foot arch_head index_head
index_foot pkg_list pkg_long);
our $osrev = "3.7";
our $osrev = "3.8";
our $debug = 0;
our $html;
@ -92,7 +92,7 @@ sub gen_arch_page
foreach my $file (sort(readdir($pkgs))) {
next if ($file =~ /^\./);
next if ($file =~ /^index.txt$/);
next if ($file =~ /^pkglocatedb.gz$/);
next if ($file =~ /^pkglocatedb$/);
dprint "generating package for $arch/$file\n";
my $package = OpenBSD::PackageLocator->find("$pkgpath/$arch/$file");