X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=scanlib.pm;h=54da632bab3e2041c2a9578af3443096f6283fe3;hp=d8d04671369170e199864544ebb1dd4b634521a4;hb=044edd0fbd74defd1afe209d162882da42f42224;hpb=b4b7d1e49f7fea5ba42243ea2dbf3026cd313cec diff --git a/scanlib.pm b/scanlib.pm index d8d0467..54da632 100644 --- a/scanlib.pm +++ b/scanlib.pm @@ -6,12 +6,10 @@ # which was based on an unknown other script. # # Global variables: -# %premature - list of prematurely closed bugreports # %exclude - list of bugreports to exclude from the report # %maintainer - map from packagename to maintainer # %section - map from packagename to section in the FTP-site # %packagelist - map from packagename to bugreports -# %NMU - map with NMU information use lib qw(/org/bugs.debian.org/perl); use LWP::UserAgent; @@ -25,7 +23,7 @@ use warnings; require bugcfg; package scanlib; -our (%premature,%exclude,%maintainer,%section,%packagelist,%NMU,%debbugssection,%bugs); +our (%exclude,%maintainer,%section,%packagelist,%debbugssection,%bugs); # Read the list of maintainer @@ -186,19 +184,22 @@ sub scanspooldir() { $disttags{'experimental'} = 1; } - my $relinfo = ""; + my $bi = {}; if (defined($section{$bug->{'package'}}) && $section{$bug->{'package'}} eq 'pseudo') { # versioning information makes no sense for pseudo packages, # just use the tags for my $dist qw(oldstable stable testing unstable experimental) { - $relinfo .= uc(substr($dist, 0, 1)) if $disttags{$dist}; + $bi->{$dist} = $disttags{$dist}; } next if (length($bug->{'done'})); } else { + my $affects_any = 0; + # only bother to check the versioning status for the distributions indicated by the tags for my $dist qw(oldstable stable testing unstable experimental) { local $SIG{__WARN__} = sub {}; + $bi->{$dist} = 0; next if (!$disttags{$dist}); my $presence = Debbugs::Status::bug_presence( @@ -213,24 +214,17 @@ sub scanspooldir() { # indicates that no versioning information is present and it's not closed # unversioned) if (!defined($presence) || ($presence ne 'absent' && $presence ne 'fixed')) { - $relinfo .= uc(substr($dist, 0, 1)); + $bi->{$dist} = 1; + $affects_any = 1; } } - next if $relinfo eq '' and not $premature{$f}; - $premature{$f}++ if $relinfo eq ''; + next if !$affects_any; } - $taginfo = "["; - $taginfo .= ($bug->{'keywords'} =~ /\bpending\b/ ? "P" : " "); - $taginfo .= ($bug->{'keywords'} =~ /\bpatch\b/ ? "+" : " "); - $taginfo .= ($bug->{'keywords'} =~ /\bhelp\b/ ? "H" : " "); - $taginfo .= ($bug->{'keywords'} =~ /\bmoreinfo\b/ ? "M" : " "); - $taginfo .= ($bug->{'keywords'} =~ /\bunreproducible\b/ ? "R" : " "); - $taginfo .= ($bug->{'keywords'} =~ /\bsecurity\b/ ? "S" : " "); - $taginfo .= ($bug->{'keywords'} =~ /\bupstream\b/ ? "U" : " "); - $taginfo .= ($bug->{'keywords'} =~ /\betch-ignore\b/ ? "I" : " "); - $taginfo .= "]"; + for my $keyword qw(pending patch help moreinfo unreproducible security upstream etch-ignore) { + $bi->{$keyword} = ($bug->{'keywords'} =~ /\b$keyword\b/) ? 1 : 0; + } if (length($bug->{'mergedwith'})) { my @merged = split(' ', $bug->{'mergedwith'}); @@ -239,24 +233,13 @@ sub scanspooldir() { for my $package (split /[,\s]+/, $bug->{'package'}) { $_= $package; y/A-Z/a-z/; $_= $` if m/[^-+._a-z0-9]/; - if (not defined $section{$_}) { - if (defined $debbugssection{$_}) { - $relinfo .= "X"; - } else { - next; # Skip unavailable packages - } - } - push @{$packagelist{$_}}, $f; } - if ($relinfo eq "") { # or $relinfo eq "U" # confuses e.g. #210306 - $relinfo = ""; - } else { - $relinfo = " [$relinfo]"; - } + my $taginfo = get_taginfo($bi); + my $relinfo = get_relinfo($bi); - $bugs{$f} = "$f $taginfo$relinfo " . $bug->{'subject'}; + $bugs{$f} = "$f [$taginfo] [$relinfo] " . $bug->{'subject'}; } } @@ -288,37 +271,6 @@ sub readstatus() { } -sub readNMUstatus() { - my $bug; # Number of current bug - my $source; # Source upload which closes this bug. - my $version; # Version where this bug was closed. - my $flag; # Whether this paragraph has been processed. - my ($field, $value); - - for (split /\n/, LWP::UserAgent->new->request(HTTP::Request->new(GET => shift))->content) { - chomp; - if (m/^$/) { - $NMU{$bug} = 1; - $NMU{$bug, "source"} = $source; - $NMU{$bug, "version"} = $version; - $flag = 0; - } else { - ($field, $value) = split(/: /, $_, 2); - $bug = $value if($field =~ /bug/i); - $source = $value if($field =~ /source/i); - $version = $value if($field =~ /version/i); - $flag = 1; - } - } - if ($flag) { - $NMU{$bug} = 1; - $NMU{$bug, "source"} = $source; - $NMU{$bug, "version"} = $version; - } - close P; -} - - sub urlsanit { my $url = shift; $url =~ s/%/%25/g; @@ -353,11 +305,47 @@ sub check_worry { my ($status) = @_; if ($status =~ m/^\[[^]]*I/ or - $status =~ m/ \[[^]]*X/ or $status !~ m/ \[[^]]*T/) { return 0; } return 1; } +sub check_worry_stable { + my ($status) = @_; + + if ($status !~ m/ \[[^]]*S/) { + return 0; + } + return 1; +} + +sub get_taginfo { + my $bi = shift; + + my $taginfo = ""; + $taginfo .= $bi->{'pending'} ? "P" : " "; + $taginfo .= $bi->{'patch'} ? "+" : " "; + $taginfo .= $bi->{'help'} ? "H" : " "; + $taginfo .= $bi->{'moreinfo'} ? "M" : " "; + $taginfo .= $bi->{'unreproducible'} ? "R" : " "; + $taginfo .= $bi->{'security'} ? "S" : " "; + $taginfo .= $bi->{'upstream'} ? "U" : " "; + $taginfo .= $bi->{'etch-ignore'} ? "I" : " "; + + return $taginfo; +} + +sub get_relinfo { + my $bi = shift; + + my $relinfo = ""; + for my $dist qw(oldstable stable testing unstable experimental) { + $relinfo .= uc(substr($dist, 0, 1)) if $bi->{$dist}; + } + + return $relinfo; +} + + 1;