[Pkg-cli-common-commits] [cli-common] 01/03: Imported Debian version 0.8.2

Mirco Bauer meebey at alioth.debian.org
Fri Oct 18 09:26:29 UTC 2013


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

meebey pushed a commit to branch master-experimental
in repository cli-common.

commit beea1f34e91fb3e00f0196b6e011b4fa51d6792f
Author: Mirco Bauer <meebey at meebey.net>
Date:   Wed Jan 18 08:21:33 2012 +0100

    Imported Debian version 0.8.2
---
 debian/changelog |    7 +++++++
 dh_clideps       |    2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index e1ab454..224bbc7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+cli-common (0.8.2) unstable; urgency=low
+
+  * Don't quote the regexp. Perl doesn't allow quoted (compiled) regexps to
+    subsequently have modifiers added. Broke case insensitive "i:" excludes. 
+
+ -- Iain Lane <laney at debian.org>  Tue, 17 Jan 2012 20:25:28 +0000
+
 cli-common (0.8.1) unstable; urgency=low
  
   * Brown paper bag upload
diff --git a/dh_clideps b/dh_clideps
index cc9f208..7c398e5 100755
--- a/dh_clideps
+++ b/dh_clideps
@@ -659,7 +659,7 @@ sub resolveShlibRefs {
      foreach my $excluded_moduleref (@{$dh{MODULE_EXCLUDE}}) {
        # explicitly excluded modulerefs are never checked
        $excluded_moduleref =~ /^(i:)?(.*)/;
-       my $exclude_pattern = qr/^$2(.dll)?$/;
+       my $exclude_pattern = "^$2(.dll)?\$";
        if (defined $1 && $1 eq "i:" && $moduleref =~ /$exclude_pattern/i) {
          # i: specified; case insensitive match
          verbose_print("Ignoring moduleref $moduleref (case insensitive)");

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-cli-common/packages/cli-common.git



More information about the Pkg-cli-common-commits mailing list