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

carnil pushed a commit to branch master
in repository libconvert-nls-date-format-perl.

commit 6c070a728da69f89572ab47bf1a893258cfa0b73
Author: Salvatore Bonaccorso <car...@debian.org>
Date:   Sun Dec 27 12:23:08 2015 +0100

    Escape brace in regexp in Convert::NLS_DATE_FORMAT
    
    Unescaped left brace used in regexp is deprecated and issues a warning
    under Perl 5.22.
    
    Closes: #809093
---
 debian/patches/escape-brace-in-regex.patch | 21 +++++++++++++++++++++
 debian/patches/series                      |  1 +
 2 files changed, 22 insertions(+)

diff --git a/debian/patches/escape-brace-in-regex.patch 
b/debian/patches/escape-brace-in-regex.patch
new file mode 100644
index 0000000..0ae9506
--- /dev/null
+++ b/debian/patches/escape-brace-in-regex.patch
@@ -0,0 +1,21 @@
+Description: Escape braces in regexp
+ Unescaped braces in regexp are deprecated and issue a warning
+ when used in Perl 5.22.
+Origin: vendor
+Bug-Debian: https://bugs.debian.org/809093
+Author: Salvatore Bonaccorso <car...@debian.org>
+Last-Update: 2015-12-27
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=110651
+Bug: https://rt.cpan.org/Ticket/Display.html?id=110651
+
+--- a/lib/Convert/NLS_DATE_FORMAT.pm
++++ b/lib/Convert/NLS_DATE_FORMAT.pm
+@@ -110,7 +110,7 @@ sub posix2oracle {
+     my ($format) = @_;
+     # regex from DateTime
+     $format =~ s/
+-                    (%{\w+})
++                    (%\{\w+\})
+                 /
+                     $formats{$1} ? $formats{$1} : "\%$1"
+                 /sgex;
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..f147473
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+escape-brace-in-regex.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libconvert-nls-date-format-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to