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

lintian: r67 - in trunk: checks debian



Author: jeroen
Date: 2004-02-26 21:59:45 +0100 (Thu, 26 Feb 2004)
New Revision: 67

Modified:
   trunk/checks/debconf
   trunk/debian/changelog
Log:
checks/debconf:
+ Update valid types, since currently 'title' is supported now too
  (Closes: #234379, #234608)


Modified: trunk/checks/debconf
===================================================================
--- trunk/checks/debconf	2004-02-26 20:52:18 UTC (rev 66)
+++ trunk/checks/debconf	2004-02-26 20:59:45 UTC (rev 67)
@@ -29,12 +29,24 @@
 my $pkg = shift;
 my $type = shift;
 
+# From debconf-devel(7), section 'THE TEMPLATES FILE', uptodate with debconf
+# version 1.3.22
 my %template_fields;
 map { $template_fields{$_}=1 } qw(template type choices default description);
 
+# From debconf-devel(7), section 'THE TEMPLATES FILE', uptodate with debconf
+# version 1.3.22
 my %valid_types;
-map { $valid_types{$_}=1 } qw(string boolean select multiselect
-	                      note text password);
+map { $valid_types{$_}=1 } qw(
+	string
+	password
+	boolean
+	select
+	multiselect
+	note
+	text
+	title
+	);
 
 my $seenconfig='';
 my $seentemplates='';

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-02-26 20:52:18 UTC (rev 66)
+++ trunk/debian/changelog	2004-02-26 20:59:45 UTC (rev 67)
@@ -1,7 +1,7 @@
 lintian (1.22.12) unstable; urgency=low
 
   Frank Lichtenheld <djpig@debian.org>
-  * man/lintian.1: 
+  * man/lintian.1:
     + sync man page with the --help output by adding
       missing options (Closes: #198615)
       Based on a patch by Robert Lemmen.
@@ -20,8 +20,8 @@
     + Don't advise to point to the perl packages' copyright file
       (Closes: #193293)
       Thanks to Martin Orr for pointing this out.
-    + Fixed false positives of 
-      copyright-should-refer-to-common-license-file-for-gpl due to 
+    + Fixed false positives of
+      copyright-should-refer-to-common-license-file-for-gpl due to
       the GFDL. (Closes: #192278)
       Thanks to Ross Burton for reporting this.
   * checks/debhelper.desc:
@@ -29,8 +29,13 @@
       debhelper(1). (Closes: #188245)
       Thanks to Brian Nelson for pointing this out.
 
- -- Frank Lichtenheld <djpig@debian.org>  Sat, 21 Feb 2004 16:55:27 +0100
+  Jeroen van Wolffelaar <jeroen@wolffelaar.nl>
+  * checks/debconf:
+    + Update valid types, since currently 'title' is supported now too
+      (Closes: #234379, #234608)
 
+ -- Frank Lichtenheld <djpig@debian.org>  Thu, 26 Feb 2004 21:52:14 +0100
+
 lintian (1.22.11) unstable; urgency=low
 
   Jeroen van Wolffelaar <jeroen@wolffelaar.nl>



Reply to: