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

lintian: r213 - branches/1.23.0/checks



Author: djpig
Date: 2004-04-23 12:21:56 +0200 (Fri, 23 Apr 2004)
New Revision: 213

Modified:
   branches/1.23.0/checks/fields
   branches/1.23.0/checks/fields.desc
Log:
Also check for unknown fields in udeb's control file. Thx to jvw for
noticing.


Modified: branches/1.23.0/checks/fields
===================================================================
--- branches/1.23.0/checks/fields	2004-04-23 00:11:46 UTC (rev 212)
+++ branches/1.23.0/checks/fields	2004-04-23 10:21:56 UTC (rev 213)
@@ -472,6 +472,9 @@
 
 	print "I: $pkg $type: unknown-field-in-control $field\n"
 	    if ($type eq "binary" && ! $known_binary_fields{$field} && ! $known_obsolete_fields{$field});
+
+	print "I: $pkg $type: unknown-field-in-control $field\n"
+	    if ($type eq "udeb" && ! $known_udeb_fields{$field} && ! $known_obsolete_fields{$field});
 }
 
 exit 0;

Modified: branches/1.23.0/checks/fields.desc
===================================================================
--- branches/1.23.0/checks/fields.desc	2004-04-23 00:11:46 UTC (rev 212)
+++ branches/1.23.0/checks/fields.desc	2004-04-23 10:21:56 UTC (rev 213)
@@ -260,6 +260,10 @@
 Type: info
 Info: See the Policy Manual for a list of the possible fields in
  a binary package control file.
+ .
+ In udeb packages the fields pre-depends, conflicts, essential and
+ suggests are disalllowed, but they can contain the new fields
+ subarchitecture and installer-menu-item.
 Ref: policy 5.3 
 
 Tag: multiline-field



Reply to: