]> git.donarmstrong.com Git - bugscan.git/blob - bugreport
Move testing.html from debian/ to other/.
[bugscan.git] / bugreport
1 #!/usr/bin/perl
2 # vim: ts=4 sw=4 nowrap
3
4 # Generate a report of the release-critical bugs for packages
5
6 use Getopt::Std;
7 require scanlib;
8 require bugcfg;
9 use strict;
10 use warnings;
11
12 my $Version             = "BugReport 1.4\nCopyright (C) 1998-2002 Wichert Akkerman <wakkerma\@debian.org>\n";
13 my $html                = 0;
14 my $statusfile          = "status";
15 my $commentsfile        = "comments";
16 my $NMUfile             = "/debian/home/doogie/public_html/incoming/bugs_closed";
17 $NMUfile                = "/debian/home/doogie/chgscan/db/bugs_closed"; # Changed as of request by dark  -Joey, 99/11/22
18 $NMUfile                = "http://auric.debian.org/~doogie/incoming/bugs_closed"; # Changed as of request by dark  -Joey, 99/11/22
19
20 sub ShowVersion() {
21         print "$Version\n";
22         exit 0;
23 }
24
25 sub ShowUsage() {
26         print <<EOF;
27 Usage:
28   $0 [-V] [-h] [-H] [-l] [-s] [-d distrib] [-S file] [-C file]
29 Options:
30   -V    show version
31   -h    show some (hopefully) helpful information
32   -H    produce HTML output
33   -l    list all release-critical bugs
34   -s    list bug statistics
35   -t    show bugs relevant for testing only
36   -d    only list these distributions (comma-separated)
37   -S    use different statusfile
38   -C    use different commentsfile
39 EOF
40         exit 0;
41 }
42
43 sub PrintPackageHeader() {
44         my $p   = shift;        # Package to print
45         my ($name, $email);     # Name & email of maintainer
46
47         if ($html) {
48                 print "<div class=\"package\"><pre>";
49                 print "<a name=\"$p\"><strong>Package:</strong></a> " . scanlib::wwwname($p);
50                 print " ($scanlib::section{$p}).\n";
51                 print "<strong>Maintainer:</strong> ";
52                 if (defined($scanlib::maintainer{$p})) {
53                         if ($scanlib::maintainer{$p} =~ /(.*) <([^>]*)>/) {
54                                 ($name,$email) = ($1,$2);
55                         } elsif ($scanlib::maintainer{$p} =~ /<(.*) \((.*)\)>/) {
56                                 ($name,$email) = ($1,$2);
57                         } elsif ($scanlib::maintainer{$p} =~ /<(.*)>/) {
58                                 $name = $email = $1;
59                         }
60                         print "$name &lt;<a href=\"http://bugs.debian.org/$email\">$email</A>&gt;\n";
61                 } else {
62                         print "unknown\n";
63                 }
64         } else {
65                 print "\nPackage: $p ($scanlib::section{$p})\n";
66                 print "Maintainer: " . (defined($scanlib::maintainer{$p}) ? $scanlib::maintainer{$p} : "unknown") . "\n";
67         }
68 }
69
70 sub PrintPackageFooter() {
71         my $p   = shift;        # Package to print
72
73         if ($html) {
74                 print "</pre></div>\n";
75         }
76 }
77
78 sub MakeBuglist() {
79         my $p;                          # Index variable
80         my $nr;                 # Current bugnumber
81         my $sect;                       # BTS-subsection for bugnumber
82         my $header;             # Flag if packagename has already been printed
83         my $fontset;            # Did we change the font?
84
85         for my $p (sort {$a cmp $b} keys %scanlib::packagelist) {
86                 next if (defined $bugcfg::exclude{$p});
87                 $header = 0;
88                 $fontset = 0;
89                 if (defined $scanlib::comments{$p}) {
90                         if ($html && defined($scanlib::comments{$p})) {
91                                 if ($scanlib::comments{$p} =~ m/^\[REMOVE\]/) {
92                                         $fontset=1;
93                                         print "<span style=\"color: red\">";
94                                 }
95                         }
96                         $header=1;
97                         &PrintPackageHeader($p);
98                         print $scanlib::comments{$p};
99                 }
100                 for $nr (sort @{$scanlib::packagelist{$p}}) {
101                         next if (defined $bugcfg::exclude{$nr});
102                         if (! $header) {
103                                 $header = 1;
104                                 &PrintPackageHeader($p);
105                         }
106
107                         if ($html) {
108                                 my $worry = scanlib::check_worry($scanlib::bugs{$nr});
109                         
110                                 if ($scanlib::bugs{$nr} =~ m/ \[[^]]*X/) {
111                                         print '<span style="color: #808080">';
112                                 } elsif ($scanlib::bugs{$nr} =~ m/^\[[^]]*P/) {
113                                         print '<span style="color: #f040d0">';
114                                 } elsif ($scanlib::bugs{$nr} =~ m/^\[[^]]*\+/) {
115                                         print '<span style="color: #00aa00">';
116                                 } elsif ($scanlib::bugs{$nr} =~ m/^\[[^]]*H/) {
117                                         print '<span style="color: #ffaa30">';
118                                 }
119                                 print "<strike>" if ($scanlib::bugs{$nr} =~ m/^\[.......I\]/);
120                                 print "<em class=\"worry\">" if $worry;
121                                 ($sect=$nr) =~ s/([0-9]{2}).*/$1/;
122                                 print "<A NAME=\"$nr\"></A>  " . scanlib::wwwnumber($nr) . ' ' .
123                                           scanlib::htmlsanit($scanlib::bugs{$nr}) . "\n";
124                                 print "</em>" if $worry;
125                                 print "</strike>" if ($scanlib::bugs{$nr} =~ m/^\[.......I\]/);
126                         } else {
127                                 printf("  %-6d %s\n", $nr, $scanlib::bugs{$nr});
128                         }
129                         print $scanlib::comments{$nr} if (defined($scanlib::comments{$nr}));
130                         print "[FIX] Fixed by package " . $scanlib::NMU{$nr, "source"} . ", version " . $scanlib::NMU{$nr, "version"} . " in Incoming\n" if (defined $scanlib::NMU{$nr});
131                         print "</span>" if ($html && ($scanlib::bugs{$nr} =~ m/^\[[^]]*[H+P]/ ||
132                                                       $scanlib::bugs{$nr} =~ m/ \[[^]]*X/));
133                 }
134                 print "</span>" if ($fontset);
135                 if ($header) {
136                         &PrintPackageFooter($p);
137                 }
138         }
139 }
140
141
142 sub MakeStatistics() {
143         my $bugcount=0;         # Total number of bugs so far
144         my $remtotal=0;         # Total number of bugs for packages marked REMOVE
145         my $patchtotal=0;       # Total number of bugs marked patch
146         my $pendingtotal=0;     # Total number of bugs marked pending
147         my $ignoretotal=0;      # Total number of bugs marked ignore
148         my $nottestingtotal=0;  # Total number of bugs on packages not in testing
149         my $worrytotal=0;       # Total number of bugs we're actually worried about
150         my %list;               # List of bugnumber associated with package
151
152         for my $p (sort keys %scanlib::packagelist) {
153                 my $count = 0;          # Number of bugs for this package
154
155                 next if (defined $scanlib::exclude{$p});
156                 for my $nr (@{$scanlib::packagelist{$p}}) {
157                         $pendingtotal++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*P/);
158                         $patchtotal++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*\+/);
159                         $ignoretotal++ if ($scanlib::bugs{$nr} =~ m/^\[[^]]*I/);
160                         $nottestingtotal++ if ($scanlib::bugs{$nr} =~ m/ \[[^]]*X/);
161                         $worrytotal++ if (scanlib::check_worry($scanlib::bugs{$nr}));
162
163                         if (not defined($scanlib::exclude{$nr})) {
164                                 $bugcount++;
165                                 $count++;
166                         } 
167                 }
168                 $remtotal+=$count if (defined($scanlib::comments{$p}) && $scanlib::comments{$p} =~ m/^\[REMOVE\]/);
169         }
170
171         if ($html) {
172                 print "<strong>Total number of release-critical bugs:</strong> $bugcount<BR>\n";
173                 printf("<strong>Number that will disappear after removing packages marked [REMOVE]:</strong> %d<BR>\n", $remtotal);
174                 printf("<strong>Number that have a patch:</strong> %d<BR>\n", $patchtotal);
175                 printf("<strong>Number that have a fix prepared and waiting to upload:</strong> %d<BR>\n", $pendingtotal);
176                 printf("<strong>Number that are being ignored:</strong> %d<BR>\n", $ignoretotal);
177                 printf("<strong>Number on packages not in testing:</strong> %d<BR>\n", $nottestingtotal);
178                 printf("<strong>Number concerning the next release (excluding ignored and not-in-testing):</strong> %d<P>\n", $worrytotal);
179         } else {
180                 print "Total number of release-critical bugs: $bugcount\n";
181                 printf("Number that will disappear after removing packages marked [REMOVE]: %d\n", $remtotal);
182                 printf("Number that have a patch: %d\n", $patchtotal);
183                 printf("Number that have a fix prepared and waiting to upload: %d\n", $pendingtotal);
184                 printf("Number that are being ignored: %d\n", $ignoretotal);
185                 printf("Number on packages not in testing: %d\n", $nottestingtotal);
186                 printf("Number concerning the next release (excluding ignored and not-in-testing): %d\n", $worrytotal);
187         }
188 }
189
190
191 sub FilterPackages($) {
192         my $filter = shift;             # Distribution we want to keep
193
194         for my $p (sort keys %scanlib::packagelist) {
195                 delete $scanlib::packagelist{$p} unless ($scanlib::section{$p} =~ m/^$filter/);
196         }
197 }
198
199 sub FilterBugs() {
200         for my $p (sort keys %scanlib::packagelist) {
201                 $scanlib::packagelist{$p} = [ grep { scanlib::check_worry($scanlib::bugs{$_}) } @{$scanlib::packagelist{$p}} ];
202                 delete $scanlib::packagelist{$p} if (scalar @{$scanlib::packagelist{$p}} == 0);
203         }
204 }
205
206 our ($opt_h,$opt_V,$opt_S,$opt_C,$opt_H,$opt_d,$opt_t,$opt_s,$opt_l);
207
208 getopts('VhHlstd:S:C:');
209 ShowUsage if ($opt_h);
210 ShowVersion if ($opt_V);
211 $statusfile=$opt_S if ($opt_S);
212 $commentsfile=$opt_C if ($opt_C);
213 $html=1 if ($opt_H);
214
215 scanlib::readstatus($statusfile);
216 scanlib::readcomments($commentsfile);
217 # scanlib::readNMUstatus($NMUfile);
218
219 FilterPackages($opt_d) if ($opt_d);
220 FilterBugs() if ($opt_t);
221
222 MakeStatistics if ($opt_s);
223 if ($opt_l) {
224         MakeBuglist();
225 }
226
227 exit 0;
228