8
0

Compare commits

1 Commits

Author SHA256 Message Date
9d61f5014c Accepting request 1301451 from devel:languages:perl
- updated to 1.10.0 (1.01)
   see /usr/share/doc/packages/perl-File-Finder/Changes
  1.0.1  Thu Aug 21 10:00:00 2025 -0700
      - Updated Changes file for 1.0.0 release.
  1.0.0  Wed Aug 20 15:23:42 2025 -0700
      - Added Windows compatibility fixes for user, group, nouser, nogroup, and ls methods.
      - Updated POD documentation.
      - Bumped version to 1.0.0.

OBS-URL: https://build.opensuse.org/request/show/1301451
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-File-Finder?expand=0&rev=2
2025-08-27 19:34:20 +00:00
7 changed files with 56 additions and 20 deletions

View File

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

BIN
File-Finder-1.01.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

12
README.md Normal file
View File

@@ -0,0 +1,12 @@
## Build Results
Current state of perl in openSUSE:Factory is
![Factory build results](https://br.opensuse.org/status/openSUSE:Factory/perl-File-Finder/standard)
The current state of perl in the devel project build (devel:languages:perl)
![Devel project build results](https://br.opensuse.org/status/devel:languages:perl/perl-File-Finder)

5
_scmsync.obsinfo Normal file
View File

@@ -0,0 +1,5 @@
mtime: 1755898397
commit: 93548a92b2311ae75219a70f4de5fff40b735f77916de3705eeab5fbe2c36cdd
url: https://src.opensuse.org/perl/perl-File-Finder.git
revision: 93548a92b2311ae75219a70f4de5fff40b735f77916de3705eeab5fbe2c36cdd
projectscmsync: https://src.opensuse.org/perl/_ObsPrj

3
build.specials.obscpio Normal file
View File

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

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Fri Aug 22 21:33:17 UTC 2025 - Tina Müller <timueller+perl@suse.de>
- updated to 1.10.0 (1.01)
see /usr/share/doc/packages/perl-File-Finder/Changes
1.0.1 Thu Aug 21 10:00:00 2025 -0700
- Updated Changes file for 1.0.0 release.
1.0.0 Wed Aug 20 15:23:42 2025 -0700
- Added Windows compatibility fixes for user, group, nouser, nogroup, and ls methods.
- Updated POD documentation.
- Bumped version to 1.0.0.
-------------------------------------------------------------------
Wed Feb 8 14:53:32 UTC 2017 - mimi.vx@gmail.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-File-Finder
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,28 +12,29 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define cpan_name File-Finder
Name: perl-File-Finder
Version: 0.53
Version: 1.10.0
Release: 0
Summary: nice wrapper for File::Find ala find(1)
License: GPL-1.0+ or Artistic-1.0
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/File-Finder/
Source: http://www.cpan.org/authors/id/M/ME/MERLYN/%{cpan_name}-%{version}.tar.gz
# 1.01 -> normalize -> 1.10.0
%define cpan_version 1.01
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Nice wrapper for File::Find ala find(1)
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/M/ME/MERLYN/%{cpan_name}-%{cpan_version}.tar.gz
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(Test::More)
BuildRequires: perl(Text::Glob)
Requires: perl(Test::More)
Requires: perl(Text::Glob)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
Provides: perl(File::Finder) = %{version}
Provides: perl(File::Finder::Steps) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
@@ -127,14 +128,16 @@ That's all I can think of for now. The rest is in the detailed reference
below.
%prep
%setup -q -n %{cpan_name}-%{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
%build
perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%make_build
%check
make %{?_smp_mflags} test
make test
%install
%perl_make_install
@@ -142,7 +145,6 @@ make %{?_smp_mflags} test
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes README TODO
%changelog