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

lintian: r753 - in trunk: checks debian



Author: rra
Date: 2006-09-27 02:58:33 +0200 (Wed, 27 Sep 2006)
New Revision: 753

Modified:
   trunk/checks/scripts
   trunk/debian/changelog
Log:
  + [RA] Allow tcsh to satisfy a csh dependency.  Reported by Yann
    Dirson.  (Closes: #389615)
  + [RA] Improve the check for shell scripts that are actually exec
    wrappers around scripts written in another language.

Modified: trunk/checks/scripts
===================================================================
--- trunk/checks/scripts	2006-09-25 03:43:17 UTC (rev 752)
+++ trunk/checks/scripts	2006-09-27 00:58:33 UTC (rev 753)
@@ -113,7 +113,7 @@
 				'ash' => 'ash',
 				'bltwish' => 'blt',
 				'burlap' => 'felt',
-				'csh' => 'c-shell',
+				'csh' => 'c-shell | tcsh',
 				'dash' => 'dash',
 				'expect' => 'expect',
 				'expectk' => 'expectk',
@@ -657,7 +657,7 @@
 	next if /^#/o;
 	next if /^$/o;
         last if (++$i > 20);
-        if (/(^\s*|\beval\s*\'|;)?exec\s*.+\s*.?\$0.?\s*(--\s*)?(\${1\+)?.?\$\@/o) {
+        if (/(^\s*|\beval\s*\'|;)exec\s*.+\s*.?\$0.?\s*(--\s*)?(\${1:?\+)?.?\$\@/o) {
             $ret = 1;
             last;
         }

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-09-25 03:43:17 UTC (rev 752)
+++ trunk/debian/changelog	2006-09-27 00:58:33 UTC (rev 753)
@@ -31,6 +31,10 @@
       virtual package and improve the description of the wish virtual
       package in its tag.  Fix inverted logic that got the wish dependency
       backwards.  Reported by Hamish Moffatt.  (Closes: #387845)
+    + [RA] Allow tcsh to satisfy a csh dependency.  Reported by Yann
+      Dirson.  (Closes: #389615)
+    + [RA] Improve the check for shell scripts that are actually exec
+      wrappers around scripts written in another language.
 
   * frontend/lintian:
     + [RA] Check the existence and value of the Urgency field in *.changes



Reply to: