X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=blobdiff_plain;f=make-britney-counts;h=1c5705584b62d075e1e4b6d521a23643797eb28c;hp=b67d1325e906e9ba416d816488bd727e3bffb585;hb=61dc25d9ca3fe9ac4a7fdef02d2e414484fb9aeb;hpb=58e5d0d29c328af4ea46abed36a388c3d91876e2 diff --git a/make-britney-counts b/make-britney-counts index b67d132..1c57055 100755 --- a/make-britney-counts +++ b/make-britney-counts @@ -44,11 +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]/); # 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'}) { + if (scanlib::check_worry_unstable($bug) and not $bug->{$bugcfg::debian_releases->{testing}.'-ignore'}) { push @{$unstablebugs{$package}}, $nr; } if (scanlib::check_worry($bug)) {