[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.3.4-82-g10f4309



The following commit has been merged in the master branch:
commit 0ab55ac7e5720b6d896bf453ba39122b996b5313
Author: Adam D. Barratt <adam@adam-barratt.org.uk>
Date:   Sat Apr 3 18:10:32 2010 +0100

    Support .changes file tags in update-coverage
    
    * private/update-coverage:
      + [ADB] Support .changes file tags

diff --git a/debian/changelog b/debian/changelog
index e6a915d..6a84708 100755
--- a/debian/changelog
+++ b/debian/changelog
@@ -125,6 +125,8 @@ lintian (2.4.0) UNRELEASED; urgency=low
 
   * private/refresh-virtual-packages-data:
     + [ADB] Use "==" for numeric comparison, not "eq".
+  * private/update-coverage:
+    + [ADB] Support .changes file tags
 
   * t/runtests:
     + [ADB] Don't flag lintian output lines for .changes tags as invalid
diff --git a/private/update-coverage b/private/update-coverage
index 1f3152c..5e9b564 100755
--- a/private/update-coverage
+++ b/private/update-coverage
@@ -64,7 +64,7 @@ for my $tagfile (<t/changes/*.tags>, <t/debs/*/tags>, <t/source/*/tags>) {
     open(IN, '<', $tagfile) or die "Cannot open $tagfile: $!\n";
     local $_;
     while (<IN>) {
-        if (/^(.): (\S+)(?: (?:source|udeb))?: (\S+)/) {
+        if (/^(.): (\S+)(?: (?:changes|source|udeb))?: (\S+)/) {
             delete $tags{$3};
         }
     }
@@ -82,7 +82,7 @@ for my $tagfile (<testset/tags.*>) {
     open (IN, '<', $tagfile) or die "Cannot open $tagfile: $!\n";
     local $_;
     while (<IN>) {
-        if (/^(.): (\S+)(?: (?:source|udeb))?: (\S+)/) {
+        if (/^(.): (\S+)(?: (?:changes|source|udeb))?: (\S+)/) {
             if (exists $tags{$3}) {
                 $legacy{$3} = $tags{$3};
                 delete $tags{$3};

-- 
Debian package checker


Reply to: