X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=make-britney-counts;h=2fc765673f26c36d3f95886ab94d87cb9b251792;hp=5eb3090d32f9250610fea20a3450e9d7858c6f56;hb=c0f4a4d5ce63338390dfd851c4b403769266d0d7;hpb=e6e2bdf5bb1dd5b7e095a27af2d5247b659ca5da diff --git a/make-britney-counts b/make-britney-counts index 5eb3090..2fc7656 100755 --- a/make-britney-counts +++ b/make-britney-counts @@ -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->{'wheezy-ignore'}) { push @{$unstablebugs{$package}}, $nr; } if (scanlib::check_worry($bug)) {