------------------------------------------------------------
revno: 931
committer: Debian BTS <debb...@rietz>
branch nick: debian
timestamp: Mon 2009-08-24 04:13:17 +0000
message:
  merge changes from dla source
    ------------------------------------------------------------
    revno: 721.14.176
    committer: Don Armstrong <d...@donarmstrong.com>
    branch nick: source
    timestamp: Sun 2009-08-23 21:09:26 -0700
    message:
       * fix the unknown package maintainer issues in checkmaintainers
    ------------------------------------------------------------
    revno: 721.14.175
    committer: Don Armstrong <d...@donarmstrong.com>
    branch nick: source
    timestamp: Thu 2009-08-20 15:49:10 -0700
    message:
      split on keywords and tags
=== modified file 'Debbugs/Status.pm'
--- Debbugs/Status.pm   2009-08-19 06:06:41 +0000
+++ Debbugs/Status.pm   2009-08-24 04:13:15 +0000
@@ -291,6 +291,10 @@
      affects        => \&splitpackages,
      blocks         => $ditch_empty_space,
      blockedby      => $ditch_empty_space,
+     # this isn't strictly correct, but we'll split both of them for
+     # the time being until we ditch all use of keywords everywhere
+     # from the code
+     keywords       => $ditch_empty_space,
      tags           => $ditch_empty_space,
      found_versions => $ditch_empty_space,
      fixed_versions => $ditch_empty_space,

=== modified file 'scripts/process'
--- scripts/process     2009-08-19 06:06:41 +0000
+++ scripts/process     2009-08-24 04:13:15 +0000
@@ -1074,7 +1074,7 @@
     my $anymaintfound=0; my $anymaintnotfound=0;
     for my $p (splitpackages($data->{package})) {
         $p =~ y/A-Z/a-z/;
-       $p =~ /([a-z0-9.+-]+)/;
+       $p =~ /((?:src:)?[a-z0-9.+-]+)/;
        $p = $1;
        next unless defined $p;
        if (defined $gSubscriptionDomain) {

Reply via email to