Update to 2.070
- New upstream release 2.070 - Fix compilation warning from inflate.c (CPAN RT#107642) - Fix wrong FLAG_APPEND logic, analog to Bzip2 (CPAN RT#119007) - Simplify find commands using -empty and -delete
This commit is contained in:
parent
684f6dd6a0
commit
61784c0967
@ -1,6 +1,6 @@
|
||||
Name: perl-Compress-Raw-Zlib
|
||||
Version: 2.069
|
||||
Release: 366%{?dist}
|
||||
Version: 2.070
|
||||
Release: 1%{?dist}
|
||||
Summary: Low-level interface to the zlib compression library
|
||||
# Zlib.xs: (GPL+ or Artistic) and zlib
|
||||
# Others: GPL+ or Artistic
|
||||
@ -68,9 +68,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' -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 COMPRESS_ZLIB_RUN_MOST=1
|
||||
@ -82,6 +82,12 @@ make test COMPRESS_ZLIB_RUN_MOST=1
|
||||
%{_mandir}/man3/Compress::Raw::Zlib.3*
|
||||
|
||||
%changelog
|
||||
* Thu Dec 29 2016 Paul Howarth <paul@city-fan.org> - 2.070-1
|
||||
- Update to 2.070
|
||||
- Fix compilation warning from inflate.c (CPAN RT#107642)
|
||||
- Fix wrong FLAG_APPEND logic, analog to Bzip2 (CPAN RT#119007)
|
||||
- Simplify find commands using -empty and -delete
|
||||
|
||||
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.069-366
|
||||
- Perl 5.24 re-rebuild of bootstrapped packages
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user