]> git.donarmstrong.com Git - infobot.git/blobdiff - src/Modules/Debian.pl
- Remaining files that were changed due to removal of $noreply or
[infobot.git] / src / Modules / Debian.pl
index 8eb2fe9e058a96332267628eae68421b7e4fbb80..9eea21a5d9aafedbe6c6df0caec0b74a617cc6a2 100644 (file)
@@ -1,7 +1,7 @@
 #
 #   Debian.pl: Frontend to debian contents and packages files
 #      Author: dms
-#     Version: v0.7b (20000527)
+#     Version: v0.8 (20000918)
 #     Created: 20000106
 #
 
@@ -10,19 +10,27 @@ package Debian;
 use strict;
 
 # format: "alias=real".
-my $defaultdist        = "woody";
+my $announce   = 0;
+my $defaultdist        = "unstable";
 my %dists      = (
-       "unstable"      => "woody",
-       "frozen"        => "potato",
-       "stable"        => "slink",
+       "unstable"      => "sid",
+       "testing"       => "woody",     # new since 20001219.
+       "stable"        => "potato",
        "incoming"      => "incoming",
+### the following don't work. too much effort to get 3 types of distros
+### to work harmoniously :-)
+       "slink"         => "archive-2.1",
+       "hamm"          => "archive-2.0",
+       "rex"           => "archive-1.?",
+       "bo"            => "archive-1.?",
 );
 
 my %urlcontents = (
        "debian/Contents-##DIST-i386.gz" =>
                "ftp://ftp.us.debian.org".
                "/debian/dists/##DIST/Contents-i386.gz",
-
+### APPEARS TO BE FIXED?
+# => strip control chars just to be safe.
        "debian/Contents-##DIST-i386-non-US.gz" =>
                "ftp://non-us.debian.org".
                "/debian-non-US/dists/##DIST/non-US/Contents-i386.gz",
@@ -38,9 +46,16 @@ my %urlpackages = (
        "debian/Packages-##DIST-non-free-i386.gz" =>
                "ftp://ftp.us.debian.org".
                "/debian/dists/##DIST/non-free/binary-i386/Packages.gz",
-       "debian/Packages-##DIST-non-US-i386.gz" =>
+
+       "debian/Packages-##DIST-non-US-main-i386.gz" =>
+               "ftp://non-us.debian.org".
+               "/debian-non-US/dists/##DIST/non-US/main/binary-i386/Packages.gz",
+       "debian/Packages-##DIST-non-US-contrib-i386.gz" =>
                "ftp://non-us.debian.org".
-               "/debian-non-US/dists/##DIST/non-US/binary-i386/Packages.gz",
+               "/debian-non-US/dists/##DIST/non-US/contrib/binary-i386/Packages.gz",
+       "debian/Packages-##DIST-non-US-non-free-i386.gz" =>
+               "ftp://non-us.debian.org".
+               "/debian-non-US/dists/##DIST/non-US/non-free/binary-i386/Packages.gz",
 );
 
 #####################
@@ -51,22 +66,19 @@ my %urlpackages = (
 # Usage: &DebianDownload(%hash);
 sub DebianDownload {
     my ($dist, %urls)  = @_;
-    my $refresh = $main::param{'debianRefreshInterval'} * 60 * 60 * 24;
+    my $refresh = $::param{'debianRefreshInterval'} * 60 * 60 * 24;
     my $bad    = 0;
     my $good   = 0;
 
-    &main::status("Debian: Downloading files for '$dist'.");
-
     if (! -d "debian/") {
-       &main::status("Debian: creating debian dir.");
+       &::status("Debian: creating debian dir.");
        mkdir("debian/",0755);
     }
 
-    %urls = &fixNonUS($dist, %urls);
-
     # fe dists.
     # Download the files.
     my $file;
+##    my %ret;
     foreach $file (keys %urls) {
        my $url = $urls{$file};
        $url  =~ s/##DIST/$dist/g;
@@ -77,20 +89,22 @@ sub DebianDownload {
            my $last_refresh = (stat($file))[9];
            $update++ if (time() - $last_refresh > $refresh);
        } else {
-           &main::DEBUG("Debian: local '$file' does not exist.");
            $update++;
        }
 
        next unless ($update);
 
-       if ($good + $bad == 0) {
-           &main::msg($main::who, "Updating debian files... please wait.");
+       &::DEBUG("announce == $announce.");
+       if ($good + $bad == 0 and !$announce) {
+           &::status("Debian: Downloading files for '$dist'.");
+           &::msg($::who, "Updating debian files... please wait.");
+           $announce++;
        }
 
-       if (exists $main::debian{$url}) {
-           &main::DEBUG("2: ".(time - $main::debian{$url})." <= $refresh");
-           next if (time() - $main::debian{$url} <= $refresh);
-           &main::DEBUG("stale for url $url; updating!");
+       if (exists $::debian{$url}) {
+           &::DEBUG("2: ".(time - $::debian{$url})." <= $refresh");
+           next if (time() - $::debian{$url} <= $refresh);
+           &::DEBUG("stale for url $url; updating!");
        }
 
        if ($url =~ /^ftp:\/\/(.*?)\/(\S+)\/(\S+)$/) {
@@ -98,22 +112,35 @@ sub DebianDownload {
 
            # error internally to ftp.
            # hope it doesn't do anything bad.
-           if (!&main::ftpGet($host,$path,$thisfile,$file)) {
-               &main::DEBUG("deb: down: ftpGet: bad.");
+           if ($file =~ /Contents-woody-i386-non-US/) {
+               &::DEBUG("Skipping Contents-woody-i386-non-US.");
+#              $file =~ s/woody/potato/;
+#              $path =~ s/woody/potato/;
+###            next;
+           }
+
+           if (!&::ftpGet($host,$path,$thisfile,$file)) {
+               &::WARN("deb: down: $file == BAD.");
                $bad++;
                next;
            }
 
            if (! -f $file) {
-               &main::DEBUG("deb: down: ftpGet: !file");
+               &::DEBUG("deb: down: ftpGet: !file");
                $bad++;
                next;
            }
 
-           &main::DEBUG("deb: download: good.");
+           if ($file =~ /Contents-potato-i386-non-US/) {
+               &::DEBUG("hack: using potato's non-US contents for woody.");
+               system("cp debian/Contents-potato-i386-non-US.gz debian/Contents-woody-i386-non-US.gz");
+           }
+
+           &::DEBUG("deb: download: good.");
+##         $ret{$
            $good++;
        } else {
-           &main::ERROR("Debian: invalid format of url => ($url).");
+           &::ERROR("Debian: invalid format of url => ($url).");
            $bad++;
            next;
        }
@@ -124,7 +151,7 @@ sub DebianDownload {
        return 1;
     } else {
        return -1 unless ($bad);        # no download.
-       &main::DEBUG("DD: !good and bad($bad). :(");
+       &::DEBUG("DD: !good and bad($bad). :(");
        return 0;
     }
 }
@@ -137,55 +164,72 @@ sub DebianDownload {
 # Usage: &searchContents($query);
 sub searchContents {
     my ($dist, $query) = &getDistroFromStr($_[0]);
-    &main::status("Debian: Contents search for '$query' on $dist.");
+    &::status("Debian: Contents search for '$query' on $dist.");
     my $dccsend        = 0;
 
     $dccsend++         if ($query =~ s/^dcc\s+//i);
     ### larne's regex.
     # $query = $query.'(\.so\.)?([.[[:digit:]]+\.]+)?$';
 
-    $query =~ s/\\([\^\$])/$1/g;
+    $query =~ s/\\([\^\$])/$1/g;       # hrm?
     $query =~ s/^\s+|\s+$//g;
-    $query =~ s/\*/\\S*/g;             # does it even work?
 
-    if (!&main::validExec($query)) {
-       &main::msg($main::who, "search string looks fuzzy.");
+    if (!&::validExec($query)) {
+       &::msg($::who, "search string looks fuzzy.");
        return;
     }
 
     if ($dist eq "incoming") {         # nothing yet.
-       &main::DEBUG("sC: dist = 'incoming'. no contents yet.");
+       &::DEBUG("sC: dist = 'incoming'. no contents yet.");
        return;
     } else {
        my %urls = &fixDist($dist, %urlcontents);
        # download contents file.
-       &main::DEBUG("deb: download 1.");
+       &::DEBUG("deb: download 1.");
        if (!&DebianDownload($dist, %urls)) {
-           &main::WARN("Debian: could not download files.");
+           &::WARN("Debian: could not download files.");
        }
     }
 
     # start of search.
-    my $start_time = &main::gettimeofday();
+    my $start_time = &::timeget();
 
     my $found = 0;
     my %contents;
-    my $search = "$query.*\[ \t]";
+    my $grepRE;
+    my $front = 0;
+    ### TODO: search properly if /usr/bin/blah is done.
+    if ($query =~ s/\$$//) {
+       &::DEBUG("search-regex found.");
+       $grepRE = "$query\[ \t]";
+    } elsif ($query =~ s/^\^//) {
+       &::DEBUG("front marker regex found.");
+       $front = 1;
+       $grepRE = $query;
+    } else {
+       $grepRE = "$query*\[ \t]";
+    }
+
+    ### fix up grepRE for "*".
+    $grepRE =~ s/\*/.*/g;
+
+    my @files;
     foreach (keys %urlcontents) {
+       s/##DIST/$dist/g;
+
        next unless ( -f $_);
        push(@files,$_);
     }
 
     if (!scalar @files) {
-       &main::ERROR("sC: no files?");
-       &main::msg($main::who, "failed.");
+       &::ERROR("sC: no files?");
+       &::msg($::who, "failed.");
        return;
     }
 
     my $files = join(' ', @files);
-    $files =~ s/##DIST/$dist/g;
 
-    open(IN,"zegrep -h '$search' $files |");
+    open(IN,"zegrep -h '$grepRE' $files |");
     while (<IN>) {
        if (/^\.?\/?(.*?)[\t\s]+(\S+)\n$/) {
            my ($file,$package) = ("/".$1,$2);
@@ -196,10 +240,13 @@ sub searchContents {
                next unless ($basename =~ /\Q$query\E/);
            }
            next if ($query !~ /\.\d\.gz/ and $file =~ /\/man\//);
+           next if ($front and $file !~ /^\/\Q$query\E/);
 
            $contents{$package}{$file} = 1;
            $found++;
        }
+
+       last if ($found > 100);
     }
     close IN;
 
@@ -207,23 +254,19 @@ sub searchContents {
 
     ### send results with dcc.
     if ($dccsend) {
-       if (exists $main::dcc{'SEND'}{$main::who}) {
-           &main::msg($main::who, "DCC already active!");
+       if (exists $::dcc{'SEND'}{$::who}) {
+           &::msg($::who, "DCC already active!");
            return;
        }
 
        if (!scalar %contents) {
-           &main::msg($main::who,"search returned no results.");
+           &::msg($::who,"search returned no results.");
            return;
        }
 
-       if (! -d "Temp/") {
-           mkdir("Temp",0755);
-       }
-
-       my $file = "temp/$main::who.txt";
+       my $file = "$::param{tempDir}/$::who.txt";
        if (!open(OUT,">$file")) {
-           &main::ERROR("Debian: cannot write file for dcc send.");
+           &::ERROR("Debian: cannot write file for dcc send.");
            return;
        }
 
@@ -235,16 +278,16 @@ sub searchContents {
        }
        close OUT;
 
-       &main::shmWrite($main::shm, "DCC SEND $main::who $file");
+       &::shmWrite($::shm, "DCC SEND $::who $file");
 
        return;
     }
 
-    &main::status("Debian: $found results.");
+    &::status("Debian: $found contents results found.");
 
     my @list;
     foreach $pkg (keys %contents) {
-       my @tmplist = &main::fixFileList(keys %{$contents{$pkg}});
+       my @tmplist = &::fixFileList(keys %{$contents{$pkg}});
        my @sublist = sort { length $a <=> length $b } @tmplist;
 
        pop @sublist while (scalar @sublist > 3);
@@ -256,31 +299,32 @@ sub searchContents {
     @list = sort { length $a <=> length $b } @list;
 
     # show how long it took.
-    my $delta_time = &main::gettimeofday() - $start_time;
-    &main::status(sprintf("Debian: %.02f sec to complete query.", $delta_time)) if ($delta_time > 0);
+    my $delta_time = &::timedelta($start_time);
+    &::status(sprintf("Debian: %.02f sec to complete query.", $delta_time)) if ($delta_time > 0);
 
     my $prefix = "Debian Search of '$query' ";
-    &main::performStrictReply( &main::formListReply(0, $prefix, @list) );
+    if (scalar @list) {        # @list.
+       &::pSReply( &::formListReply(0, $prefix, @list) );
+    } else {           # !@list.
+       &::DEBUG("ok, !\@list, searching desc for '$query'.");
+       &searchDesc($query);
+    }
 }
 
 ####
 # Usage: &searchAuthor($query);
 sub searchAuthor {
     my ($dist, $query) = &getDistroFromStr($_[0]);
-    &main::DEBUG("searchAuthor: dist => '$dist', query => '$query'.");
+    &::DEBUG("searchAuthor: dist => '$dist', query => '$query'.");
     $query =~ s/^\s+|\s+$//g;
 
     # start of search.
-    my $start_time = &main::gettimeofday();
-    &main::status("Debian: starting author search.");
+    my $start_time = &::timeget();
+    &::status("Debian: starting author search.");
 
     my $files;
     my ($bad,$good) = (0,0);
     my %urls = %urlpackages;
-    ### potato now has the "new" non-US tree like woody does.
-    if ($dist =~ /^(woody|potato)$/) {
-       %urls = &fixNonUS($dist, %urlpackages);
-    }
 
     foreach (keys %urlpackages) {
        s/##DIST/$dist/g;
@@ -294,13 +338,13 @@ sub searchAuthor {
        $files .= " ".$_;
     }
 
-    &main::DEBUG("good = $good, bad = $bad...");
+    &::DEBUG("good = $good, bad = $bad...");
 
     if ($good == 0 and $bad != 0) {
        my %urls = &fixDist($dist, %urlpackages);
-       &main::DEBUG("deb: download 2.");
+       &::DEBUG("deb: download 2.");
        if (!&DebianDownload($dist, %urls)) {
-           &main::ERROR("Debian(sA): could not download files.");
+           &::ERROR("Debian(sA): could not download files.");
            return;
        }
     }
@@ -311,10 +355,16 @@ sub searchAuthor {
        if (/^Package: (\S+)$/) {
            $package = $1;
        } elsif (/^Maintainer: (.*) \<(\S+)\>$/) {
-           $maint{$1}{$2} = 1;
-           $pkg{$1}{$package} = 1;
+           my($name,$email) = ($1,$2);
+           if ($package eq "") {
+               &::DEBUG("sA: package == NULL.");
+               next;
+           }
+           $maint{$name}{$email} = 1;
+           $pkg{$name}{$package} = 1;
+           $package = "";
        } else {
-           &main::WARN("invalid line: '$_'.");
+           &::WARN("invalid line: '$_'.");
        }
     }
     close IN;
@@ -341,44 +391,119 @@ sub searchAuthor {
     my @list = keys %hash;
     if (scalar @list != 1) {
        my $prefix = "Debian Author Search of '$query' ";
-       &main::performStrictReply( &main::formListReply(0, $prefix, @list) );
+       &::pSReply( &::formListReply(0, $prefix, @list) );
        return 1;
     }
 
-    &main::DEBUG("showing all packages by '$list[0]'...");
+    &::DEBUG("showing all packages by '$list[0]'...");
 
     my @pkg = sort keys %{$pkg{$list[0]}};
 
     # show how long it took.
-    my $delta_time = &main::gettimeofday() - $start_time;
-    &main::status(sprintf("Debian: %.02f sec to complete query.", $delta_time)) if ($delta_time > 0);
+    my $delta_time = &::timedelta($start_time);
+    &::status(sprintf("Debian: %.02f sec to complete query.", $delta_time)) if ($delta_time > 0);
 
     my $email  = join(', ', keys %{$maint{$list[0]}});
     my $prefix = "Debian Packages by $list[0] \002<\002$email\002>\002 ";
-    &main::performStrictReply( &main::formListReply(0, $prefix, @pkg) );
+    &::pSReply( &::formListReply(0, $prefix, @pkg) );
+}
+
+####
+# Usage: &searchDesc($query);
+sub searchDesc {
+    my ($dist, $query) = &getDistroFromStr($_[0]);
+    &::DEBUG("searchDesc: dist => '$dist', query => '$query'.");
+    $query =~ s/^\s+|\s+$//g;
+
+    # start of search.
+    my $start_time = &::timeget();
+    &::status("Debian: starting desc search.");
+
+    my $files;
+    my ($bad,$good) = (0,0);
+    my %urls = %urlpackages;
+
+    foreach (keys %urlpackages) {
+       s/##DIST/$dist/g;
+
+       if (! -f $_) {
+           $bad++;
+           next;
+       }
+
+       $good++;
+       $files .= " ".$_;
+    }
+
+    &::DEBUG("good = $good, bad = $bad...");
+
+    if ($good == 0 and $bad != 0) {
+       my %urls = &fixDist($dist, %urlpackages);
+       &::DEBUG("deb: download 2c.");
+       if (!&DebianDownload($dist, %urls)) {
+           &::ERROR("Debian(sD): could not download files.");
+           return;
+       }
+    }
+
+    my (%desc, $package);
+    open(IN,"zegrep -h '^Package|^Description' $files |");
+    while (<IN>) {
+       if (/^Package: (\S+)$/) {
+           $package = $1;
+       } elsif (/^Description: (.*)$/) {
+           my $desc = $1;
+           next unless ($desc =~ /\Q$query\E/i);
+           if ($package eq "") {
+               &::WARN("sD: package == NULL?");
+               next;
+           }
+           $desc{$package} = $desc;
+           $package = "";
+       } else {
+           &::WARN("invalid line: '$_'.");
+       }
+    }
+    close IN;
+
+    my @list = keys %desc;
+    if (!scalar @list) {
+       my $prefix = "Debian Desc Search of '$query' ";
+       &::pSReply( &::formListReply(0, $prefix, ) );
+    } elsif (scalar @list == 1) {      # list = 1.
+       &::DEBUG("list == 1; showing package info of '$list[0]'.");
+       &infoPackages("info", $list[0]);
+    } else {                           # list > 1.
+       my $prefix = "Debian Desc Search of '$query' ";
+       &::pSReply( &::formListReply(0, $prefix, @list) );
+    }
+
+    # show how long it took.
+    my $delta_time = &::timedelta($start_time);
+    &::status(sprintf("Debian: %.02f sec to complete query.", $delta_time)) if ($delta_time > 0);
 }
 
 ####
 # Usage: &generateIncoming();
 sub generateIncoming {
-    my $interval = $main::param{'debianRefreshInterval'};
+    my $interval = $::param{'debianRefreshInterval'};
     my $pkgfile  = "debian/Packages-incoming";
     my $idxfile  = $pkgfile.".idx";
     my $stale   = 0;
-    $stale++ if (&main::isStale($pkgfile.".gz", $interval));
-    $stale++ if (&main::isStale($idxfile.".gz", $interval));
-    &main::DEBUG("gI: stale => '$stale'.");
+    $stale++ if (&::isStale($pkgfile.".gz", $interval));
+    $stale++ if (&::isStale($idxfile, $interval));
+    &::DEBUG("gI: stale => '$stale'.");
     return 0 unless ($stale);
 
     ### STATIC URL.
-    my %ftp = &main::ftpList("llug.sep.bnl.gov", "/pub/debian/Incoming/");
+    my %ftp = &::ftpList("llug.sep.bnl.gov", "/pub/debian/Incoming/");
 
     if (!open(PKG,">$pkgfile")) {
-       &main::ERROR("cannot write to pkg $pkgfile.");
+       &::ERROR("cannot write to pkg $pkgfile.");
        return 0;
     }
     if (!open(IDX,">$idxfile")) {
-       &main::ERROR("cannot write to idx $idxfile.");
+       &::ERROR("cannot write to idx $idxfile.");
        return 0;
     }
 
@@ -402,7 +527,7 @@ sub generateIncoming {
 
     system("gzip -9fv $pkgfile");      # lame fix.
 
-    &main::status("Debian: generateIncoming() complete.");
+    &::status("Debian: generateIncoming() complete.");
 }
 
 
@@ -415,7 +540,7 @@ sub getPackageInfo {
     my ($package, $file) = @_;
 
     if (! -f $file) {
-       &main::status("gPI: file $file does not exist?");
+       &::status("gPI: file $file does not exist?");
        return 'NULL';
     }
 
@@ -452,7 +577,7 @@ sub getPackageInfo {
                $pkg{'section'}         = $1;
            } elsif (/^Size: (.*)$/) {
                $pkg{'size'}            = $1;
-           } elsif (/^i.*size: (.*)$/) {
+           } elsif (/^Installed-Size: (.*)$/i) {
                $pkg{'installed'}       = $1;
            } elsif (/^Description: (.*)$/) {
                $pkg{'desc'}            = $1;
@@ -476,7 +601,7 @@ sub getPackageInfo {
                $pkg{'conflicts'} = $1;
            }
 
-###        &main::DEBUG("=> '$_'.");
+###        &::DEBUG("=> '$_'.");
        }
 
        # blank line.
@@ -497,17 +622,17 @@ sub getPackageInfo {
 # Usage: &infoPackages($query,$package);
 sub infoPackages {
     my ($query,$dist,$package) = ($_[0], &getDistroFromStr($_[1]));
-    my $interval = $main::param{'debianRefreshInterval'} || 7;
+    my $interval = $::param{'debianRefreshInterval'} || 7;
 
-    &main::status("Debian: Searching for package '$package' in '$dist'.");
+    &::status("Debian: Searching for package '$package' in '$dist'.");
 
     # download packages file.
     # hrm...
     my %urls = &fixDist($dist, %urlpackages);
     if ($dist ne "incoming") {
-       &main::DEBUG("deb: download 3.");
+       &::DEBUG("deb: download 3.");
        if (!&DebianDownload($dist, %urls)) {   # no good download.
-           &main::WARN("Debian(iP): could not download ANY files.");
+           &::WARN("Debian(iP): could not download ANY files.");
        }
     }
 
@@ -515,26 +640,26 @@ sub infoPackages {
     my $incoming = 0;
     my @files = &validPackage($package, $dist);
     if (!scalar @files) {
-       &main::status("Debian: no valid package found; checking incoming.");
+       &::status("Debian: no valid package found; checking incoming.");
        @files = &validPackage($package, "incoming");
        if (scalar @files) {
-           &main::status("Debian: cool, it exists in incoming.");
+           &::status("Debian: cool, it exists in incoming.");
            $incoming++;
        } else {
-           &main::msg($main::who, "Package '$package' does not exist.");
+           &::msg($::who, "Package '$package' does not exist.");
            return 0;
        }
     }
 
     if (scalar @files > 1) {
-       &main::WARN("same package in more than one file; random.");
-       &main::DEBUG("THIS SHOULD BE FIXED SOMEHOW!!!");
-       $files[0] = &main::getRandom(@files);
+       &::WARN("same package in more than one file; random.");
+       &::DEBUG("THIS SHOULD BE FIXED SOMEHOW!!!");
+       $files[0] = &::getRandom(@files);
     }
 
     if (! -f $files[0]) {
-       &main::WARN("files[0] ($files[0]) doesn't exist.");
-       &main::msg($main::who, "WARNING: $files[0] does not exist? FIXME");
+       &::WARN("files[0] ($files[0]) doesn't exist.");
+       &::msg($::who, "WARNING: $files[0] does not exist? FIXME");
        return 'NULL';
     }
 
@@ -548,7 +673,7 @@ sub infoPackages {
     ### TODO: use fe, dump to a hash. if only one version of the package
     ###                exists. do as normal otherwise list all versions.
     if (! -f $file) {
-       &main::ERROR("D:iP: file '$file' DOES NOT EXIST!!! should never happen.");
+       &::ERROR("D:iP: file '$file' DOES NOT EXIST!!! should never happen.");
        return 0;
     }
     my %pkg = &getPackageInfo($package, $file);
@@ -564,21 +689,21 @@ sub infoPackages {
            $pkg{'info'} .= ", Installed size: \002$pkg{'installed'}\002 kB";
 
            if ($incoming) {
-               &main::status("iP: info requested and pkg is in incoming, too.");
+               &::status("iP: info requested and pkg is in incoming, too.");
                my %incpkg = &getPackageInfo($query, "debian/Packages-incoming");
 
                if (scalar keys %incpkg) {
                   $pkg{'info'} .= ". Is in incoming ($incpkg{'file'}).";
                } else {
-                   &main::ERROR("iP: pkg $query is in incoming but we couldn't get any info?");
+                   &::ERROR("iP: pkg $query is in incoming but we couldn't get any info?");
                }
            }
        } else {
-           &main::DEBUG("running debianCheck() due to problems (".scalar(keys %pkg).").");
+           &::DEBUG("running debianCheck() due to problems (".scalar(keys %pkg).").");
            &debianCheck();
-           &main::DEBUG("end of debianCheck()");
+           &::DEBUG("end of debianCheck()");
 
-           &main::msg($main::who,"Debian: Package appears to exist but I could not retrieve info about it...");
+           &::msg($::who,"Debian: Package appears to exist but I could not retrieve info about it...");
            return;
        }
     } 
@@ -603,7 +728,7 @@ sub infoPackages {
        }
     }
 
-    &main::performStrictReply("$package: $pkg{$query}");
+    &::pSReply("$package: $pkg{$query}");
 }
 
 # Usage: &infoStats($dist);
@@ -612,15 +737,15 @@ sub infoStats {
     $dist      = &getDistro($dist);
     return unless (defined $dist);
 
-    &main::DEBUG("infoS: dist => '$dist'.");
-    my $interval = $main::param{'debianRefreshInterval'} || 7;
+    &::DEBUG("infoS: dist => '$dist'.");
+    my $interval = $::param{'debianRefreshInterval'} || 7;
 
     # download packages file if needed.
     my %urls = &fixDist($dist, %urlpackages);
-    &main::DEBUG("deb: download 4.");
+    &::DEBUG("deb: download 4.");
     if (!&DebianDownload($dist, %urls)) {
-       &main::WARN("Debian(iS): could not download ANY files.");
-       &main::msg($main::who, "Debian(iS): internal error.");
+       &::WARN("Debian(iS): could not download ANY files.");
+       &::msg($::who, "Debian(iS): internal error.");
        return;
     }
 
@@ -629,16 +754,16 @@ sub infoStats {
     my $file;
     foreach $file (keys %urlpackages) {
        $file =~ s/##DIST/$dist/g;      # won't work for incoming.
-       &main::DEBUG("file => '$file'.");
+       &::DEBUG("file => '$file'.");
        if (exists $stats{$file}{'count'}) {
-           &main::DEBUG("hrm... duplicate open with $file???");
+           &::DEBUG("hrm... duplicate open with $file???");
            next;
        }
 
        open(IN,"zcat $file 2>&1 |");
 
        if (! -e $file) {
-           &main::DEBUG("iS: $file does not exist.");
+           &::DEBUG("iS: $file does not exist.");
            next;
        }
 
@@ -656,17 +781,19 @@ sub infoStats {
            } elsif (/^Size: (.*)$/) {          # compressed size.
                $stats{$file}{'csize'}  += $1;
                $total{'csize'}         += $1;
-           } elsif (/^i.*size: (.*)$/) {       # installed size.
+           } elsif (/^i.*size: (.*)$/i) {      # installed size.
                $stats{$file}{'isize'}  += $1;
                $total{'isize'}         += $1;
            }
 
-###        &main::DEBUG("=> '$_'.");
+###        &::DEBUG("=> '$_'.");
        }
        close IN;
     }
 
-    &main::performStrictReply(
+    ### TODO: don't count ppl with multiple email addresses.
+
+    &::pSReply(
        "Debian Distro Stats on $dist... ".
        "\002$total{'count'}\002 packages, ".
        "\002".scalar(keys %{$total{'maint'}})."\002 maintainers, ".
@@ -677,7 +804,7 @@ sub infoStats {
 ### TODO: do individual stats? if so, we need _another_ arg.
 #    foreach $file (keys %stats) {
 #      foreach (keys %{$stats{$file}}) {
-#          &main::DEBUG("  '$file' '$_' '$stats{$file}{$_}'.");
+#          &::DEBUG("  '$file' '$_' '$stats{$file}{$_}'.");
 #      }
 #    }
 
@@ -693,9 +820,9 @@ sub infoStats {
 # Usage: &generateIndex();
 sub generateIndex {
     my (@dists)        = @_;
-    &main::DEBUG("Debian: generateIndex() called.");
-    if (!scalar @dists) {
-       &main::ERROR("gI: no dists to generate index.");
+    &::status("Debian: !!! generateIndex() called !!!");
+    if (!scalar @dists or $dists[0] eq '') {
+       &::ERROR("gI: no dists to generate index.");
        return 1;
     }
 
@@ -707,19 +834,24 @@ sub generateIndex {
        #       regenerate it, even if it's not stale.
        # TODO: also, regenerate the index if the packages file is newer
        #       than the index.
-       next unless (&main::isStale($idx, $main::param{'debianRefreshInterval'}));
+       next unless (&::isStale($idx, $::param{'debianRefreshInterval'}));
        if (/^incoming$/i) {
-           &main::DEBUG("gIndex: calling generateIncoming()!");
+           &::DEBUG("gIndex: calling generateIncoming()!");
            &generateIncoming();
            next;
        }
 
-       &main::DEBUG("gIndeX: calling DebianDownload($dist, ...).");
+       if (/^woody$/i) {
+           &::DEBUG("Copying old index of woody to -old");
+           system("cp $idx $idx-old");
+       }
+
+       &::DEBUG("gIndeX: calling DebianDownload($dist, ...).");
        &DebianDownload($dist, %urlpackages);
 
-       &main::status("Debian: generating index for '$_'.");
+       &::status("Debian: generating index for '$dist'.");
        if (!open(OUT,">$idx")) {
-           &main::ERROR("cannot write to $idx.");
+           &::ERROR("cannot write to $idx.");
            return 0;
        }
 
@@ -728,7 +860,7 @@ sub generateIndex {
            $packages =~ s/##DIST/$dist/;
 
            if (! -e $packages) {
-               &main::ERROR("gIndex: '$packages' does not exist?");
+               &::ERROR("gIndex: '$packages' does not exist?");
                next;
            }
 
@@ -736,9 +868,8 @@ sub generateIndex {
            open(IN,"zcat $packages |");
 
            while (<IN>) {
-               if (/^Package: (.*)\n$/) {
-                   print OUT $1."\n";
-               }
+               next unless (/^Package: (.*)\n$/);
+               print OUT $1."\n";
            }
            close IN;
        }
@@ -754,12 +885,12 @@ sub validPackage {
     my @files;
     my $file;
 
-    &main::DEBUG("D: validPackage($package, $dist) called.");
+    &::DEBUG("D: validPackage($package, $dist) called.");
 
     my $error = 0;
     while (!open(IN, "debian/Packages-$dist.idx")) {
        if ($error) {
-           &main::ERROR("Packages-$dist.idx does not exist (#1).");
+           &::ERROR("Packages-$dist.idx does not exist (#1).");
            return;
        }
 
@@ -775,14 +906,14 @@ sub validPackage {
            next;
        }
 
-       if (/^$package\n$/) {
+       if (/^\Q$package\E\n$/) {
            push(@files,$file);
        }
        $count++;
     }
     close IN;
 
-    &main::DEBUG("vP: scanned $count items in index.");
+    &::DEBUG("vP: scanned $count items in index.");
 
     return @files;
 }
@@ -791,26 +922,29 @@ sub searchPackage {
     my ($dist, $query) = &getDistroFromStr($_[0]);
     my $file = "debian/Packages-$dist.idx";
     my @files;
-    my $error = 0;
+    my $error  = 0;
+    my $warn   = 0;
 
-    &main::status("Debian: Search package matching '$query' in '$dist'.");
-    if ( -z $file) {
-       &main::DEBUG("sP: $file == NULL; removing, redoing.");
-       unlink $file;
+    if ($query =~ tr/A-Z/a-z/) {
+       $warn++;
     }
 
+    &::status("Debian: Search package matching '$query' in '$dist'.");
+    unlink $file if ( -z $file);
+
     while (!open(IN, $file)) {
-       &main::ERROR("$file does not exist (#2).");
        if ($dist eq "incoming") {
-           &main::DEBUG("sP: dist == incoming; calling gI().");
+           &::DEBUG("sP: dist == incoming; calling gI().");
            &generateIncoming();
        }
 
        if ($error) {
-           &main::ERROR("could not generate index!!!");
+           &::ERROR("could not generate index!!!");
            return;
        }
+
        $error++;
+       &::DEBUG("should we be doing this?");
        &generateIndex(($dist));
     }
 
@@ -818,17 +952,16 @@ sub searchPackage {
        chop;
 
        if (/^\*(.*)$/) {
-           &main::DEBUG("sP: hrm => '$1'.");
+           $file = $1;
 
-           if (&main::isStale($file, $main::param{'debianRefreshInterval'})) {
-               &main::DEBUG("STALE $file! regen.");
+           if (&::isStale($file, $::param{'debianRefreshInterval'})) {
+               &::DEBUG("STALE $file! regen.");
                &generateIndex(($dist));
 ###            @files = searchPackage("$query $dist");
-               &main::DEBUG("EVIL HACK HACK HACK.");
+               &::DEBUG("EVIL HACK HACK HACK.");
                last;
            }
 
-           $file = $1;
            next;
        }
 
@@ -838,6 +971,10 @@ sub searchPackage {
     }
     close IN;
 
+    if (scalar @files and $warn) {
+       &::msg($::who, "searching for package name should be fully lowercase!");
+    }
+
     return @files;
 }
 
@@ -845,15 +982,21 @@ sub getDistro {
     my $dist = $_[0];
 
     if (!defined $dist or $dist eq "") {
-       &main::DEBUG("gD: dist == NULL; dist = defaultdist.");
+       &::DEBUG("gD: dist == NULL; dist = defaultdist.");
        $dist = $defaultdist;
     }
 
+    if ($dist =~ /^(slink|hamm|rex|bo)$/i) {
+       &::DEBUG("Debian: deprecated version ($dist).");
+       &::msg($::who, "Debian: deprecated distribution version.");
+       return;
+    }
+
     if (exists $dists{$dist}) {
        return $dists{$dist};
     } else {
        if (!grep /^\Q$dist\E$/i, %dists) {
-           &main::msg($main::who, "invalid dist '$dist'.");
+           &::msg($::who, "invalid dist '$dist'.");
            return;
        }
 
@@ -896,55 +1039,27 @@ sub DebianFind {
     my @results = sort &searchPackage($str);
 
     if (!scalar @results) {
-       &main::Forker("debian", sub { &searchContents($str); } );
+       &::Forker("debian", sub { &searchContents($str); } );
     } elsif (scalar @results == 1) {
-       &main::status("searchPackage returned one result; getting info of package instead!");
-       &main::Forker("debian", sub { &infoPackages("info", "$results[0] $dist"); } );
+       &::status("searchPackage returned one result; getting info of package instead!");
+       &::Forker("debian", sub { &infoPackages("info", "$results[0] $dist"); } );
     } else {
        my $prefix = "Debian Package Listing of '$str' ";
-       &main::performStrictReply( &main::formListReply(0, $prefix, @results) );
+       &::pSReply( &::formListReply(0, $prefix, @results) );
     }
 }
 
-### TODO: move DWH to &fixDist() or leave it being called by DD?
-sub fixNonUS {
-    my ($dist, %urls) = @_;
-
-    foreach (keys %urls) {
-       last unless ($dist =~ /^(woody|potato)$/);
-       next unless (/non-US/);
-       &main::DEBUG("DD: Enabling hack(??) for $dist non-US.");
-
-       my $file = $_;
-       my $url  = $urls{$_};
-       delete $urls{$file};    # heh.
-
-       foreach ("main","contrib","non-free") {
-           my ($newfile,$newurl) = ($file,$url);
-           # only needed for Packages for now, not Contents; good.
-           $newfile =~ s/non-US/non-US_$_/;
-           $newurl =~ s#non-US/bin#non-US/$_/bin#;
-           $urls{$newfile} = $newurl;
-       }
-
-       &main::DEBUG("DD: Files: ".scalar(keys %urls));
-       last;
-    }
-
-    %urls;
-}
-
 sub debianCheck {
     my $dir    = "debian/";
     my $error  = 0;
 
-    &main::status("debianCheck() called.");
+    &::status("debianCheck() called.");
 
     ### TODO: remove the following loop (check if dir exists before)
     while (1) {
        last if (opendir(DEBIAN, $dir));
        if ($error) {
-           &main::ERROR("dC: cannot opendir debian.");
+           &::ERROR("dC: cannot opendir debian.");
            return;
        }
        mkdir $dir, 0755;
@@ -958,11 +1073,11 @@ sub debianCheck {
 
        my $exit = system("gzip -t '$dir/$file'");
        next unless ($exit);
-       &main::DEBUG("hmr... => ".(time() - (stat($file))[8])."'.");
+       &::DEBUG("hmr... => ".(time() - (stat($file))[8])."'.");
        next unless (time() - (stat($file))[8] > 3600);
 
-       &main::DEBUG("dC: exit => '$exit'.");
-       &main::WARN("dC: '$dir/$file' corrupted? deleting!");
+       &::DEBUG("dC: exit => '$exit'.");
+       &::WARN("dC: '$dir/$file' corrupted? deleting!");
        unlink $dir."/".$file;
        $retval++;
     }