]> git.donarmstrong.com Git - bugscan.git/blobdiff - cleancomments
Weed out more traces of the comment system, and restore nvi brokenness.
[bugscan.git] / cleancomments
diff --git a/cleancomments b/cleancomments
deleted file mode 100755 (executable)
index 7b9f289..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/usr/bin/perl
-# vim: ts=4 sw=4 nowrap
-
-# Read a comments-file and output only the comments that are still relevant
-
-use Getopt::Std;
-require scanlib;
-require bugcfg;
-
-$Version               = "CommentClean 1.0\nCopyright (C) Wichert Akkerman <wakkerma\@debian.org>\n";
-$html                  = 0;
-$statusfile            = "status";
-$commentfile   = "comments";
-
-sub ShowVersion() {
-       print "$Version\n";
-       exit 0;
-}
-
-sub ShowUsage() {
-       print <<EOF;
-Usage:
-  $0 [-V] [-h] [-S file] [-C file]
-Options:
-  -V    show version
-  -h    show some (hopefully) helpfull information
-  -S    use different statusfile
-  -C    use different commentfile
-EOF
-       exit 0;
-}
-
-
-getopts('VhS:C:');
-ShowUsage if ($opt_h);
-ShowVersion if ($opt_V);
-$statusfile=$opt_S if ($opt_S);
-$commentfile=$opt_C if ($opt_C);
-
-&readstatus($statusfile);
-&readcomments($commentfile);
-
-for $p (keys %packagelist) {
-       for my $nr (@{$packagelist{$p}}) {
-               $found{$nr}=1;
-       }
-}
-
-for $n (sort keys %exclude) {
-       print "$n EXCLUDE\n\n"
-               if (defined($found{$n}) or defined ($packagelist{$n}));
-}
-
-for $n (sort keys %comments) {
-       print "$n\n$comments{$n}\n"
-               if (defined($found{$n}) or defined ($packagelist{$n}));
-}
-
-exit 0;
-