|
|
7220ac |
Name: lz4
|
|
|
439e88 |
Version: 1.8.3
|
|
|
439e88 |
Release: 1%{?dist}
|
|
|
7220ac |
Summary: Extremely fast compression algorithm
|
|
|
7220ac |
|
|
|
7220ac |
License: GPLv2+ and BSD
|
|
|
7220ac |
URL: https://lz4.github.io/lz4/
|
|
|
7220ac |
Source0: https://github.com/Cyan4973/lz4/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
|
7220ac |
|
|
|
7220ac |
%description
|
|
|
7220ac |
LZ4 is an extremely fast loss-less compression algorithm, providing compression
|
|
|
7220ac |
speed at 400 MB/s per core, scalable with multi-core CPU. It also features
|
|
|
7220ac |
an extremely fast decoder, with speed in multiple GB/s per core, typically
|
|
|
7220ac |
reaching RAM speed limits on multi-core systems.
|
|
|
7220ac |
|
|
|
7220ac |
%package devel
|
|
|
7220ac |
Summary: Development files for lz4
|
|
|
7220ac |
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
7220ac |
|
|
|
7220ac |
%description devel
|
|
|
7220ac |
This package contains the header(.h) and library(.so) files required to build
|
|
|
7220ac |
applications using liblz4 library.
|
|
|
7220ac |
|
|
|
7220ac |
%package static
|
|
|
7220ac |
Summary: Static library for lz4
|
|
|
7220ac |
|
|
|
7220ac |
%description static
|
|
|
7220ac |
LZ4 is an extremely fast loss-less compression algorithm. This package
|
|
|
7220ac |
contains static libraries for static linking of applications.
|
|
|
7220ac |
|
|
|
7220ac |
%prep
|
|
|
7220ac |
%autosetup -p1 -v
|
|
|
7220ac |
echo '#!/bin/sh' > ./configure
|
|
|
7220ac |
chmod +x ./configure
|
|
|
7220ac |
|
|
|
7220ac |
%build
|
|
|
7220ac |
%configure
|
|
|
7220ac |
%make_build
|
|
|
7220ac |
|
|
|
7220ac |
%install
|
|
|
7220ac |
%configure
|
|
|
7220ac |
%make_install LIBDIR=%{_libdir} PREFIX=%{_prefix} INSTALL="install -p"
|
|
|
7220ac |
|
|
|
7220ac |
%post -p /sbin/ldconfig
|
|
|
7220ac |
%postun -p /sbin/ldconfig
|
|
|
7220ac |
|
|
|
7220ac |
%files
|
|
|
7220ac |
%license programs/COPYING lib/LICENSE
|
|
|
7220ac |
%doc NEWS
|
|
|
7220ac |
%{_bindir}/lz4
|
|
|
7220ac |
%{_bindir}/lz4c
|
|
|
7220ac |
%{_bindir}/lz4cat
|
|
|
7220ac |
%{_bindir}/unlz4
|
|
|
7220ac |
%{_mandir}/man1/lz4.1*
|
|
|
7220ac |
%{_mandir}/man1/lz4c.1*
|
|
|
7220ac |
%{_mandir}/man1/lz4cat.1*
|
|
|
7220ac |
%{_mandir}/man1/unlz4.1*
|
|
|
7220ac |
%{_libdir}/liblz4.so.*
|
|
|
7220ac |
|
|
|
7220ac |
%files devel
|
|
|
7220ac |
%doc lib/LICENSE
|
|
|
7220ac |
%{_includedir}/lz4*.h
|
|
|
7220ac |
%{_libdir}/liblz4.so
|
|
|
7220ac |
%{_libdir}/pkgconfig/liblz4.pc
|
|
|
7220ac |
|
|
|
7220ac |
%files static
|
|
|
7220ac |
%doc lib/LICENSE
|
|
|
7220ac |
%{_libdir}/liblz4.a
|
|
|
7220ac |
|
|
|
7220ac |
%changelog
|
|
|
439e88 |
* Mon Apr 06 2020 Jakub Martisko <jamartis@rehat.com> - 1.8.3-1
|
|
|
439e88 |
- Rebase to 1.8.3
|
|
|
439e88 |
- Drop the patch from 1.7.5-3. It is now part of the upstream archive
|
|
|
439e88 |
- Resolves: #1813245
|
|
|
439e88 |
|
|
|
7220ac |
* Tue Mar 12 2019 Jakub Martisko <jamartis@rehat.com> - 1.7.5-3
|
|
|
7220ac |
- Fix: lz4 -t corrupts /dev/null permissions
|
|
|
7220ac |
- Resolves: #1680671
|
|
|
7220ac |
|
|
|
7220ac |
* Wed Sep 27 2017 Jakub Martisko <jamartis@rehat.com> - 1.7.5-1 - 2
|
|
|
7220ac |
- Initial RHEL release
|
|
|
7220ac |
|
|
|
7220ac |
* Thu Jan 05 2017 pjp <pjp@fedoraproject.org> - 1.7.5-1 - 1
|
|
|
7220ac |
- Update to 1.7.5
|
|
|
7220ac |
|
|
|
7220ac |
* Sat Nov 19 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.7.3-1
|
|
|
7220ac |
- Update to 1.7.3 (RHBZ #1395458)
|
|
|
7220ac |
|
|
|
7220ac |
* Mon Jul 06 2015 pjp <pjp@fedoraproject.org> - r131-1
|
|
|
7220ac |
- New: Dos/DJGPP target #114.
|
|
|
7220ac |
- Added: Example using lz4frame library #118.
|
|
|
7220ac |
- Changed: liblz4.a no longer compiled with -fPIC by default.
|
|
|
7220ac |
|
|
|
7220ac |
* Thu Jun 18 2015 pjp <pjp@fedoraproject.org> - r130-1
|
|
|
7220ac |
- Fixed: incompatibility sparse mode vs console.
|
|
|
7220ac |
- Fixed: LZ4IO exits too early when frame crc not present.
|
|
|
7220ac |
- Fixed: incompatibility sparse mode vs append mode.
|
|
|
7220ac |
- Performance fix: big compression speed boost for clang(+30%).
|
|
|
7220ac |
|
|
|
7220ac |
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - r129-2
|
|
|
7220ac |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
7220ac |
|
|
|
7220ac |
* Wed May 27 2015 pjp <pjp@fedoraproject.org> - r129-1
|
|
|
7220ac |
- New LZ4_compress_fast() API.
|
|
|
7220ac |
- New LZ4 CLI improved performance with multiple files.
|
|
|
7220ac |
- Other bug fix and documentation updates.
|
|
|
7220ac |
|
|
|
7220ac |
* Mon Apr 06 2015 pjp <pjp@fedoraproject.org> - r128-2
|
|
|
7220ac |
- Update files section to install unlz4 & its manual
|
|
|
7220ac |
|
|
|
7220ac |
* Wed Apr 01 2015 pjp <pjp@fedoraproject.org> - r128-1
|
|
|
7220ac |
- lz4cli sparse file support
|
|
|
7220ac |
- Restored lz4hc compression ratio
|
|
|
7220ac |
- lz4 cli supports long commands
|
|
|
7220ac |
- Introduced lz4-static sub package BZ#1208203
|
|
|
7220ac |
|
|
|
7220ac |
* Thu Jan 08 2015 pjp <pjp@fedoraproject.org> - r127-2
|
|
|
7220ac |
- Bump dist to override an earlier build.
|
|
|
7220ac |
|
|
|
7220ac |
* Wed Jan 07 2015 pjp <pjp@fedoraproject.org> - r127-1
|
|
|
7220ac |
- Fixed a bug in LZ4 HC streaming mode
|
|
|
7220ac |
- New lz4frame API integrated into liblz4
|
|
|
7220ac |
- Fixed a GCC 4.9 bug on highest performance settings
|
|
|
7220ac |
|
|
|
7220ac |
* Thu Nov 13 2014 pjp <pjp@fedoraproject.org> - r124-1
|
|
|
7220ac |
- New LZ4 HC Streaming mode
|
|
|
7220ac |
|
|
|
7220ac |
* Tue Sep 30 2014 pjp <pjp@fedoraproject.org> - r123-1
|
|
|
7220ac |
- Added experimental lz4frame API.
|
|
|
7220ac |
- Fix s390x support.
|
|
|
7220ac |
|
|
|
7220ac |
* Sat Aug 30 2014 pjp <pjp@fedoraproject.org> - r122-1
|
|
|
7220ac |
- new release
|
|
|
7220ac |
- Fixed AIX & AIX64 support (SamG)
|
|
|
7220ac |
- Fixed mips 64-bits support (lew van)
|
|
|
7220ac |
|
|
|
7220ac |
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - r121-3
|
|
|
7220ac |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
7220ac |
|
|
|
7220ac |
* Fri Aug 08 2014 Igor Gnatenko <i.gnatenko.brain@gmail.com> - r121-2
|
|
|
7220ac |
- fix destdir
|
|
|
7220ac |
|
|
|
7220ac |
* Fri Aug 08 2014 pjp <pjp@fedoraproject.org> - r121-1
|
|
|
7220ac |
- new release
|
|
|
7220ac |
- Added a pkg-config file.
|
|
|
7220ac |
- Fixed a LZ4 streaming crash bug.
|
|
|
7220ac |
|
|
|
7220ac |
* Thu Jul 03 2014 pjp <pjp@fedoraproject.org> - r119-1
|
|
|
7220ac |
- new release
|
|
|
7220ac |
- Fixed a high Address allocation issue in 32-bits mode.
|
|
|
7220ac |
|
|
|
7220ac |
* Sat Jun 28 2014 pjp <pjp@fedoraproject.org> - r118-1
|
|
|
7220ac |
- new release
|
|
|
7220ac |
- install libraries under appropriate _libdir directories.
|
|
|
7220ac |
|
|
|
7220ac |
* Sat Jun 14 2014 pjp <pjp@fedoraproject.org> - r117-3
|
|
|
7220ac |
- Move shared library object to -devel package.
|
|
|
7220ac |
|
|
|
7220ac |
* Sat Jun 07 2014 pjp <pjp@fedoraproject.org> - r117-2
|
|
|
7220ac |
- Skip static library from installation.
|
|
|
7220ac |
|
|
|
7220ac |
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - r117-2
|
|
|
7220ac |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
7220ac |
|
|
|
7220ac |
* Fri Jun 06 2014 pjp <pjp@fedoraproject.org> - r117-1
|
|
|
7220ac |
- new release
|
|
|
7220ac |
- added lz4c & lz4cat manual pages.
|
|
|
7220ac |
|
|
|
7220ac |
* Sun Apr 13 2014 pjp <pjp@fedoraproject.org> - r116-1
|
|
|
7220ac |
- new release 116
|
|
|
7220ac |
- added lz4cat utility for posix systems
|
|
|
7220ac |
|
|
|
7220ac |
* Sat Mar 15 2014 pjp <pjp@fedoraproject.org> - r114-1
|
|
|
7220ac |
- new release r114
|
|
|
7220ac |
- added RPM_OPT_FLAGS to CFLAGS
|
|
|
7220ac |
- introduced a devel package to build liblz4
|
|
|
7220ac |
|
|
|
7220ac |
* Thu Jan 02 2014 pjp <pjp@fedoraproject.org> - r110-1
|
|
|
7220ac |
- new release r110
|
|
|
7220ac |
|
|
|
7220ac |
* Sun Nov 10 2013 pjp <pjp@fedoraproject.org> - r108-1
|
|
|
7220ac |
- new release r108
|
|
|
7220ac |
|
|
|
7220ac |
* Wed Oct 23 2013 pjp <pjp@fedoraproject.org> - r107-1
|
|
|
7220ac |
- new release r107
|
|
|
7220ac |
|
|
|
7220ac |
* Mon Oct 07 2013 pjp <pjp@fedoraproject.org> - r106-3
|
|
|
7220ac |
- fixed install section to replace /usr/ with a macro.
|
|
|
7220ac |
-> https://bugzilla.redhat.com/show_bug.cgi?id=1015263#c5
|
|
|
7220ac |
|
|
|
7220ac |
* Sat Oct 05 2013 pjp <pjp@fedoraproject.org> - r106-2
|
|
|
7220ac |
- fixed install section above as suggested in the review.
|
|
|
7220ac |
-> https://bugzilla.redhat.com/show_bug.cgi?id=1015263#c1
|
|
|
7220ac |
|
|
|
7220ac |
* Sun Sep 22 2013 pjp <pjp@fedoraproject.org> - r106-1
|
|
|
7220ac |
- Initial RPM release of lz4-r106
|