X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=bugreport;h=f1501c32cbe35135a0c9be6b79a6591bb80eb4d7;hp=63f887412bc5c2e44e0c564ceca1e55e949f77ba;hb=37c1a7189dec60183ce19b121afa2747f17dda68;hpb=208048faabf59b200dbabe0ddfe34406d7c8fbd5 diff --git a/bugreport b/bugreport index 63f8874..f1501c3 100755 --- a/bugreport +++ b/bugreport @@ -12,9 +12,6 @@ use warnings; my $Version = "BugReport 1.4\nCopyright (C) 1998-2002 Wichert Akkerman \n"; my $html = 0; my $statusfile = "status"; -my $NMUfile = "/debian/home/doogie/public_html/incoming/bugs_closed"; -$NMUfile = "/debian/home/doogie/chgscan/db/bugs_closed"; # Changed as of request by dark -Joey, 99/11/22 -$NMUfile = "http://auric.debian.org/~doogie/incoming/bugs_closed"; # Changed as of request by dark -Joey, 99/11/22 sub ShowVersion() { print "$Version\n"; @@ -111,7 +108,6 @@ sub MakeBuglist() { } else { printf(" %-6d %s\n", $nr, $scanlib::bugs{$nr}); } - print "[FIX] Fixed by package " . $scanlib::NMU{$nr, "source"} . ", version " . $scanlib::NMU{$nr, "version"} . " in Incoming\n" if (defined $scanlib::NMU{$nr}); print "" if ($html && ($scanlib::bugs{$nr} =~ m/^\[[^]]*[H+P]/ || $scanlib::bugs{$nr} =~ m/ \[[^]]*X/)); } @@ -127,7 +123,6 @@ sub MakeStatistics() { my $patchtotal=0; # Total number of bugs marked patch my $pendingtotal=0; # Total number of bugs marked pending my $ignoretotal=0; # Total number of bugs marked ignore - my $nottestingtotal=0; # Total number of bugs on packages not in testing my $worrytotal=0; # Total number of bugs we're actually worried about my %list; # List of bugnumber associated with package @@ -139,7 +134,6 @@ sub MakeStatistics() { $pendingtotal++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*P/); $patchtotal++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*\+/); $ignoretotal++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*I/); - $nottestingtotal++ if ($scanlib::bugs{$nr} =~ m/ \[[^]]*X/); $worrytotal++ if (scanlib::check_worry($scanlib::bugs{$nr})); if (not defined($scanlib::exclude{$nr})) { @@ -154,14 +148,12 @@ sub MakeStatistics() { printf("Number that have a patch: %d
\n", $patchtotal); printf("Number that have a fix prepared and waiting to upload: %d
\n", $pendingtotal); printf("Number that are being ignored: %d
\n", $ignoretotal); - printf("Number on packages not in testing: %d
\n", $nottestingtotal); printf("Number concerning the next release (excluding ignored and not-in-testing): %d

\n", $worrytotal); } else { print "Total number of release-critical bugs: $bugcount\n"; printf("Number that have a patch: %d\n", $patchtotal); printf("Number that have a fix prepared and waiting to upload: %d\n", $pendingtotal); printf("Number that are being ignored: %d\n", $ignoretotal); - printf("Number on packages not in testing: %d\n", $nottestingtotal); printf("Number concerning the next release (excluding ignored and not-in-testing): %d\n", $worrytotal); } } @@ -191,7 +183,6 @@ $statusfile=$opt_S if ($opt_S); $html=1 if ($opt_H); scanlib::readstatus($statusfile); -# scanlib::readNMUstatus($NMUfile); FilterPackages($opt_d) if ($opt_d); FilterBugs() if ($opt_t);