[libparse-yapp-perl] 06/15: drop (never uploaded) unescaped-left-brace-in-regexp.patch

gregor herrmann gregoa at debian.org
Mon Jun 19 18:27:23 UTC 2017


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

gregoa pushed a commit to branch master
in repository libparse-yapp-perl.

commit 3314daa9ca3c8baf10e44353c620bd153b9eb5ff
Author: gregor herrmann <gregoa at debian.org>
Date:   Mon Jun 19 20:02:58 2017 +0200

    drop (never uploaded) unescaped-left-brace-in-regexp.patch
    
    fixed in new upstream release
    
    Gbp-Dch: Ignore
---
 debian/changelog                                   |  2 -
 debian/patches/series                              |  1 -
 .../patches/unescaped-left-brace-in-regexp.patch   | 47 ----------------------
 3 files changed, 50 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index f551d4c..475c6a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -25,8 +25,6 @@ libparse-yapp-perl (1.20-1) UNRELEASED; urgency=medium
     Add debian/tests/pkg-perl/use-name.
     ("Testsuite: autopkgtest-pkg-perl" was already added earlier.)
     (LP: #1679328)
-  * Add patch from CPAN RT to fix "Unescaped left brace in regex" warning.
-    (Needed as well for autopkgtests.)
   * debian/watch: add uversionmangle to fix single-digit versions in
     upstream tarball.
   * Import upstream version 1.20.
diff --git a/debian/patches/series b/debian/patches/series
index 5bda0f9..25755fc 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
 man-section.patch
 pod-errors.patch
 spelling.patch
-unescaped-left-brace-in-regexp.patch
diff --git a/debian/patches/unescaped-left-brace-in-regexp.patch b/debian/patches/unescaped-left-brace-in-regexp.patch
deleted file mode 100644
index adf1429..0000000
--- a/debian/patches/unescaped-left-brace-in-regexp.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-Description: fix "Unescaped left brace in regex is deprecated, passed through in regex" warning
-Origin: CPAN RT#114776
-Bug: https://rt.cpan.org/Public/Bug/Display.html?id=114776
-Author: MAT at cpan.fsck.com
-Reviewed-by: gregor herrmann <gregoa at debian.org>
-Last-Update: 2017-04-04
-
---- a/YappParse.yp
-+++ b/YappParse.yp
-@@ -285,7 +285,7 @@
-         return($1, [ $1, $lineno[0] ]);
-     };
- 
--        $$input=~/\G{/gc
-+        $$input=~/\G\{/gc
-     and do {
-         my($level,$from,$code);
- 
-@@ -312,7 +312,7 @@
-         and return('START',[ undef, $lineno[0] ]);
-             $$input=~/\G%(expect)/gc
-         and return('EXPECT',[ undef, $lineno[0] ]);
--            $$input=~/\G%{/gc
-+            $$input=~/\G%\{/gc
-         and do {
-             my($code);
- 
---- a/lib/Parse/Yapp/Parse.pm
-+++ b/lib/Parse/Yapp/Parse.pm
-@@ -880,7 +880,7 @@
-         return($1, [ $1, $lineno[0] ]);
-     };
- 
--        $$input=~/\G{/gc
-+        $$input=~/\G\{/gc
-     and do {
-         my($level,$from,$code);
- 
-@@ -907,7 +907,7 @@
-         and return('START',[ undef, $lineno[0] ]);
-             $$input=~/\G%(expect)/gc
-         and return('EXPECT',[ undef, $lineno[0] ]);
--            $$input=~/\G%{/gc
-+            $$input=~/\G%\{/gc
-         and do {
-             my($code);
- 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libparse-yapp-perl.git



More information about the Pkg-perl-cvs-commits mailing list