8
0

64 Commits

Author SHA256 Message Date
Lars Vogdt
541a8187ea Accepting request 315039 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/315039
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=31
2015-07-06 07:21:02 +00:00
Stephan Kulow
91746e0cb6 Accepting request 310930 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/310930
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=29
2015-06-09 07:50:14 +00:00
Stephan Kulow
11b788fbc2 Accepting request 296286 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/296286
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=27
2015-04-15 04:56:50 +00:00
Stephan Kulow
e9e34136d6 - updated to 0.036
Retract the "Allow non-ASCII white space under /x" change introduced
     in version 0.033. I misread perl5170delta, and implemented early.
   Change tp explicit character class to recognize white space under /x.
     I was previously using \s, which matched too much.
   Thanks to Nobuo Kumagai for finding and reporting this.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=25
2014-02-09 15:10:22 +00:00
Stephan Kulow
48094a7d51 update
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=23
2013-11-26 08:54:26 +00:00
Stephan Kulow
1e778f1f5e Accepting request 178273 from home:coolo:update-perl
update

OBS-URL: https://build.opensuse.org/request/show/178273
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=21
2013-06-09 15:08:43 +00:00
Stephan Kulow
3164b1e733 - updated to 0.026
Add support for \F (fold case), added in 5.15.8.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=19
2012-02-26 15:20:34 +00:00
Stephan Kulow
dcb8d6718b - updated to 0.025
Tolerate leading and trailing white space around the regular
    expression.  These are still round-trip safe, since the white space
    is tokenized.
  Make Changes file conform to CPAN::Changes, and add
    xt/author/changes.t to ensure continued compliance.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=17
2012-02-16 08:17:41 +00:00
Stephan Kulow
e81713dfaf - updated to 0.024
Reinstate author test xt/author/manifest.t, which was clobbered
    shortly before the release of 0.021_10.
  Correct address of FSF in the version of the GPL distributed in
    LICENSES/Copying. Thanks to Petr Pisar for picking this up.
  Correct various documentation errors.
  The default-modifier functionality is no longer considered
    experimental.
  Don't initialize effective modifiers with '^', since that wrongly
    asserts that /d has been seen somewhere along the line.
  Implement negation of match-semantic modifiers (e.g. 'no re /u;') by
    setting the relevant datum to undef.
  THE DEFAULT-MODIFIER FUNCTIONALITY IS EXPERIMENTAL, AND MAY BE CHANGED
    WITHOUT NOTICE until the next production release.
  Support for default modifiers. This includes:
    * default_modifiers argument to new() in PPIx::Regexp,
      PPIx::Regexp::Tokenizer, and PPIx::Regexp::Dumper
    * Public method modifier_asserted() on PPIx::Regexp, to return
      whether a given modifier is actually in effect. The results of the
      modifier() method are unchanged.
    THIS FUNCTIONALITY IS EXPERIMENTAL, AND MAY BE CHANGED OR REVOKED
    WITHOUT WARNING.
  Require Test::More 0.88 for installation. Eliminate all the 'eval
    { require ... }' logic in favor of 'use Test::More 0.88'.
  Have Makefile.PL make use of {BUILD_REQUIRES} if it is available.
  Fix PPIx::Regexp::Token::Whitespace->can_be_quantified() to return
    false.
  Modified tokenizer to correctly handle a back slash used as a
    delimiter. I believe.
  PPIx::Regexp::Dumper now dumps the results of ppi() if that method is

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=14
2011-12-19 13:20:42 +00:00
Stephan Kulow
1f4da0b9de OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=10 2011-05-27 09:58:00 +00:00
Stephan Kulow
310ad16a19 - update to 0.019:
Various corrections to perl_version_introduced():
    \X is now 5.006 (was 5.000);
    \N{name} is now 5.006001 (was 5.006);
    \N{U+xxxx} is now 5.008 (was 5.006).
  The \C is now parsed as a PPIx::Regexp::Token::CharClass::Simple. It
    was previously considered a PPIx::Regexp::Token::Literal.
  Ensure that \N{$foo} parses as a Unicode literal, not a quantified \N.
    The ordinal() method returns undef for this.
  Understand the /aa modifier, introduced with 5.13.10.
  Report perl_version_introduced() of 5.013010 for the new semantic
    modifiers when modifying the entire expression.
  Correct handling of interpolations like ${^foo} and $#{foo}.
  Override ppi() in PPIx::Regexp::Token::Interpolation to provide the
    proper PPI when variable names are bracketed.
  Properly parse bracketed variable names (I hope!), which may not be
    subscripted.
  Take account of possible '$' or '@' casts before a symbol in an
    interpolation (e.g. $$foo{bar}, which is equivalent to $foo->{bar}).
  Add the /a modifier to PPI::Regexp::Token::Modifiers, legal only in
    the (?:...) construction. This was introduced in Perl 5.13.9.
  When parsing an interpolation from a replacement string (rather than a
    regular expression), take subscripts at face value rather than
    trying to disambiguate them from quantifiers and character classes,
    which they can't be in this context.
  The PPIx::Regexp::Token::Code perl_version_introduced() method now
    returns the minimum Perl version (currently set to 5.000) if it is
    used to represent the subst-

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=8
2011-03-31 18:35:05 +00:00
Pascal Bleser
d7d3f1e79f 0.015
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=4
2010-12-27 17:28:00 +00:00
Stephan Kulow
b65e0d7869 siwtch to perl_requires macro
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=2
2010-12-01 06:57:10 +00:00
Christian Wittmer
aec722365a osc copypac from project:home:computersalat:devel:perl package:perl-PPIx-Regexp revision:1
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PPIx-Regexp?expand=0&rev=1
2010-07-14 22:18:12 +00:00