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

lintian: r442 - in trunk: checks debian



Author: djpig
Date: 2005-07-11 15:08:12 +0200 (Mon, 11 Jul 2005)
New Revision: 442

Modified:
   trunk/checks/common_data.pm
   trunk/checks/fields
   trunk/debian/changelog
Log:
- Fix typo (hurd-386 -> hurd-i386) from last release that lead to
  spurious warnings about unknown architectures
- Actually mention which architecture we're complaining about


Modified: trunk/checks/common_data.pm
===================================================================
--- trunk/checks/common_data.pm	2005-07-10 15:12:52 UTC (rev 441)
+++ trunk/checks/common_data.pm	2005-07-11 13:08:12 UTC (rev 442)
@@ -13,7 +13,7 @@
 # simple defines for commonly needed data
 
 %known_archs = map { $_ => 1 }
-    ('alpha', 'arm', 'hppa', 'hurd-386', 'i386', 'ia64', 'mips', 'mipsel', 
+    ('alpha', 'arm', 'hppa', 'hurd-i386', 'i386', 'ia64', 'mips', 'mipsel', 
      'm68k', 'powerpc', 's390', 'sparc', 'any', 'all');
 
 %non_standard_archs = map { $_ => 1 }

Modified: trunk/checks/fields
===================================================================
--- trunk/checks/fields	2005-07-10 15:12:52 UTC (rev 441)
+++ trunk/checks/fields	2005-07-11 13:08:12 UTC (rev 442)
@@ -106,9 +106,9 @@
 
 	for my $arch (@archs) {
 		if ($non_standard_archs{$arch}) {
-			tag "non-standard-architecture", "";
+			tag "non-standard-architecture", "$arch";
 		} elsif (! $known_archs{$arch}) {
-			tag "unknown-architecture", "";
+			tag "unknown-architecture", "$arch";
 		}
 	}
 

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2005-07-10 15:12:52 UTC (rev 441)
+++ trunk/debian/changelog	2005-07-11 13:08:12 UTC (rev 442)
@@ -1,3 +1,13 @@
+lintian (1.23.11) unstable; urgency=low
+
+  * checks/common_data.pm:
+    + [FL] Fix typo (hurd-386 -> hurd-i386) from last release
+      that lead to spurious warnings about unknown architectures
+  * checks/fields:
+    + [FL] Actually mention which architecture we're complaining about
+
+ -- Frank Lichtenheld <djpig@debian.org>  Mon, 11 Jul 2005 15:50:10 +0300
+
 lintian (1.23.10) unstable; urgency=low
 
   * The "Ah, it's LinuxTag and I still have free time!" release



Reply to: