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

[lintian] 02/02: Add changelog and rewrite regex to avoid perltidy issues



This is an automated email from the git hooks/post-receive script.

nthykier pushed a commit to branch master
in repository lintian.

commit 17b0adbb335b113e0714b6473d2d7096d59f3bb4
Author: Niels Thykier <niels@thykier.net>
Date:   Sat Sep 5 07:45:34 2015 +0200

    Add changelog and rewrite regex to avoid perltidy issues
    
    Signed-off-by: Niels Thykier <niels@thykier.net>
---
 checks/binaries.pm | 8 +++++++-
 debian/changelog   | 3 +++
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/checks/binaries.pm b/checks/binaries.pm
index 0ca8d7c..f6b36d3 100644
--- a/checks/binaries.pm
+++ b/checks/binaries.pm
@@ -487,7 +487,13 @@ sub run {
                 next if ($fname =~ m%^usr/lib/debug/%);
                 next if ($fname =~ m%\.(?:[ce]32|e64)$%);
                 next
-                  if ($fname =~ m%^lib(?:|32|x32|64)/(?:[-\w/]+/)?ld-[\d.]+\.so$%);
+                  if (
+                    $fname =~ m{
+                                  ^lib(?:|32|x32|64)/
+                                   (?:[-\w/]+/)?
+                                   ld-[\d.]+\.so$
+                                }xsm
+                  );
                 tag 'shared-lib-without-dependency-information', $file;
             } else {
                 # Some exceptions: files in /boot, /usr/lib/debug/*,
diff --git a/debian/changelog b/debian/changelog
index 10033c3..1eed4a0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,9 @@ lintian (2.5.37) UNRELEASED; urgency=medium
     + [NT] Apply patch from Michael Stapelberg to a
       common false positive spelling mistake in "go"
       binaries.  (Closes: #795614)
+    + [NT] Apply patch from Guillem Jover to avoid some false
+      positive  shared-lib-without-dependency-information tags.
+      (Closes: #798063)
   * checks/control-file.pm:
     + [AB] Apply patch by Christoph Biedl for relaxing dependency checks
       to allow versions with tilde. (Closes: #797951)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/lintian/lintian.git


Reply to: