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

[SCM] Debian package checker branch, master, updated. 2.2.2-7-g827e8d2



The following commit has been merged in the master branch:
commit 827e8d2446d7a44d46f7fdfaf50fe5df307adcb3
Author: Raphael Geissert <atomo64@gmail.com>
Date:   Wed Feb 4 20:07:31 2009 +0000

    Don't warn about "duplicated" fonts in udebs (the "duplicate" being in a .deb)
    
    * checks/files:
      + Don't report duplicate-font-file for udebs.  Patch by Raphael
        Geissert.  (Closes: #514095)

diff --git a/checks/files b/checks/files
index 473818c..ad60222 100644
--- a/checks/files
+++ b/checks/files
@@ -735,7 +735,7 @@ foreach my $file (sort keys %{$info->index}) {
 	    my $font = lc $1;
 	    if ($FONT_PACKAGES->known($font)) {
 		tag 'duplicate-font-file', "$file also in", $FONT_PACKAGES->value($font)
-		    if ($pkg ne $FONT_PACKAGES->value($font));
+		    if ($pkg ne $FONT_PACKAGES->value($font) and $type ne 'udeb');
 	    } elsif ($pkg !~ m/^[ot]tf-/) {
 		tag 'font-in-non-font-package', $file;
 	    }
diff --git a/debian/changelog b/debian/changelog
index a1ca793..ef9ccce 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,9 @@ lintian (2.2.3) UNRELEASED; urgency=low
       no practical effect on the Debian package.  Wishlist implies that
       a wishlist bug against the package would be appropriate, which
       seems too strong.
+  * checks/files:
+    + [ADB] Don't report duplicate-font-file for udebs.  Patch by Raphael
+      Geissert.  (Closes: #514095)
 
   * unpack/list-{binpkg,udebpkg}:
     + [RA] Preserve the source_version field from the previous list when

-- 
Debian package checker


Reply to: