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

[SCM] Debian package checker branch, master, updated. 2.3.1-3-gbef51b1



The following commit has been merged in the master branch:
commit bef51b1b69dc8cdf9101ad9f32e8f7c5fc49a2a6
Author: Russ Allbery <rra@debian.org>
Date:   Sun Jan 3 13:44:38 2010 -0800

    Really fix display of area for binary packages in HTML reports
    
    * reporting/templates/maintainer.tmpl:
      + [RA] Really fix the logic to optionally display the archive area of
        additional package entries under the same source package.
    
    The fix in 2.3.0 was still comparing the wrong variables.

diff --git a/debian/changelog b/debian/changelog
index d4656fa..b1f9b22 100755
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,10 @@ lintian (2.3.2) UNRELEASED; urgency=low
     + [RA] Relax the regex for matching dh-make-perl boilerplate to catch
       the current text.  Thanks, gregor herrmann.  (Closes: #563571)
 
+  * reporting/templates/maintainer.tmpl:
+    + [RA] Really fix the logic to optionally display the archive area of
+      additional package entries under the same source package.
+
  -- Russ Allbery <rra@debian.org>  Sun, 03 Jan 2010 13:06:34 -0800
 
 lintian (2.3.1) unstable; urgency=low
diff --git a/reporting/templates/maintainer.tmpl b/reporting/templates/maintainer.tmpl
index 7179406..0cf8e79 100644
--- a/reporting/templates/maintainer.tmpl
+++ b/reporting/templates/maintainer.tmpl
@@ -98,7 +98,8 @@
                 }
 
                 my $bin_version = '';
-                unless ($info->{version} eq $version and $area eq $firstarea) {
+                unless ($info->{version} eq $version
+                        and $info->{area} eq $firstarea) {
                     $bin_version = " ($info->{version}; $info->{area})";
                 }
 

-- 
Debian package checker


Reply to: