X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=bugreport;h=b68a6c65bbba7e644beb68512d177e74b0a9fba9;hp=75654cc9b5b42eada2fa54cbdd8b5dc7137a2b71;hb=HEAD;hpb=817d5389c87ae35e3dabbcc689d1fd77a339daa2 diff --git a/bugreport b/bugreport index 75654cc..b68a6c6 100755 --- a/bugreport +++ b/bugreport @@ -1,11 +1,13 @@ #!/usr/bin/perl -# vim: ts=4 sw=4 nowrap +# vim: ts=8 sw=8 nowrap # Generate a report of the release-critical bugs for packages use Getopt::Std; -require scanlib; -require bugcfg; +use File::Basename; +use lib dirname(__FILE__); +use bugcfg; +use scanlib; use strict; use warnings; @@ -21,13 +23,14 @@ sub ShowVersion() { sub ShowUsage() { print <{'help'}) { print ''; } - print "" if ($scanlib::bugs{$nr}->{'sarge-ignore'} || $scanlib::bugs{$nr}->{'etch-ignore'}); + print "" if ($scanlib::bugs{$nr}->{$bugcfg::debian_releases->{stable}.'-ignore'} || $scanlib::bugs{$nr}->{$bugcfg::debian_releases->{testing}.'-ignore'}); print "" if $worry; ($sect=$nr) =~ s/([0-9]{2}).*/$1/; printf " %s [%s] [%s] %s\n", scanlib::wwwnumber($nr), @@ -110,7 +113,7 @@ sub MakeBuglist() { scanlib::get_relinfo($scanlib::bugs{$nr}), scanlib::htmlsanit($scanlib::bugs{$nr}->{'subject'}); print "" if $worry; - print "" if ($scanlib::bugs{$nr}->{'sarge-ignore'} || $scanlib::bugs{$nr}->{'etch-ignore'}); + print "" if ($scanlib::bugs{$nr}->{$bugcfg::debian_releases->{stable}.'-ignore'} || $scanlib::bugs{$nr}->{$bugcfg::debian_releases->{testing}.'-ignore'}); } else { printf(" %-6d [%s] [%s] %s\n", $nr, scanlib::get_taginfo($scanlib::bugs{$nr}), scanlib::get_relinfo($scanlib::bugs{$nr}), $scanlib::bugs{$nr}->{'subject'}); @@ -126,24 +129,30 @@ sub MakeBuglist() { } -sub MakeStatistics() { +sub MakeStatistics { my $bugcount=0; # Total number of bugs so far 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 $worrytotal=0; # Total number of bugs we're actually worried about my $stabletotal=0; # Total number of bugs affecting stable + my $oldstabletotal=0; # Total number of bugs affecting oldstable my %list; # List of bugnumber associated with package + my %seen_bugs; # bugs which have already been counted for my $p (sort keys %scanlib::packagelist) { my $count = 0; # Number of bugs for this package for my $nr (@{$scanlib::packagelist{$p}}) { + # if we've already counted this bug, we don't want to count it again + next if $seen_bugs{$nr}; + $seen_bugs{$nr} = 1; $pendingtotal++ if ($scanlib::bugs{$nr}->{'pending'}); $patchtotal++ if ($scanlib::bugs{$nr}->{'patch'}); - $ignoretotal++ if ($scanlib::bugs{$nr}->{'sarge-ignore'} || $scanlib::bugs{$nr}->{'etch-ignore'}); + $ignoretotal++ if ($scanlib::bugs{$nr}->{$bugcfg::debian_releases->{stable}.'-ignore'} || $scanlib::bugs{$nr}->{$bugcfg::debian_releases->{testing}.'-ignore'}); $worrytotal++ if (scanlib::check_worry($scanlib::bugs{$nr})); $stabletotal++ if (scanlib::check_worry_stable($scanlib::bugs{$nr})); + $oldstabletotal++ if (scanlib::check_worry_oldstable($scanlib::bugs{$nr})); $bugcount++; $count++; @@ -151,12 +160,13 @@ sub MakeStatistics() { } if ($html) { - print "Total number of release-critical bugs: $bugcount
\n"; + 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 concerning the current stable release: %d
\n", $stabletotal); - printf("Number concerning the next release: %d

\n", $worrytotal); + printf("Number concerning the current stable release: %d
\n", $stabletotal); + printf("Number concerning the next release: %d

\n", $worrytotal); + printf("Number concerning the previous stable release: %d

\n", $oldstabletotal); } else { print "Total number of release-critical bugs: $bugcount\n"; printf("Number that have a patch: %d\n", $patchtotal); @@ -164,6 +174,7 @@ sub MakeStatistics() { printf("Number that are being ignored: %d\n", $ignoretotal); printf("Number concerning the current stable release: %d\n", $stabletotal); printf("Number concerning the next release: %d\n", $worrytotal); + printf("Number concerning the previous stable release: %d\n", $oldstabletotal); } } @@ -172,7 +183,8 @@ sub FilterPackages($) { my $filter = shift; # Distribution we want to keep for my $p (sort keys %scanlib::packagelist) { - delete $scanlib::packagelist{$p} unless ($scanlib::section{$p} =~ m/^$filter/); + delete $scanlib::packagelist{$p} unless (defined $scanlib::section{$p} and + $scanlib::section{$p} =~ m/^$filter/); } } @@ -183,9 +195,22 @@ sub FilterBugs() { } } -our ($opt_h,$opt_V,$opt_S,$opt_H,$opt_d,$opt_t,$opt_s,$opt_l); +sub FilterBugsStable() { + for my $p (sort keys %scanlib::packagelist) { + $scanlib::packagelist{$p} = [ grep { scanlib::check_worry_stable($scanlib::bugs{$_}) } @{$scanlib::packagelist{$p}} ]; + delete $scanlib::packagelist{$p} if (scalar @{$scanlib::packagelist{$p}} == 0); + } +} +sub FilterBugsOldStable() { + for my $p (sort keys %scanlib::packagelist) { + $scanlib::packagelist{$p} = [ grep { scanlib::check_worry_oldstable($scanlib::bugs{$_}) } @{$scanlib::packagelist{$p}} ]; + delete $scanlib::packagelist{$p} if (scalar @{$scanlib::packagelist{$p}} == 0); + } +} + +our ($opt_h,$opt_V,$opt_S,$opt_H,$opt_d,$opt_b,$opt_t,$opt_s,$opt_l,$opt_o); -getopts('VhHlstd:S:'); +getopts('VhHlsbtod:S:'); ShowUsage if ($opt_h); ShowVersion if ($opt_V); $statusfile=$opt_S if ($opt_S); @@ -194,9 +219,11 @@ $html=1 if ($opt_H); scanlib::readstatus($statusfile); FilterPackages($opt_d) if ($opt_d); +FilterBugsStable() if ($opt_b); FilterBugs() if ($opt_t); +FilterBugsOldStable() if ($opt_o); -MakeStatistics if ($opt_s); +MakeStatistics() if ($opt_s); if ($opt_l) { MakeBuglist(); }