forked from pool/perl-File-Find-Rule
Compare commits
8 Commits
Author | SHA256 | Date | |
---|---|---|---|
3803da27a1 | |||
|
740e135a32 | ||
ab417f0ca5 | |||
8250e0d14e | |||
f59c545bbd | |||
677079f793 | |||
233f92d33c | |||
3c0c72fbdc |
BIN
File-Find-Rule-0.34.tar.gz
(Stored with Git LFS)
BIN
File-Find-Rule-0.34.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
File-Find-Rule-0.35.tar.gz
(Stored with Git LFS)
Normal file
BIN
File-Find-Rule-0.35.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 11 14:56:08 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.350.0 (0.35)
|
||||||
|
see /usr/share/doc/packages/perl-File-Find-Rule/Changes
|
||||||
|
|
||||||
|
0.35 Thursday 5th June, 2025
|
||||||
|
Fix for CVE-2011-10007 https://github.com/richardc/perl-file-find-rule/pull/4
|
||||||
|
bsc#1244148
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat May 24 16:27:42 UTC 2025 - Tina Müller <tina.mueller@suse.com>
|
||||||
|
|
||||||
|
- Normalize CPAN version
|
||||||
|
See https://github.com/openSUSE/cpanspec/issues/47 for details
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 21 09:50:03 UTC 2022 - Marcus Meissner <meissner@suse.com>
|
Thu Apr 21 09:50:03 UTC 2022 - Marcus Meissner <meissner@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-File-Find-Rule
|
# spec file for package perl-File-Find-Rule
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,24 +16,26 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-File-Find-Rule
|
|
||||||
Version: 0.34
|
|
||||||
Release: 0
|
|
||||||
%define cpan_name File-Find-Rule
|
%define cpan_name File-Find-Rule
|
||||||
|
Name: perl-File-Find-Rule
|
||||||
|
Version: 0.350.0
|
||||||
|
Release: 0
|
||||||
|
# 0.35 -> normalize -> 0.350.0
|
||||||
|
%define cpan_version 0.35
|
||||||
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Summary: Alternative interface to File::Find
|
Summary: Alternative interface to File::Find
|
||||||
License: GPL-1.0-or-later OR Artistic-1.0
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Group: Development/Libraries/Perl
|
Source0: https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/%{cpan_name}-%{cpan_version}.tar.gz
|
||||||
URL: https://search.cpan.org/dist/File-Find-Rule/
|
|
||||||
Source0: https://www.cpan.org/authors/id/R/RC/RCLAMP/%{cpan_name}-%{version}.tar.gz
|
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Number::Compare)
|
BuildRequires: perl(Number::Compare)
|
||||||
BuildRequires: perl(Text::Glob) >= 0.07
|
BuildRequires: perl(Text::Glob) >= 0.70
|
||||||
Requires: perl(Number::Compare)
|
Requires: perl(Number::Compare)
|
||||||
Requires: perl(Text::Glob) >= 0.07
|
Requires: perl(Text::Glob) >= 0.70
|
||||||
|
Provides: perl(File::Find::Rule) = %{version}
|
||||||
|
%undefine __perllib_provides
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -41,14 +43,14 @@ File::Find::Rule is a friendlier interface to File::Find. It allows you to
|
|||||||
build rules which specify the desired files and directories.
|
build rules which specify the desired files and directories.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
@@ -56,7 +58,6 @@ build rules which specify the desired files and directories.
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%doc Changes findrule
|
%doc Changes findrule
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user