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

lintian: r107 - in trunk: checks debian



Author: jeroen
Date: 2004-03-16 00:28:59 +0100 (Tue, 16 Mar 2004)
New Revision: 107

Modified:
   trunk/checks/binaries
   trunk/debian/changelog
Log:
checks/binaries:
+ Ignore static binaries in /usr/lib/debug


Modified: trunk/checks/binaries
===================================================================
--- trunk/checks/binaries	2004-03-10 02:56:32 UTC (rev 106)
+++ trunk/checks/binaries	2004-03-15 23:28:59 UTC (rev 107)
@@ -161,10 +161,12 @@
 	if ($info =~ m/shared object/o) {
 	    print "W: $pkg $type: shared-lib-without-dependency-information $file\n";
 	} else {
-	    # Some exceptions: files in /boot, named *-static or *.static, or
-	    # *-static as package-name.
+	    # Some exceptions: files in /boot, /usr/lib/debug/*, named *-static or
+	    # *.static, or *-static as package-name.
 	    use File::Basename;
 	    next if (dirname($file) eq './boot');
+	    # Location of debugging symbols:
+	    next if ($file =~ m#^./usr/lib/debug/#);
 	    next if ($file =~ /(\.|-)static$/);
 	    next if ($pkg =~ /-static$/);
 
@@ -233,3 +235,5 @@
     }
     exit 1;
 }
+
+# vim: ts=8 sw=4

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-03-10 02:56:32 UTC (rev 106)
+++ trunk/debian/changelog	2004-03-15 23:28:59 UTC (rev 107)
@@ -1,11 +1,13 @@
 lintian (1.23.0) UNRELEASED; urgency=low
 
   The ``moving forward'' release
-  
+
+  * checks/binaries:
+    + [JvW] Ignore static binaries in /usr/lib/debug
   * checks/menu-format:
     + [FL] only issue one warning about needs=dwww, not two
 
- -- Frank Lichtenheld <djpig@debian.org>  Mon,  8 Mar 2004 17:35:03 +0100
+ -- Jeroen van Wolffelaar <jeroen@wolffelaar.nl>  Tue, 16 Mar 2004 00:27:29 +0100
 
 lintian (1.22.12) unstable; urgency=low
 



Reply to: