]> git.donarmstrong.com Git - bugscan.git/blobdiff - make-britney-counts
ignore undefined values when we filter
[bugscan.git] / make-britney-counts
index 5eb3090d32f9250610fea20a3450e9d7858c6f56..a603b801d6cd0ce306712c8d99d91f22797cbf1b 100755 (executable)
@@ -44,9 +44,11 @@ my %unstablebugs = ();
 while (my ($nr, $bug) = each %scanlib::bugs) {
        for my $package (split /[,\s]+/, $bug->{'package'}) {
                $package =~ y/A-Z/a-z/;
-               $package = $` if ($package =~ /[^-+._a-z0-9]/);
+               $package = $` if ($package =~ /[^-+._:a-z0-9]/);
 
-               if (scanlib::check_worry_unstable($bug)) {
+               # this hack is specific to britney counts, and ignores
+               # bugs tagged ignore for the next testing release
+               if (scanlib::check_worry_unstable($bug) and not $bug->{'squeeze-ignore'}) {
                        push @{$unstablebugs{$package}}, $nr;
                }
                if (scanlib::check_worry($bug)) {