- update to 0.33

Fixes the case where name("foo(*") hits an error with mismatched
    parentheis.  Reported by Jan Engelhardt.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-File-Find-Rule?expand=0&rev=12
This commit is contained in:
Vítězslav Čížek 2011-09-21 10:11:19 +00:00 committed by Git OBS Bridge
parent 7157e6bf2c
commit a0c8ac6eee
4 changed files with 25 additions and 16 deletions

View File

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

View File

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

View File

@ -1,7 +1,14 @@
-------------------------------------------------------------------
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)
- license correction (same as Perl)
-------------------------------------------------------------------
Tue Jan 11 13:24:55 UTC 2011 - vcizek@novell.com

View File

@ -19,19 +19,21 @@
%define cpan_name File-Find-Rule
Name: perl-%cpan_name
Version: 0.32
Version: 0.33
Release: 3
Provides: %cpan_name
Requires: perl-Number-Compare perl-Text-Glob
Group: Development/Libraries/Perl
License: GPL-1.0+ or Artistic
Url: http://search.cpan.org/dist/File-Find-Rule/
Summary: Alternative interface to File::Find
Source: %cpan_name-%{version}.tar.bz2
Url: http://search.cpan.org/dist/File-Find-Rule/
Group: Development/Libraries/Perl
Source: %cpan_name-%{version}.tar.gz
BuildRequires: perl-Number-Compare
BuildRequires: perl-Text-Glob
BuildRequires: perl-macros
Requires: perl-Number-Compare
Requires: perl-Text-Glob
Provides: %cpan_name
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires: perl-Number-Compare perl-Text-Glob
BuildRequires: perl-macros
%description
File::Find::Rule is a friendlier interface to File::Find. It allows you to build rules which specify the desired files and directories.
@ -40,19 +42,19 @@ File::Find::Rule is a friendlier interface to File::Find. It allows you to build
%setup -q -n %cpan_name-%{version}
%build
perl Makefile.PL OPTIMIZE="$RPM_OPT_FLAGS -Wall"
perl Makefile.PL OPTIMIZE="%{optflags} -Wall"
make
%check
make test
%install
make DESTDIR=$RPM_BUILD_ROOT install_vendor
make DESTDIR=%{buildroot} install_vendor
%perl_process_packlist
%clean
# clean up the hard disc after build
rm -rf $RPM_BUILD_ROOT
rm -rf %{buildroot}
%files
%defattr(-,root,root)
@ -60,6 +62,6 @@ rm -rf $RPM_BUILD_ROOT
%doc %{_mandir}/man?/*
%{perl_vendorlib}/File
%{perl_vendorarch}/auto/File
%doc Changes MANIFEST README
%doc Changes MANIFEST
%changelog