Commit Graph

52 Commits

Author SHA256 Message Date
Yuchen Lin
7a3b23c4c1 Accepting request 486678 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/486678
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=32
2017-04-11 10:43:17 +00:00
Stephan Kulow
1682d8719b Accepting request 486281 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/486281
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=43
2017-04-08 06:12:57 +00:00
Stephan Kulow
dc7e2138b5 Accepting request 484384 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/484384
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=42
2017-04-06 13:04:02 +00:00
Dominique Leuenberger
f08ad4b674 Accepting request 334363 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/334363
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=31
2015-10-14 14:37:53 +00:00
Stephan Kulow
d88a78619b Accepting request 334172 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/334172
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=40
2015-09-28 11:13:04 +00:00
Stephan Kulow
83dd09cbf5 Accepting request 330955 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/330955
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=30
2015-09-24 04:13:11 +00:00
Stephan Kulow
f397ebd771 Accepting request 330929 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/330929
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=38
2015-09-14 19:29:49 +00:00
Stephan Kulow
b0dddd6253 Accepting request 123200 from devel:languages:perl
- updated to 1.967009
     - Revised ExtUtils::MakeMaker build/configure version
       requirements. (RT.cpan.org #74787, Thanks Paul!)
     - Revised Text::Balanced prereq to require version 1.95,
       necessary for t/skip.t to pass.
       (RT.cpan.org #74787, Thanks Paul!)
     - Removed unused version.pm prereq.
     - Fix a circular reference memory leak caused by the use of
       $AUTOLOAD in sub AUTOLOAD{} in the generated parser's
       namespace.  Workaround documented in perl5 RT #110248.
       Workaround a circular reference memory leak in ISA documented
       by perl5 RT #92708.  A parser's DESTROY() method redefines all
       subs before deleting the stash, to avoid circular references
       between subrules. (RT #53710, thanks Andreas!)
     - Parse::RecDescent::AUTOLOAD did not correctly handle
       initializing the line counting mechanism when a reference to a
       scalar was passed to the parser. (RT.cpan.org #27705, thanks
       Justin!)
     - Restore old _parserepeat calling convention.  Change a
       parser's DESTROY method to check for $self->{_not_precompiled}
       instead of $self->{_precompiled}. (Fix for RT #74593).

OBS-URL: https://build.opensuse.org/request/show/123200
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=25
2012-06-01 20:31:45 +00:00
Stephan Kulow
6143db8233 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=36 2012-06-01 10:44:11 +00:00
Stephan Kulow
0ec2b95a4a - updated to 1.967009
- Revised ExtUtils::MakeMaker build/configure version
       requirements. (RT.cpan.org #74787, Thanks Paul!)
     - Revised Text::Balanced prereq to require version 1.95,
       necessary for t/skip.t to pass.
       (RT.cpan.org #74787, Thanks Paul!)
     - Removed unused version.pm prereq.
     - Fix a circular reference memory leak caused by the use of
       $AUTOLOAD in sub AUTOLOAD{} in the generated parser's
       namespace.  Workaround documented in perl5 RT #110248.
       Workaround a circular reference memory leak in ISA documented
       by perl5 RT #92708.  A parser's DESTROY() method redefines all
       subs before deleting the stash, to avoid circular references
       between subrules. (RT #53710, thanks Andreas!)
     - Parse::RecDescent::AUTOLOAD did not correctly handle
       initializing the line counting mechanism when a reference to a
       scalar was passed to the parser. (RT.cpan.org #27705, thanks
       Justin!)
     - Restore old _parserepeat calling convention.  Change a
       parser's DESTROY method to check for $self->{_not_precompiled}
       instead of $self->{_precompiled}. (Fix for RT #74593).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=35
2012-05-31 13:28:16 +00:00
Stephan Kulow
bb97dfb147 Accepting request 104745 from devel:languages:perl
- update to 1.967006
    - Allow a global <skip:> directive that functions the same as
      modifying $Parse::RecDescent::skip prior to compiling a
      grammar. (Thanks Flavio!)
    - *** NON-BACKWARDS COMPATIBLE CHANGE! *** A repetition directive
      such as 'id(s /,/)' correctly creates a temporary @item variable
      to hold the 'id's that are matched.  That @item variable is them
      used to set the real $item[] entry for that repetition.  The
      same treatment is now given to %item.  Formerly, in a production like:
          id ',' id(s /,/)
      matched against:
          xxx, yyy, zzz
      The $item{id} entry which should be 'xxx' is overwritten by
      'yyy' and then 'zzz' prior to the action being executed.  Now
      'yyy' and 'zzz' set $item{id}, but in the private %item, which
      goes out of scope once the repetition match completes.
    - ** EXPERIMENTAL ** When precompiling, optionally create a
      standalone parser by including most of the contents of
      Parse::RecDescent in the resulting Precompiled output.
      - Accept an optional $options hashref to Precompile, which can
        be used to specify $options->{-standalone}, which currently
        defaults to false.
      - The included Parse::RecDescent module is renamed to
        Parse::RecDescent::_Runtime to avoid namespace conflicts with
        an installed and use'd Parse::RecDescent.
      - Add a new $_FILENAME global to Parse::RecDescent to make it
        easy for the Precompile method to find the module.
      - Remove the prototype from _generate.  It is not required, and
        it caused t/precompile.t (which ends up re-definiing a lot of
        Parse::RecDescent subroutines) to fail needlessly, as the

OBS-URL: https://build.opensuse.org/request/show/104745
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=24
2012-02-16 15:22:19 +00:00
Vítězslav Čížek
bee20db74e - update to 1.967006
- Allow a global <skip:> directive that functions the same as
      modifying $Parse::RecDescent::skip prior to compiling a
      grammar. (Thanks Flavio!)
    - *** NON-BACKWARDS COMPATIBLE CHANGE! *** A repetition directive
      such as 'id(s /,/)' correctly creates a temporary @item variable
      to hold the 'id's that are matched.  That @item variable is them
      used to set the real $item[] entry for that repetition.  The
      same treatment is now given to %item.  Formerly, in a production like:
          id ',' id(s /,/)
      matched against:
          xxx, yyy, zzz
      The $item{id} entry which should be 'xxx' is overwritten by
      'yyy' and then 'zzz' prior to the action being executed.  Now
      'yyy' and 'zzz' set $item{id}, but in the private %item, which
      goes out of scope once the repetition match completes.
    - ** EXPERIMENTAL ** When precompiling, optionally create a
      standalone parser by including most of the contents of
      Parse::RecDescent in the resulting Precompiled output.
      - Accept an optional $options hashref to Precompile, which can
        be used to specify $options->{-standalone}, which currently
        defaults to false.
      - The included Parse::RecDescent module is renamed to
        Parse::RecDescent::_Runtime to avoid namespace conflicts with
        an installed and use'd Parse::RecDescent.
      - Add a new $_FILENAME global to Parse::RecDescent to make it
        easy for the Precompile method to find the module.
      - Remove the prototype from _generate.  It is not required, and
        it caused t/precompile.t (which ends up re-definiing a lot of
        Parse::RecDescent subroutines) to fail needlessly, as the

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=33
2012-02-13 15:07:16 +00:00
Vítězslav Čížek
f4a5ab77dd - update to 1.967003
- Addressed RT.cpan.org #29966: regex with single backslash not
      recognized.  Changed the definition of $TOKEN to handle
      backslashes inside of regex patterns.
    - Skip tests in t/reentry.t if Test::Warn isn't available.
    - Remove the 'use 5.10' from t/skip_dynamic.t, it runs fine
      against Perl 5.8.9.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=32
2012-01-31 09:43:29 +00:00
Vítězslav Čížek
e4e27db9a1 - added Test::Warn to BuildRequires
- update to 1.967001
  * 1.966_000  Mon Jun 27 08:32:50 2011
    - Patched unnamed subrules, so that they actual fail when
      not correctly specified (thanks Evgeniy!)
    - Added skip tests (thanks Flavio)
    - Added doc patch to make $skip semantics clearer (thanks Flavio!)
    - Fixed POD description of <rightop:...> semantics (thanks Dirk!)
  * 1.966_001  Mon Nov 14 10:34:52 2011
    - Applied fix to restore skipped prefixes on match failure
      (thanks Jeremy!)
    - Removed formats to eliminate problems with filehandle duplication
      in forked environments
  * 1.966_002  Sun Jan 22 19:08:37 2012
    - *** NON-BACKWARDS COMPATIBLE CHANGE! *** Change the caches for
      $prevline and $thisline to be local to the parser, rather than
      lexical vars in Parse::RecDescent.  This prevents previously
      generated parsers from interfering with the line counts of
      later parsers.
    - removed trailing whitespace from all member files (cosmetic)
    - new tests, updated MANIFEST
    - Added Jeremy Braun as an author and current maintainer
    - update file permissions
    - fixed a few broken links in the pod
  * 1.967001  Sat Jan 28 20:54:48 2012
    - Addressed RT.cpan.org #28314: regex modifiers for tokens not
      honored during regex syntax check. (Thanks SADAHIRO!)
    - Fixed some POD typos
    - Added message on how to turn off "default" hint value in the
      default hint value ($::RD_HINT = 0). RT.cpan.org # #4898.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=31
2012-01-30 09:45:58 +00:00
Stephan Kulow
d916031eb0 replace license with spdx.org variant
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=23
2011-12-06 17:45:58 +00:00
OBS User buildservice-autocommit
9f69838de0 Updating link to change in openSUSE:Factory/perl-Parse-RecDescent revision 23.0
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=f4d63fc84464be2cd8d18b99fa532216
2011-12-06 17:45:58 +00:00
Stephan Kulow
d81b08c513 Accepting request 92172 from devel:languages:perl
update

OBS-URL: https://build.opensuse.org/request/show/92172
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=22
2011-11-21 11:44:17 +00:00
Stephan Kulow
07c0d8afd4 use original .tar.gz
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=28
2011-11-18 11:33:05 +00:00
Stephan Kulow
477ccb277e use gz
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=27
2011-11-17 15:46:22 +00:00
Stephan Kulow
9f70ddce3e OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=25 2011-11-11 11:21:30 +00:00
Ruediger Oertel
1a6d89544a Autobuild autoformatter for 59488
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=19
2011-02-02 00:37:33 +00:00
Ruediger Oertel
3c308a5752 Accepting request 59488 from devel:languages:perl
Accepted submit request 59488 from user vitezslav_cizek

OBS-URL: https://build.opensuse.org/request/show/59488
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=18
2011-02-02 00:37:26 +00:00
Stephan Kulow
426de662f7 always buildrequire perl-macros if not present, move %perl_requires behind buildroot (script commit)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=23
2010-12-03 14:45:52 +00:00
Stephan Kulow
4f152c459a siwtch to perl_requires macro
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=22
2010-11-30 19:27:37 +00:00
OBS User autobuild
aa3b23ec12 Autobuild autoformatter for 53319
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=17
2010-11-18 15:17:51 +00:00
OBS User buildservice-autocommit
dd6e0ef84b Updating link to change in openSUSE:Factory/perl-Parse-RecDescent revision 17.0
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=cabd40e37dc88498fc940d0abe0ec267
2010-11-18 15:17:51 +00:00
Ruediger Oertel
8802433c26 Accepting request 53319 from devel:languages:perl
Accepted submit request 53319 from user computersalat

OBS-URL: https://build.opensuse.org/request/show/53319
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=16
2010-11-18 15:17:46 +00:00
Christian Wittmer
741c8e253d readd patch, bnc#653512
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=20
2010-11-18 10:17:09 +00:00
OBS User autobuild
2dbe17fe81 Autobuild autoformatter for 51091
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=15
2010-10-20 13:20:39 +00:00
OBS User buildservice-autocommit
bb78a6333b Updating link to change in openSUSE:Factory/perl-Parse-RecDescent revision 15.0
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=80dfdbb0725da55aa3939cf719efff4f
2010-10-20 13:20:39 +00:00
Ruediger Oertel
7909cec1d9 Accepting request 51091 from devel:languages:perl
Accepted submit request 51091 from user computersalat

OBS-URL: https://build.opensuse.org/request/show/51091
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=14
2010-10-20 13:20:31 +00:00
Christian Wittmer
fec689fea7 as mentioned by coolo, remove patch from spec too
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=18
2010-10-19 19:44:43 +00:00
Christian Wittmer
6afbd1577b add missing patch
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=17
2010-10-19 19:34:44 +00:00
Stephan Kulow
0f0c27172f removed patch no longer needed (to pass tests)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=16
2010-10-19 08:58:57 +00:00
Christian Wittmer
d4bd15dbc4 fix missing patch, my fault :(
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=15
2010-10-14 13:12:31 +00:00
Christian Wittmer
bb7f45ddbf noarch pkg
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=14
2010-10-13 22:58:37 +00:00
OBS User autobuild
78a2aeff48 Accepting request 43067 from devel:languages:perl
Copy from devel:languages:perl/perl-Parse-RecDescent based on submit request 43067 from user anicka

OBS-URL: https://build.opensuse.org/request/show/43067
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=13
2010-07-19 12:26:35 +00:00
OBS User buildservice-autocommit
d2a4ccb7c2 Updating link to change in openSUSE:Factory/perl-Parse-RecDescent revision 13.0
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=b8c28fe470711c5b823ea0074e656525
2010-07-19 12:26:35 +00:00
OBS User autobuild
533538de1d Accepting request 43067 from devel:languages:perl
checked in (request 43067)

OBS-URL: https://build.opensuse.org/request/show/43067
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=13
2010-07-19 12:26:34 +00:00
Anna Maresova
98e4e0d864 - update to 1.965001
* Updated version number because versioning is a neverending
   nightmare in Perl 5 (thanks Matt)
 * Removed all references to /opts version of perl interpreter
 * Added Parse::RecDescent::redirect_reporting_to()
   to enable ERROR, TRACE, and TRACECONTEXT filehandles to be 
   easily redirected.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=12
2010-07-16 15:30:10 +00:00
OBS User autobuild
e5628ac9a4 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=10 2010-03-18 15:19:31 +00:00
OBS User autobuild
4d882ffea9 Accepting request 33266 from devel:languages:perl
Copy from devel:languages:perl/perl-Parse-RecDescent based on submit request 33266 from user anicka

OBS-URL: https://build.opensuse.org/request/show/33266
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=9
2010-02-24 01:24:44 +00:00
OBS User autobuild
3127a08042 Accepting request 33266 from devel:languages:perl
checked in (request 33266)

OBS-URL: https://build.opensuse.org/request/show/33266
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=11
2010-02-24 01:24:43 +00:00
Anna Maresova
6f54844e8e - update to 1.964
* Fixed bug with undefined $1 when parsing literals (thanks Dan!)
 * Fixed premature namespace destruction bug with compiled grammars

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=10
2010-02-23 16:03:20 +00:00
OBS User autobuild
9a992ca299 Accepting request 30430 from devel:languages:perl
Copy from devel:languages:perl/perl-Parse-RecDescent based on submit request 30430 from user anicka

OBS-URL: https://build.opensuse.org/request/show/30430
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=8
2010-01-27 16:51:48 +00:00
OBS User buildservice-autocommit
3a83328d15 Updating link to change in openSUSE:Factory/perl-Parse-RecDescent revision 8.0
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=fbe835a9340dcbb10fb842388cf12da7
2010-01-27 16:51:48 +00:00
Anna Maresova
b0be1a059b - update to 1.963
* Fixed even subtler bug in leftop and rightop caused by removal 
   of $&
- clean Requires, Provides and Obsoletes

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=8
2010-01-25 16:25:25 +00:00
OBS User autobuild
49b0895416 Accepting request 29458 from devel:languages:perl
Copy from devel:languages:perl/perl-Parse-RecDescent based on submit request 29458 from user anicka

OBS-URL: https://build.opensuse.org/request/show/29458
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=7
2010-01-14 16:44:07 +00:00
OBS User autobuild
fe7667ca52 Accepting request 28393 from devel:languages:perl
Copy from devel:languages:perl/perl-Parse-RecDescent based on submit request 28393 from user coolo

OBS-URL: https://build.opensuse.org/request/show/28393
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=6
2010-01-11 15:17:26 +00:00
OBS User unknown
87de8cff0d OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Parse-RecDescent?expand=0&rev=4 2008-10-06 15:20:37 +00:00