[SCM] Debian packaging of libregexp-optimizer-perl branch, master, updated. debian/0.15-3-17-gd6128b4

gregor herrmann gregoa at debian.org
Sat Jun 8 21:22:31 UTC 2013


The following commit has been merged in the master branch:
commit aedd5a541fff8cce9d78752c6230a0c4a3e4420e
Author: gregor herrmann <gregoa at debian.org>
Date:   Sat Jun 8 23:12:53 2013 +0200

    Drop both patches, not applicable anymore.

diff --git a/debian/README.Debian b/debian/README.Debian
deleted file mode 100644
index 13f98c2..0000000
--- a/debian/README.Debian
+++ /dev/null
@@ -1,8 +0,0 @@
-Three of the Regexp::Optimizer tests fail becase of a bug reported in 
-Perl 5.10 [perl #56444].  because of this one of the test cases in 
-t/03-utf8.t has been commented out for the time being.
-
-Should the bug be fixed, these tests will be reinserted.
-
-Carlo Segre (July 27, 2008)
-
diff --git a/debian/patches/perl5.14.patch b/debian/patches/perl5.14.patch
deleted file mode 100644
index 423297d..0000000
--- a/debian/patches/perl5.14.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Description: adjust for perl 5.14: declare used variable, handle differently stringified regexp
-Origin: vendor
-Bug: https://rt.cpan.org/Public/Bug/Display.html?id=70003
-Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=70003
-Bug-Debian: http://bugs.debian.org/636517
-Author: gregor herrmann <gregoa at debian.org>
-Last-Update: 2011-11-16
-
---- a/lib/Regexp/List.pm
-+++ b/lib/Regexp/List.pm
-@@ -16,6 +16,7 @@
- 
- our $FILLER = "\x{fffd}"; # fallback
- 
-+our $RE_PAREN; # predeclear
- our $RE_START =
-     qr{(?:
-     (?!\\)\((?:\?
---- a/t/02-list.t
-+++ b/t/02-list.t
-@@ -38,11 +38,15 @@
-      q/\cZ|\cA/       => qr/\\c[ZA]/,
- );
- 
-+# perldelta 5.14
-+# Accept both old and new-style stringification
-+my $modifiers = (qr/foobar/ =~ /\Q(?^/) ? "^" : "-xism";
-+
- my %t_o = 
-     (
-      q/\012|\015/     => qr/[\012\015]/,
-      q/\x20|\x3F/ =>  => qr/[\x20\x3F]/,
--     q/\cZ|\cA/       => $] < 5.008005 ? qr/[\cZ\cA]/ : '(?-xism:[\cZ\cA])',
-+     q/\cZ|\cA/       => $] < 5.008005 ? qr/[\cZ\cA]/ : "(?$modifiers:[\\cZ\\cA])",
-     );
- 
- for (sort {length $a <=> length $b} keys %t_l){
diff --git a/debian/patches/remove-literal-test b/debian/patches/remove-literal-test
deleted file mode 100644
index a87e12b..0000000
--- a/debian/patches/remove-literal-test
+++ /dev/null
@@ -1,37 +0,0 @@
-Description: Remove expressions from the test due to Bug [perl #56444]
-Origin: vendor
-Author: Carlo Segre <segre at debian.org>
-Last-Update: 2010-07-27
-
---- a/t/03-utf8.t
-+++ b/t/03-utf8.t
-@@ -18,7 +18,8 @@
- }
- use strict;
- use warnings;
--use Test::More tests => 18;
-+# Reduce number of tests by 3 (CUS 2008/07/27)
-+use Test::More tests => 15;
- use Regexp::Optimizer;
- my $l = Regexp::List->new(lookahead => 0);
- my $o = Regexp::Optimizer->new;
-@@ -37,7 +38,8 @@
-      $qq_utf8                       => qr/$qr_utf8_l/,
-      q/\x20|\x{3000}/               => qr/\\x(?:20|\{3000\})/,
-      q/\p{Kanji}|\P{Hiragana}/      => qr/\\(?:p\{Kanji|P\{Hiragana)\}/,
--     q/\N{DIGIT ONE}|\N{DIGIT TWO}/ => qr/\\N\{DIGIT\ (?:ONE|TWO)\}/,
-+# Remove this expression from the test due to Bug [perl #56444]
-+#     q/\N{DIGIT ONE}|\N{DIGIT TWO}/ => qr/\\N\{DIGIT\ (?:ONE|TWO)\}/,
-      q/\C|\X/                       => qr/\\[CX]/,
- );
- 
-@@ -46,7 +48,8 @@
-      $qq_utf8                       => qr/$qr_utf8_o/,
-      q/\x20|\x{3000}/               => qr/[\x20\x{3000}]/,
-      q/\p{Kanji}|\P{Hiragana}/      => qr/[\p{Kanji}\P{Hiragana}]/,
--     q/\N{DIGIT ONE}|\N{DIGIT TWO}/ => q/(?-xism:[\N{DIGIT ONE}\N{DIGIT TWO}])/,
-+# Remove this expression from the test due to Bug [perl #56444]
-+#     q/\N{DIGIT ONE}|\N{DIGIT TWO}/ => q/(?-xism:[\N{DIGIT ONE}\N{DIGIT TWO}])/,
-      q/\C|\X/                        => qr/(?:\C|\X)/,
-     );
- 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 88a1417..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-remove-literal-test
-perl5.14.patch

-- 
Debian packaging of libregexp-optimizer-perl



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