r62690 - in /branches/upstream/libregexp-grammars-perl/current: Changes META.yml README lib/Regexp/Grammars.pm t/aliased_subpatterns.t t/arg.t t/autoflatten.t t/backref_ARG.t
carnil-guest at users.alioth.debian.org
carnil-guest at users.alioth.debian.org
Sun Sep 19 06:30:38 UTC 2010
Author: carnil-guest
Date: Sun Sep 19 06:30:24 2010
New Revision: 62690
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=62690
Log:
[svn-upgrade] new version libregexp-grammars-perl (1.009)
Modified:
branches/upstream/libregexp-grammars-perl/current/Changes
branches/upstream/libregexp-grammars-perl/current/META.yml
branches/upstream/libregexp-grammars-perl/current/README
branches/upstream/libregexp-grammars-perl/current/lib/Regexp/Grammars.pm
branches/upstream/libregexp-grammars-perl/current/t/aliased_subpatterns.t
branches/upstream/libregexp-grammars-perl/current/t/arg.t
branches/upstream/libregexp-grammars-perl/current/t/autoflatten.t
branches/upstream/libregexp-grammars-perl/current/t/backref_ARG.t
Modified: branches/upstream/libregexp-grammars-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libregexp-grammars-perl/current/Changes?rev=62690&op=diff
==============================================================================
--- branches/upstream/libregexp-grammars-perl/current/Changes (original)
+++ branches/upstream/libregexp-grammars-perl/current/Changes Sun Sep 19 06:30:24 2010
@@ -109,3 +109,9 @@
* Improved behaviour (and documentation) of non-bracketed
separators in **
+
+
+1.009 Sun Sep 19 09:11:06 2010
+
+ * Rerelease to remove spurious dependencies on Data::Show
+ (thanks Salvatore!)
Modified: branches/upstream/libregexp-grammars-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libregexp-grammars-perl/current/META.yml?rev=62690&op=diff
==============================================================================
--- branches/upstream/libregexp-grammars-perl/current/META.yml (original)
+++ branches/upstream/libregexp-grammars-perl/current/META.yml Sun Sep 19 06:30:24 2010
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Regexp-Grammars
-version: 1.008
+version: 1.009
abstract: Add grammatical parsing features to Perl 5.10 regexes
license: ~
author:
Modified: branches/upstream/libregexp-grammars-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libregexp-grammars-perl/current/README?rev=62690&op=diff
==============================================================================
--- branches/upstream/libregexp-grammars-perl/current/README (original)
+++ branches/upstream/libregexp-grammars-perl/current/README Sun Sep 19 06:30:24 2010
@@ -1,4 +1,4 @@
-Regexp::Grammars version 1.008
+Regexp::Grammars version 1.009
This module adds a small number of new regex constructs that can be used
within Perl 5.10 patterns to implement complete recursive-descent parsing.
Modified: branches/upstream/libregexp-grammars-perl/current/lib/Regexp/Grammars.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libregexp-grammars-perl/current/lib/Regexp/Grammars.pm?rev=62690&op=diff
==============================================================================
--- branches/upstream/libregexp-grammars-perl/current/lib/Regexp/Grammars.pm (original)
+++ branches/upstream/libregexp-grammars-perl/current/lib/Regexp/Grammars.pm Sun Sep 19 06:30:24 2010
@@ -7,7 +7,7 @@
use Scalar::Util qw< blessed >;
use Data::Dumper qw< Dumper >;
-our $VERSION = '1.008';
+our $VERSION = '1.009';
# Load the module...
sub import {
@@ -2065,7 +2065,7 @@
=head1 VERSION
-This document describes Regexp::Grammars version 1.008
+This document describes Regexp::Grammars version 1.009
=head1 SYNOPSIS
@@ -4718,7 +4718,7 @@
To do this, you call C<Regexp::Grammars::set_error_translator()>
(with the full qualification, since Regexp::Grammars does not
-export it...or anything else, for that matter).
+export it...nor anything else, for that matter).
The C<set_error_translator()> subroutine expect as single
argument, which must be a reference to another subroutine.
Modified: branches/upstream/libregexp-grammars-perl/current/t/aliased_subpatterns.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libregexp-grammars-perl/current/t/aliased_subpatterns.t?rev=62690&op=diff
==============================================================================
--- branches/upstream/libregexp-grammars-perl/current/t/aliased_subpatterns.t (original)
+++ branches/upstream/libregexp-grammars-perl/current/t/aliased_subpatterns.t Sun Sep 19 06:30:24 2010
@@ -11,9 +11,6 @@
}xms
};
-#use Data::Show;
-#show $parser; exit;
-
ok +('"abc"' =~ $parser) => 'Matched <str>';
is $/{str}, '"abc"' => 'Captured correctly';
Modified: branches/upstream/libregexp-grammars-perl/current/t/arg.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libregexp-grammars-perl/current/t/arg.t?rev=62690&op=diff
==============================================================================
--- branches/upstream/libregexp-grammars-perl/current/t/arg.t (original)
+++ branches/upstream/libregexp-grammars-perl/current/t/arg.t Sun Sep 19 06:30:24 2010
@@ -2,7 +2,6 @@
use strict;
use 5.010;
-use Data::Show;
use Test::More 'no_plan';
my $test_grammar = do {
Modified: branches/upstream/libregexp-grammars-perl/current/t/autoflatten.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libregexp-grammars-perl/current/t/autoflatten.t?rev=62690&op=diff
==============================================================================
--- branches/upstream/libregexp-grammars-perl/current/t/autoflatten.t (original)
+++ branches/upstream/libregexp-grammars-perl/current/t/autoflatten.t Sun Sep 19 06:30:24 2010
@@ -23,9 +23,6 @@
}xms
};
-#use Data::Show;
-#show $parser; exit;
-
ok +("'abc'" =~ $parser) => 'Matched str';
is_deeply $/{str}, { q{} => "'abc'", content => 'abc' } => 'Unflattened correctly';
Modified: branches/upstream/libregexp-grammars-perl/current/t/backref_ARG.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libregexp-grammars-perl/current/t/backref_ARG.t?rev=62690&op=diff
==============================================================================
--- branches/upstream/libregexp-grammars-perl/current/t/backref_ARG.t (original)
+++ branches/upstream/libregexp-grammars-perl/current/t/backref_ARG.t Sun Sep 19 06:30:24 2010
@@ -2,7 +2,6 @@
use strict;
use 5.010;
-use Data::Show;
use Test::More 'no_plan';
my $test_grammar = do {
More information about the Pkg-perl-cvs-commits
mailing list