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

[SCM] Debian package checker branch, master, updated. 1.24.3-13-g38eaead



The following commit has been merged in the master branch:
commit 38eaeadaf0772a33cae6bb7f26971bd490c150c0
Author: Russ Allbery <rra@debian.org>
Date:   Mon Aug 11 11:59:19 2008 -0700

    Fix command parsing in command-with-path-in-maintainer-script
    
    * checks/scripts:
      + [RA] Add dash to the recognized characters in a command in
        command-with-path-in-maintainer-script to avoid truncation.  Thanks,
        Thijs Kinkhorst.  (Closes: #494723)

diff --git a/checks/scripts b/checks/scripts
index 9abddc2..3e96b67 100644
--- a/checks/scripts
+++ b/checks/scripts
@@ -736,7 +736,7 @@ while (<SCRIPTS>) {
 		    tag "maintainer-script-modifies-inetd-conf", "$file:$."
 			unless Dep::implies($deps{provides}, Dep::parse('inet-superserver'));
 		}
-		if (m,^$LEADIN(/(usr/)?s?bin/\w+),) {
+		if (m,^$LEADIN(/(usr/)?s?bin/[\w-]+),) {
 		    tag "command-with-path-in-maintainer-script", "$file:$. $1";
 		}
 
diff --git a/debian/changelog b/debian/changelog
index 39bc841..811ea0a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,9 @@ lintian (1.24.4) UNRELEASED; urgency=low
     + [ADB] Split the "read without variable or with invalid options" bashism
       test in two, thus enabling the checks to be more accurate and avoiding
       an uninitialized variable warning.  (Closes: #494450)
+    + [RA] Add dash to the recognized characters in a command in
+      command-with-path-in-maintainer-script to avoid truncation.  Thanks,
+      Thijs Kinkhorst.  (Closes: #494723)
   * checks/shared-libs.desc:
     + [RA] Clarify that shlibs-declares-dependency-on-other-package can be
       issued for a version mismatch.  (Closes: #494400)

-- 
Debian package checker


Reply to: