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

lintian: r775 - in trunk: checks debian



Author: rra
Date: 2006-11-11 08:52:53 +0100 (Sat, 11 Nov 2006)
New Revision: 775

Modified:
   trunk/checks/cruft
   trunk/checks/cruft.desc
   trunk/debian/changelog
Log:
* checks/cruft{.desc,}:
  + [RA] Tighten the timestamp check on config.{sub,guess} to look for
    files dated 2004 or newer, since that's when x86_64 was added.
    Increase to an error at the request of Ryan Murray since we already
    suppress this warning of config.{guess,sub} are modified by the
    Debian patch or if the package build-depends on autotools-dev.
    (Closes: #190897)

Modified: trunk/checks/cruft
===================================================================
--- trunk/checks/cruft	2006-11-11 07:28:28 UTC (rev 774)
+++ trunk/checks/cruft	2006-11-11 07:52:53 UTC (rev 775)
@@ -106,7 +106,7 @@
 	open F, $b or die "can't open $name: $!";
 	while (<F>) {
             last if $. > 10; # it's on the 6th line, but be a bit more lenient
-	    if (/^(?:timestamp|version)='(\d+)(.+)'$/ and $1 < 2002) {
+	    if (/^(?:timestamp|version)='(\d+)(.+)'$/ and $1 < 2004) {
 		tag "outdated-autotools-helper-file", "$name $1$2";
 	    }
 	}

Modified: trunk/checks/cruft.desc
===================================================================
--- trunk/checks/cruft.desc	2006-11-11 07:28:28 UTC (rev 774)
+++ trunk/checks/cruft.desc	2006-11-11 07:52:53 UTC (rev 775)
@@ -38,10 +38,11 @@
  recompiling on various architectures, in order to save space on mirrors.
 
 Tag: outdated-autotools-helper-file
-Type: warning
-Info: The referenced file has a time stamp older than year 2002. This
- usually means that the source package will not work correctly on all
- currently released architectures.
+Type: error
+Info: The referenced file has a time stamp older than year 2004 and the
+ package does not build-depend on autotools-dev and therefore apparently
+ does not update it. This usually means that the source package will not
+ work correctly on all currently released architectures.
 
 Tag: svn-commit-file-in-source
 Type: warning

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-11-11 07:28:28 UTC (rev 774)
+++ trunk/debian/changelog	2006-11-11 07:52:53 UTC (rev 775)
@@ -16,6 +16,13 @@
       different archive category from the source package or the other
       binary packages.  Idea from Yann Dirson.  (Closes: #394720)
     + [RA] Close opened files.
+  * checks/cruft{.desc,}:
+    + [RA] Tighten the timestamp check on config.{sub,guess} to look for
+      files dated 2004 or newer, since that's when x86_64 was added.
+      Increase to an error at the request of Ryan Murray since we already
+      suppress this warning of config.{guess,sub} are modified by the
+      Debian patch or if the package build-depends on autotools-dev.
+      (Closes: #190897)
   * checks/debconf{.desc,}:
     + [RA] Take into account comma escaping when checking the number of
       translated choices.  Reported by Frans Pop.  (Closes: #395028)
@@ -59,7 +66,7 @@
       various subdirectories of its standard search path based on hardware
       capabilities.  Reported by Aurelien Jarno.  (Closes: #396278)
 
- -- Russ Allbery <rra@debian.org>  Fri, 10 Nov 2006 22:45:51 -0800
+ -- Russ Allbery <rra@debian.org>  Fri, 10 Nov 2006 23:50:52 -0800
 
 lintian (1.23.25) unstable; urgency=low
 



Reply to: