Accepting request 914273 from devel:languages:perl:autoupdate

- updated to 0.25
   see /usr/share/doc/packages/perl-Syntax-Keyword-Try/Changes
  0.25    2021-06-01
          [CHANGES]
           * Rewrite parsing logic to use XS::Parse::Keyword 0.06
           * Removed the new-deprecated `try do { ... }` experimental syntax
           * Updated docs now that 5.34 is officially released, including
             `use feature 'try'`.

OBS-URL: https://build.opensuse.org/request/show/914273
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Syntax-Keyword-Try?expand=0&rev=24
This commit is contained in:
Dirk Stoecker 2021-08-31 09:30:31 +00:00 committed by Git OBS Bridge
parent fcf86dd122
commit 578e1613a8
4 changed files with 23 additions and 8 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c2f1d4df6ccfac2f17690b08c88dd6929cf4a7516a1d8f5e1c01043bf53ce3a2
size 46971

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c5096cb50212207f334c469a7710606d795f6d54a09fb974e7d56676d913a875
size 38909

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Wed Jun 2 03:07:19 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 0.25
see /usr/share/doc/packages/perl-Syntax-Keyword-Try/Changes
0.25 2021-06-01
[CHANGES]
* Rewrite parsing logic to use XS::Parse::Keyword 0.06
* Removed the new-deprecated `try do { ... }` experimental syntax
* Updated docs now that 5.34 is officially released, including
`use feature 'try'`.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 11 03:07:18 UTC 2021 - Tina Müller <timueller+perl@suse.de> Tue May 11 03:07:18 UTC 2021 - Tina Müller <timueller+perl@suse.de>

View File

@ -18,7 +18,7 @@
%define cpan_name Syntax-Keyword-Try %define cpan_name Syntax-Keyword-Try
Name: perl-Syntax-Keyword-Try Name: perl-Syntax-Keyword-Try
Version: 0.24 Version: 0.25
Release: 0 Release: 0
Summary: C<try/catch/finally> syntax for perl Summary: C<try/catch/finally> syntax for perl
License: Artistic-1.0 OR GPL-1.0-or-later License: Artistic-1.0 OR GPL-1.0-or-later
@ -30,6 +30,9 @@ BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::CBuilder) BuildRequires: perl(ExtUtils::CBuilder)
BuildRequires: perl(Module::Build) >= 0.400400 BuildRequires: perl(Module::Build) >= 0.400400
BuildRequires: perl(Test::More) >= 0.88 BuildRequires: perl(Test::More) >= 0.88
BuildRequires: perl(XS::Parse::Keyword) >= 0.06
BuildRequires: perl(XS::Parse::Keyword::Builder) >= 0.06
Requires: perl(XS::Parse::Keyword) >= 0.06
%{perl_requires} %{perl_requires}
%description %description
@ -44,10 +47,9 @@ parser plugins and manipulate optrees to provide new syntax and behaviours
for perl code. for perl code.
Syntax similar to this module has now been added to core perl, starting at Syntax similar to this module has now been added to core perl, starting at
development version 5.33.7, and is expected to become generally available version 5.34.0. If you are writing new code, it is suggested that you
when perl 5.34 is released. If you are writing new code, it is suggested instead use the Feature::Compat::Try module instead, as that will enable
that you instead use the Feature::Compat::Try module instead, as that will the core feature on those supported perl versions, falling back to
enable the core feature on those supported perl versions, falling back to
'Syntax::Keyword::Try' on older perls. 'Syntax::Keyword::Try' on older perls.
%prep %prep