forked from pool/perl-PPI
Compare commits
26 Commits
458beec0ac
...
5111af3c76
Author | SHA256 | Date | |
---|---|---|---|
5111af3c76 | |||
ea19e77630 | |||
d16e390476 | |||
45fb730899 | |||
ea5281d1af | |||
9a66acfc64 | |||
531f3ca9e0 | |||
9f952112e7 | |||
0f507625f4 | |||
8f0694f07d | |||
1804cb3962 | |||
46861252a7 | |||
e3906bef72 | |||
5bdb00823f | |||
6620bf4978 | |||
f9cda33468 | |||
3a5dcf1879 | |||
195ead862d | |||
97671fc25e | |||
a867dc59ca | |||
|
f76d2897c2 | ||
|
3e0d9ef4cc | ||
|
4bcc289b5c | ||
|
4412c24a34 | ||
|
8c2831717b | ||
|
8362fe9be1 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1c867b2e9b10056978db9ddaadab599af9a5c9a66805ed03ef4b201f1105d427
|
||||
size 248797
|
3
PPI-1.283.tar.gz
Normal file
3
PPI-1.283.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:70becc9dfad8a72d231bbe88d20a82acfd31c13ca03c6fb359703a5ac0004059
|
||||
size 251927
|
@@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 5 05:38:39 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.283.0 (1.283)
|
||||
see /usr/share/doc/packages/perl-PPI/Changes
|
||||
|
||||
1.283 2025-05-04 09:52:43Z
|
||||
- Allow zero byte documents to have a location
|
||||
- handle simple lists in feature arg decomposing
|
||||
- warn on unknown feature arg decompose instead of die
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 28 05:32:21 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.281.0 (1.281)
|
||||
see /usr/share/doc/packages/perl-PPI/Changes
|
||||
|
||||
1.281 2024-12-27 14:44:47Z
|
||||
Summary:
|
||||
- Implement support for signatures and other parsing features
|
||||
|
||||
Details:
|
||||
- Framework for recognition of parsing feature activation via:
|
||||
- `use $PERL_VERSION` in code
|
||||
- `use feature` in code
|
||||
- `use $Common::CPAN::Module` in code
|
||||
- PPI::Document->new( feature_mods => ... )
|
||||
- PPI::Document->new( custom_feature_includes => ... )
|
||||
- PPI::Document->new( custom_feature_include_cb => ... )
|
||||
- $ENV{PPI_CUSTOM_FEATURE_INCLUDES}
|
||||
- Added ability to parse features:
|
||||
- signatures, as PPI::Structure::Signature
|
||||
- try catch, as PPI::Statement::Compound
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 1 05:31:34 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.279.0 (1.279)
|
||||
see /usr/share/doc/packages/perl-PPI/Changes
|
||||
|
||||
1.279 2024-08-23 14:02:44Z
|
||||
Summary:
|
||||
- Implemented a cache to speed up sibling iteration
|
||||
(GH#287) (Graham Knop (haarg))
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 22 16:33:49 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-PPI
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,34 +18,40 @@
|
||||
|
||||
%define cpan_name PPI
|
||||
Name: perl-PPI
|
||||
Version: 1.278.0
|
||||
Version: 1.283.0
|
||||
Release: 0
|
||||
# 1.278 -> normalize -> 1.278.0
|
||||
%define cpan_version 1.278
|
||||
# 1.283 -> normalize -> 1.283.0
|
||||
%define cpan_version 1.283
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Summary: Parse, Analyze and Manipulate Perl (without perl)
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/O/OA/OALDERS/%{cpan_name}-%{cpan_version}.tar.gz
|
||||
Source0: https://cpan.metacpan.org/authors/id/M/MI/MITHALDU/%{cpan_name}-%{cpan_version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Class::Inspector) >= 1.22
|
||||
BuildRequires: perl(Clone) >= 0.30
|
||||
BuildRequires: perl(Class::Inspector) >= 1.220
|
||||
BuildRequires: perl(Clone) >= 0.300
|
||||
BuildRequires: perl(List::Util) >= 1.33
|
||||
BuildRequires: perl(Params::Util) >= 1.00
|
||||
BuildRequires: perl(Params::Util) >= 1.0.0
|
||||
BuildRequires: perl(Safe::Isa)
|
||||
BuildRequires: perl(Storable) >= 2.17
|
||||
BuildRequires: perl(Task::Weaken)
|
||||
BuildRequires: perl(Test::More) >= 0.96
|
||||
BuildRequires: perl(Test::NoWarnings)
|
||||
BuildRequires: perl(Test::Object) >= 0.07
|
||||
BuildRequires: perl(Test::SubCalls) >= 1.07
|
||||
BuildRequires: perl(Test::Object) >= 0.70.0
|
||||
BuildRequires: perl(Test::SubCalls) >= 1.70.0
|
||||
BuildRequires: perl(YAML::PP)
|
||||
BuildRequires: perl(parent)
|
||||
Requires: perl(Clone) >= 0.30
|
||||
BuildRequires: perl(version) >= 0.77
|
||||
Requires: perl(Clone) >= 0.300
|
||||
Requires: perl(List::Util) >= 1.33
|
||||
Requires: perl(Params::Util) >= 1.00
|
||||
Requires: perl(Params::Util) >= 1.0.0
|
||||
Requires: perl(Safe::Isa)
|
||||
Requires: perl(Storable) >= 2.17
|
||||
Requires: perl(Task::Weaken)
|
||||
Requires: perl(YAML::PP)
|
||||
Requires: perl(version) >= 0.77
|
||||
Provides: perl(PPI) = %{version}
|
||||
Provides: perl(PPI::Cache) = %{version}
|
||||
Provides: perl(PPI::Document) = %{version}
|
||||
@@ -86,6 +92,7 @@ Provides: perl(PPI::Structure::Constructor) = %{version}
|
||||
Provides: perl(PPI::Structure::For) = %{version}
|
||||
Provides: perl(PPI::Structure::Given) = %{version}
|
||||
Provides: perl(PPI::Structure::List) = %{version}
|
||||
Provides: perl(PPI::Structure::Signature) = %{version}
|
||||
Provides: perl(PPI::Structure::Subscript) = %{version}
|
||||
Provides: perl(PPI::Structure::Unknown) = %{version}
|
||||
Provides: perl(PPI::Structure::When) = %{version}
|
||||
@@ -144,7 +151,7 @@ Provides: perl(PPI::XSAccessor) = %{version}
|
||||
Parse, Analyze and Manipulate Perl (without perl)
|
||||
|
||||
%prep
|
||||
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||
|
||||
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||
|
||||
|
Reference in New Issue
Block a user