Update to 2.070
- New upstream release 2.070 - Fix wrong FLAG_APPEND_OUTPUT logic (CPAN RT#119207) - Simplify find commands using -empty and -delete
This commit is contained in:
parent
5ca64f8517
commit
c5c09bfce1
@ -1,6 +1,6 @@
|
||||
Name: perl-Compress-Raw-Lzma
|
||||
Version: 2.069
|
||||
Release: 4%{?dist}
|
||||
Version: 2.070
|
||||
Release: 1%{?dist}
|
||||
Summary: Low-level interface to lzma compression library
|
||||
Group: Development/Libraries
|
||||
License: GPL+ or Artistic
|
||||
@ -61,9 +61,9 @@ make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
||||
find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
|
||||
%{_fixperms} %{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -delete
|
||||
find %{buildroot} -type f -name '*.bs' -empty -delete
|
||||
%{_fixperms} -c %{buildroot}
|
||||
|
||||
%check
|
||||
make test
|
||||
@ -75,6 +75,11 @@ make test
|
||||
%{_mandir}/man3/Compress::Raw::Lzma.3*
|
||||
|
||||
%changelog
|
||||
* Thu Dec 29 2016 Paul Howarth <paul@city-fan.org> - 2.070-1
|
||||
- Update to 2.070
|
||||
- Fix wrong FLAG_APPEND_OUTPUT logic (CPAN RT#119207)
|
||||
- Simplify find commands using -empty and -delete
|
||||
|
||||
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.069-4
|
||||
- Perl 5.24 rebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user