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

lintian: r383 - in trunk: checks debian



Author: he
Date: 2004-12-18 13:16:22 +0100 (Sat, 18 Dec 2004)
New Revision: 383

Modified:
   trunk/checks/md5sums
   trunk/debian/changelog
Log:
* checks/md5sums: 
  + [HE] Strip off ./ at the beginning of the filenames in md5sums
  files (this seems to happen on some systems, though we don't know
  how). (Closes: #284728)



Modified: trunk/checks/md5sums
===================================================================
--- trunk/checks/md5sums	2004-12-13 23:50:35 UTC (rev 382)
+++ trunk/checks/md5sums	2004-12-18 12:16:22 UTC (rev 383)
@@ -51,7 +51,7 @@
 while (<C>) {
     chop;
     next if m/^\s*$/;
-    m/^(\S+)\s*(\S.*)$/ or fail("syntax error in md5sums control file: $_");
+    m{^(\S+)\s*(?:\./)?(\S.*)$} or fail("syntax error in md5sums control file: $_");
     $control_entry{$2} = $1;
 }
 close(C);

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-12-13 23:50:35 UTC (rev 382)
+++ trunk/debian/changelog	2004-12-18 12:16:22 UTC (rev 383)
@@ -1,3 +1,14 @@
+lintian (1.23.6) UNRELEASED; urgency=low
+
+  The "i'm really bad with names, you know" unrelease 
+
+  * checks/md5sums: 
+    + [HE] Strip off ./ at the beginning of the filenames in md5sums
+    files (this seems to happen on some systems, though we don't know
+    how). (Closes: #284728)
+
+ -- Marc 'HE' Brockschmidt <he@debian.org>  Sat, 18 Dec 2004 13:13:11 +0100
+
 lintian (1.23.5) unstable; urgency=low
 
   The "learn how to use intltool-debian correctly the hard way" release



Reply to: