r62692 - in /trunk/libregexp-grammars-perl: Changes META.yml README debian/changelog 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:32:20 UTC 2010


Author: carnil-guest
Date: Sun Sep 19 06:32:05 2010
New Revision: 62692

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=62692
Log:
New upstream release

Modified:
    trunk/libregexp-grammars-perl/Changes
    trunk/libregexp-grammars-perl/META.yml
    trunk/libregexp-grammars-perl/README
    trunk/libregexp-grammars-perl/debian/changelog
    trunk/libregexp-grammars-perl/lib/Regexp/Grammars.pm
    trunk/libregexp-grammars-perl/t/aliased_subpatterns.t
    trunk/libregexp-grammars-perl/t/arg.t
    trunk/libregexp-grammars-perl/t/autoflatten.t
    trunk/libregexp-grammars-perl/t/backref_ARG.t

Modified: trunk/libregexp-grammars-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libregexp-grammars-perl/Changes?rev=62692&op=diff
==============================================================================
--- trunk/libregexp-grammars-perl/Changes (original)
+++ trunk/libregexp-grammars-perl/Changes Sun Sep 19 06:32:05 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: trunk/libregexp-grammars-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libregexp-grammars-perl/META.yml?rev=62692&op=diff
==============================================================================
--- trunk/libregexp-grammars-perl/META.yml (original)
+++ trunk/libregexp-grammars-perl/META.yml Sun Sep 19 06:32:05 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: trunk/libregexp-grammars-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libregexp-grammars-perl/README?rev=62692&op=diff
==============================================================================
--- trunk/libregexp-grammars-perl/README (original)
+++ trunk/libregexp-grammars-perl/README Sun Sep 19 06:32:05 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: trunk/libregexp-grammars-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libregexp-grammars-perl/debian/changelog?rev=62692&op=diff
==============================================================================
--- trunk/libregexp-grammars-perl/debian/changelog (original)
+++ trunk/libregexp-grammars-perl/debian/changelog Sun Sep 19 06:32:05 2010
@@ -1,3 +1,9 @@
+libregexp-grammars-perl (1.009-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Sun, 19 Sep 2010 08:31:29 +0200
+
 libregexp-grammars-perl (1.008-1) UNRELEASED; urgency=low
 
   * New upstream release

Modified: trunk/libregexp-grammars-perl/lib/Regexp/Grammars.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libregexp-grammars-perl/lib/Regexp/Grammars.pm?rev=62692&op=diff
==============================================================================
--- trunk/libregexp-grammars-perl/lib/Regexp/Grammars.pm (original)
+++ trunk/libregexp-grammars-perl/lib/Regexp/Grammars.pm Sun Sep 19 06:32:05 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: trunk/libregexp-grammars-perl/t/aliased_subpatterns.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libregexp-grammars-perl/t/aliased_subpatterns.t?rev=62692&op=diff
==============================================================================
--- trunk/libregexp-grammars-perl/t/aliased_subpatterns.t (original)
+++ trunk/libregexp-grammars-perl/t/aliased_subpatterns.t Sun Sep 19 06:32:05 2010
@@ -11,9 +11,6 @@
     }xms
 };
 
-#use Data::Show;
-#show  $parser; exit;
-
 ok +('"abc"' =~ $parser) => 'Matched <str>';
 is $/{str}, '"abc"'      => 'Captured correctly';
 

Modified: trunk/libregexp-grammars-perl/t/arg.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libregexp-grammars-perl/t/arg.t?rev=62692&op=diff
==============================================================================
--- trunk/libregexp-grammars-perl/t/arg.t (original)
+++ trunk/libregexp-grammars-perl/t/arg.t Sun Sep 19 06:32:05 2010
@@ -2,7 +2,6 @@
 use strict;
 use 5.010;
 
-use Data::Show;
 use Test::More 'no_plan';
 
 my $test_grammar = do {

Modified: trunk/libregexp-grammars-perl/t/autoflatten.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libregexp-grammars-perl/t/autoflatten.t?rev=62692&op=diff
==============================================================================
--- trunk/libregexp-grammars-perl/t/autoflatten.t (original)
+++ trunk/libregexp-grammars-perl/t/autoflatten.t Sun Sep 19 06:32:05 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: trunk/libregexp-grammars-perl/t/backref_ARG.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libregexp-grammars-perl/t/backref_ARG.t?rev=62692&op=diff
==============================================================================
--- trunk/libregexp-grammars-perl/t/backref_ARG.t (original)
+++ trunk/libregexp-grammars-perl/t/backref_ARG.t Sun Sep 19 06:32:05 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