Sync from SUSE:SLFO:Main perl-File-Find-Rule revision 1ec0ac537c1c574c7a784c6e1530a558

This commit is contained in:
Adrian Schröter 2024-05-03 18:14:45 +02:00
commit d5e324e0a2
5 changed files with 174 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
File-Find-Rule-0.34.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

23
cpanspec.yml Normal file
View File

@ -0,0 +1,23 @@
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

View File

@ -0,0 +1,63 @@
-------------------------------------------------------------------
Thu Apr 21 09:50:03 UTC 2022 - Marcus Meissner <meissner@suse.com>
- URLs switched to https
-------------------------------------------------------------------
Sat Dec 5 10:06:05 UTC 2015 - coolo@suse.com
- updated to 0.34
see /usr/share/doc/packages/perl-File-Find-Rule/Changes
0.34 Thursday 4th December, 2015
Add canonpath option to normalize file-path
separators. Work by Mithun Ayachit.
-------------------------------------------------------------------
Wed Sep 21 01:33:36 UTC 2011 - vcizek@suse.com
- update to 0.33
Fixes the case where name("foo(*") hits an error with mismatched
parentheis. Reported by Jan Engelhardt.
-------------------------------------------------------------------
Fri Jun 17 07:24:19 UTC 2011 - vcizek@novell.com
- license correction (same as Perl)
-------------------------------------------------------------------
Tue Jan 11 13:24:55 UTC 2011 - vcizek@novell.com
- update to 0.32
Rework the referencing of anyonymous subroutines internally,
closes RT#46599 (Reported by Kevin Ryde)
Move to Makefile.PL
use Test::Differences in the testsuite if available.
Rearrange the testsuite so you don't keep tripping over yourself.
Dropped 5.00503 backwards compatibility, allows some 5.6isms and
dropping the shonky Cwd code.
All taint 'bugs' are now the same as the behaviour of File::Find,
documentation has been added to describe this.
- bzipped tarball
-------------------------------------------------------------------
Wed Dec 1 11:43:59 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Mon Nov 29 18:29:56 UTC 2010 - coolo@novell.com
- remove /var/adm/perl-modules
-------------------------------------------------------------------
Mon Nov 29 18:00:20 UTC 2010 - coolo@novell.com
- called spec2changelog
-------------------------------------------------------------------
Sun Jun 8 00:00:00 UTC 2008 - gerrit.beine@gmx.de
- first release 0.30

62
perl-File-Find-Rule.spec Normal file
View File

@ -0,0 +1,62 @@
#
# spec file for package perl-File-Find-Rule
#
# Copyright (c) 2022 SUSE LLC
#
# 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.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: perl-File-Find-Rule
Version: 0.34
Release: 0
%define cpan_name File-Find-Rule
Summary: Alternative interface to File::Find
License: GPL-1.0-or-later OR Artistic-1.0
Group: Development/Libraries/Perl
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
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Number::Compare)
BuildRequires: perl(Text::Glob) >= 0.07
Requires: perl(Number::Compare)
Requires: perl(Text::Glob) >= 0.07
%{perl_requires}
%description
File::Find::Rule is a friendlier interface to File::Find. It allows you to
build rules which specify the desired files and directories.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes findrule
%changelog