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

[SCM] Debian package checker branch, master, updated. 1.24.4-81-g02da515



The following commit has been merged in the master branch:
commit 8838e9f65b2bd03643ca2981ec0399e3e311720b
Author: Frank Lichtenheld <djpig@debian.org>
Date:   Sun Aug 31 00:25:41 2008 +0200

    lib/Tags/ColonSeparated.pm: Update for new features and make a little bit easier to read
    
     - Update the format to include the new severity/certainty info.
     - Include information whether the tag is experimental.
     - Move the detailled override info to the end but include info
       flag about the override status in the same column that also
       includes the experimental flag info.

diff --git a/debian/changelog b/debian/changelog
index bf8be68..d1032a5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -50,6 +50,15 @@ lintian (1.25.0) unstable; urgency=low
       lintian exits, producing confusing output interleaved with the
       shell prompt.  (Closes: #496295)
   
+  * lib/Tags/ColonSeparated.pm:
+    + [FL] Update for new features and make a little bit easier to read
+      for humans:
+      - Update the format to include the new severity/certainty info.
+      - Include information whether the tag is experimental.
+      - Move the detailled override info to the end but include info
+        flag about the override status in the same column that also
+        includes the experimental flag info.
+  
   * t/runtests:
     + [FL] Copy the changes to testset/runtests from JP's branch.
     + [RA] Fix single test mode.
diff --git a/lib/Tags/ColonSeparated.pm b/lib/Tags/ColonSeparated.pm
index bb1039a..37ec076 100644
--- a/lib/Tags/ColonSeparated.pm
+++ b/lib/Tags/ColonSeparated.pm
@@ -41,10 +41,14 @@ sub print_tag {
 
     print join(':', quote_char( ':',
 				$tag_info->{type},
-				$tag_info->{overridden}{override},
+				$tag_info->{severity},
+				$tag_info->{certainty},
+				(exists($tag_info->{experimental}) ? 'X' : '').
+				($tag_info->{overridden}{override} ? 'O' : ''),
 				@{$pkg_info}{'pkg','version','arch','type'},
 				$tag_info->{tag},
 				$extra,
+				$tag_info->{overridden}{override},
 				))."\n";
 }
 

-- 
Debian package checker


Reply to: