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

lintian: r618 - in trunk: checks debian



Author: rra
Date: 2006-04-12 05:38:21 +0200 (Wed, 12 Apr 2006)
New Revision: 618

Modified:
   trunk/checks/debconf
   trunk/debian/changelog
Log:
* checks/debconf:
  + [RA] Allow Indices as a template field.  cdebconf uses it and
    debconf ignores it.  Reported by Frans Pop.  (Closes: #361986)

Modified: trunk/checks/debconf
===================================================================
--- trunk/checks/debconf	2006-04-09 18:45:47 UTC (rev 617)
+++ trunk/checks/debconf	2006-04-12 03:38:21 UTC (rev 618)
@@ -31,9 +31,12 @@
 my $type = shift;
 
 # From debconf-devel(7), section 'THE TEMPLATES FILE', uptodate with debconf
-# version 1.3.22
+# version 1.3.22.  Added indices for cdebconf (indicates sort order for
+# choices); debconf doesn't support it, but it ignores it, which is safe
+# behavior.
 my %template_fields;
-map { $template_fields{$_}=1 } qw(template type choices default description);
+map { $template_fields{$_}=1 }
+    qw(template type choices indices default description);
 
 # From debconf-devel(7), section 'THE TEMPLATES FILE', uptodate with debconf
 # version 1.3.22

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-04-09 18:45:47 UTC (rev 617)
+++ trunk/debian/changelog	2006-04-12 03:38:21 UTC (rev 618)
@@ -11,6 +11,9 @@
     + [RA] Include a list of known X metapackages.
   * checks/control-file{.desc,}:
     + [RA] Warn if debian/control in a source package is a symlink.
+  * checks/debconf:
+    + [RA] Allow Indices as a template field.  cdebconf uses it and
+      debconf ignores it.  Reported by Frans Pop.  (Closes: #361986)
   * checks/debdiff{.desc,}:
     + [RA] Warn if the diff contains debian/substvars.  Based on a patch
       by Michael Ablassmeier.  (Closes: #359646)



Reply to: