2007-01-16 00:31:32 +01:00
|
|
|
#
|
2011-11-11 12:21:30 +01:00
|
|
|
# spec file for package perl-Parse-RecDescent
|
2007-01-16 00:31:32 +01:00
|
|
|
#
|
2017-04-06 15:04:02 +02:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2007-01-16 00:31:32 +01:00
|
|
|
#
|
2008-10-06 17:20:37 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2008-01-07 02:54:21 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
2007-01-16 00:31:32 +01:00
|
|
|
#
|
|
|
|
|
- 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 16:07:16 +01:00
|
|
|
|
2008-01-07 02:54:21 +01:00
|
|
|
Name: perl-Parse-RecDescent
|
2017-04-08 08:12:57 +02:00
|
|
|
Version: 1.967015
|
2012-01-30 10:45:58 +01:00
|
|
|
Release: 0
|
2010-10-14 00:58:37 +02:00
|
|
|
%define cpan_name Parse-RecDescent
|
|
|
|
Summary: Generate Recursive-Descent Parsers
|
2017-04-06 15:04:02 +02:00
|
|
|
License: Artistic-1.0 or GPL-1.0+
|
- 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 16:07:16 +01:00
|
|
|
Group: Development/Libraries/Perl
|
2012-05-31 15:28:16 +02:00
|
|
|
Url: http://search.cpan.org/dist/Parse-RecDescent/
|
2017-04-06 15:04:02 +02:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/J/JT/JTBRAUN/%{cpan_name}-%{version}.tar.gz
|
2015-09-14 21:29:49 +02:00
|
|
|
Source1: cpanspec.yml
|
2012-05-31 15:28:16 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-10-14 00:58:37 +02:00
|
|
|
BuildRequires: 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/package/show/devel:languages:perl/perl-Parse-RecDescent?expand=0&rev=33
2012-02-13 16:07:16 +01:00
|
|
|
BuildRequires: perl-macros
|
2015-09-28 13:13:04 +02:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.5702
|
2012-05-31 15:28:16 +02:00
|
|
|
BuildRequires: perl(Module::Build)
|
2012-01-30 10:45:58 +01:00
|
|
|
%{perl_requires}
|
2007-01-16 00:31:32 +01:00
|
|
|
|
|
|
|
%description
|
2012-05-31 15:28:16 +02:00
|
|
|
Generate Recursive-Descent Parsers
|
2007-01-16 00:31:32 +01:00
|
|
|
|
|
|
|
%prep
|
2010-01-11 16:17:26 +01:00
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
2017-04-06 15:04:02 +02:00
|
|
|
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
2007-01-16 00:31:32 +01:00
|
|
|
|
|
|
|
%build
|
2012-05-31 15:28:16 +02:00
|
|
|
%{__perl} Build.PL installdirs=vendor optimize="%{optflags}"
|
2010-10-14 00:58:37 +02:00
|
|
|
./Build build flags=%{?_smp_mflags}
|
2007-01-16 00:31:32 +01:00
|
|
|
|
2008-01-07 02:54:21 +01:00
|
|
|
%check
|
2010-10-14 00:58:37 +02:00
|
|
|
./Build test
|
2008-01-07 02:54:21 +01:00
|
|
|
|
2007-01-16 00:31:32 +01:00
|
|
|
%install
|
2012-01-30 10:45:58 +01:00
|
|
|
./Build install destdir=%{buildroot} create_packlist=0
|
2010-01-11 16:17:26 +01:00
|
|
|
%perl_gen_filelist
|
2007-01-16 00:31:32 +01:00
|
|
|
|
2010-01-11 16:17:26 +01:00
|
|
|
%files -f %{name}.files
|
2012-05-31 15:28:16 +02:00
|
|
|
%defattr(-,root,root,755)
|
|
|
|
%doc Changes README ToDo
|
2007-01-16 00:31:32 +01:00
|
|
|
|
2008-01-07 02:54:21 +01:00
|
|
|
%changelog
|