lz4-vl.spec 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. Name: lz4
  2. Version: 1.9.1
  3. Release: 1%{?_dist_release}
  4. Summary: Extremely fast compression algorithm
  5. License: GPLv2+ and BSD
  6. URL: https://lz4.github.io/lz4/
  7. Source0: https://github.com/Cyan4973/lz4/archive/v%{version}/%{name}-%{version}.tar.gz
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. Packager: tomop
  11. %description
  12. LZ4 is an extremely fast loss-less compression algorithm, providing compression
  13. speed at 400 MB/s per core, scalable with multi-core CPU. It also features
  14. an extremely fast decoder, with speed in multiple GB/s per core, typically
  15. reaching RAM speed limits on multi-core systems.
  16. %package libs
  17. Summary: Libaries for lz4
  18. %description libs
  19. This package contains the libaries for lz4.
  20. %package devel
  21. Summary: Development files for lz4
  22. Requires: %{name}-libs%{?_isa} = %{version}-%{release}
  23. %description devel
  24. This package contains the header(.h) and library(.so) files required to build
  25. applications using liblz4 library.
  26. %package static
  27. Summary: Static library for lz4
  28. %description static
  29. LZ4 is an extremely fast loss-less compression algorithm. This package
  30. contains static libraries for static linking of applications.
  31. %prep
  32. %autosetup
  33. echo '#!/bin/sh' > ./configure
  34. chmod +x ./configure
  35. %build
  36. %configure
  37. %make_build
  38. %install
  39. rm -rf %{buildroot}
  40. #configure
  41. %make_install LIBDIR=%{_libdir} PREFIX=%{_prefix} INSTALL="install -p"
  42. %post libs -p /sbin/ldconfig
  43. %postun libs -p /sbin/ldconfig
  44. %clean
  45. rm -rf %{buildroot}
  46. %files
  47. %license programs/COPYING
  48. %doc NEWS
  49. %{_bindir}/lz4
  50. %{_bindir}/lz4c
  51. %{_bindir}/lz4cat
  52. %{_bindir}/unlz4
  53. %{_mandir}/man1/lz4.1*
  54. %{_mandir}/man1/lz4c.1*
  55. %{_mandir}/man1/lz4cat.1*
  56. %{_mandir}/man1/unlz4.1*
  57. %files libs
  58. %license lib/LICENSE
  59. %{_libdir}/liblz4.so.*
  60. %files devel
  61. %license lib/LICENSE
  62. %{_includedir}/lz4*.h
  63. %{_libdir}/liblz4.so
  64. %{_libdir}/pkgconfig/liblz4.pc
  65. %files static
  66. %license lib/LICENSE
  67. %{_libdir}/liblz4.a
  68. %changelog
  69. * Sat May 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.9.1-1
  70. - new upstream release.
  71. * Fri Sep 08 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.8.0-2
  72. - initial build for Vine Linux.
  73. * Sat Aug 19 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.8.0-1
  74. - Update to 1.8.0
  75. * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.5-6
  76. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
  77. * Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.5-5
  78. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
  79. * Sat Jul 08 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.7.5-4
  80. - Split libs properly for multilib
  81. * Sat Mar 4 2017 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.5-3
  82. - Split libs out to a sub package
  83. * Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.5-2
  84. - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
  85. * Thu Jan 05 2017 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.7.5-1
  86. - Update to 1.7.5
  87. * Fri Nov 25 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.7.4.2-1
  88. - Update to 1.7.4.2 (RHBZ #1397373)
  89. * Sat Nov 19 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.7.3-1
  90. - Update to 1.7.3 (RHBZ #1395458)
  91. * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - r131-2
  92. - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
  93. * Mon Jul 06 2015 pjp <pjp@fedoraproject.org> - r131-1
  94. - New: Dos/DJGPP target #114.
  95. - Added: Example using lz4frame library #118.
  96. - Changed: liblz4.a no longer compiled with -fPIC by default.
  97. * Thu Jun 18 2015 pjp <pjp@fedoraproject.org> - r130-1
  98. - Fixed: incompatibility sparse mode vs console.
  99. - Fixed: LZ4IO exits too early when frame crc not present.
  100. - Fixed: incompatibility sparse mode vs append mode.
  101. - Performance fix: big compression speed boost for clang(+30%).
  102. * Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - r129-2
  103. - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
  104. * Wed May 27 2015 pjp <pjp@fedoraproject.org> - r129-1
  105. - New LZ4_compress_fast() API.
  106. - New LZ4 CLI improved performance with multiple files.
  107. - Other bug fix and documentation updates.
  108. * Mon Apr 06 2015 pjp <pjp@fedoraproject.org> - r128-2
  109. - Update files section to install unlz4 & its manual
  110. * Wed Apr 01 2015 pjp <pjp@fedoraproject.org> - r128-1
  111. - lz4cli sparse file support
  112. - Restored lz4hc compression ratio
  113. - lz4 cli supports long commands
  114. - Introduced lz4-static sub package BZ#1208203
  115. * Thu Jan 08 2015 pjp <pjp@fedoraproject.org> - r127-2
  116. - Bump dist to override an earlier build.
  117. * Wed Jan 07 2015 pjp <pjp@fedoraproject.org> - r127-1
  118. - Fixed a bug in LZ4 HC streaming mode
  119. - New lz4frame API integrated into liblz4
  120. - Fixed a GCC 4.9 bug on highest performance settings
  121. * Thu Nov 13 2014 pjp <pjp@fedoraproject.org> - r124-1
  122. - New LZ4 HC Streaming mode
  123. * Tue Sep 30 2014 pjp <pjp@fedoraproject.org> - r123-1
  124. - Added experimental lz4frame API.
  125. - Fix s390x support.
  126. * Sat Aug 30 2014 pjp <pjp@fedoraproject.org> - r122-1
  127. - new release
  128. - Fixed AIX & AIX64 support (SamG)
  129. - Fixed mips 64-bits support (lew van)
  130. * Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - r121-3
  131. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
  132. * Fri Aug 08 2014 Igor Gnatenko <i.gnatenko.brain@gmail.com> - r121-2
  133. - fix destdir
  134. * Fri Aug 08 2014 pjp <pjp@fedoraproject.org> - r121-1
  135. - new release
  136. - Added a pkg-config file.
  137. - Fixed a LZ4 streaming crash bug.
  138. * Thu Jul 03 2014 pjp <pjp@fedoraproject.org> - r119-1
  139. - new release
  140. - Fixed a high Address allocation issue in 32-bits mode.
  141. * Sat Jun 28 2014 pjp <pjp@fedoraproject.org> - r118-1
  142. - new release
  143. - install libraries under appropriate _libdir directories.
  144. * Sat Jun 14 2014 pjp <pjp@fedoraproject.org> - r117-3
  145. - Move shared library object to -devel package.
  146. * Sat Jun 07 2014 pjp <pjp@fedoraproject.org> - r117-2
  147. - Skip static library from installation.
  148. * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - r117-2
  149. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
  150. * Fri Jun 06 2014 pjp <pjp@fedoraproject.org> - r117-1
  151. - new release
  152. - added lz4c & lz4cat manual pages.
  153. * Sun Apr 13 2014 pjp <pjp@fedoraproject.org> - r116-1
  154. - new release 116
  155. - added lz4cat utility for posix systems
  156. * Sat Mar 15 2014 pjp <pjp@fedoraproject.org> - r114-1
  157. - new release r114
  158. - added RPM_OPT_FLAGS to CFLAGS
  159. - introduced a devel package to build liblz4
  160. * Thu Jan 02 2014 pjp <pjp@fedoraproject.org> - r110-1
  161. - new release r110
  162. * Sun Nov 10 2013 pjp <pjp@fedoraproject.org> - r108-1
  163. - new release r108
  164. * Wed Oct 23 2013 pjp <pjp@fedoraproject.org> - r107-1
  165. - new release r107
  166. * Mon Oct 07 2013 pjp <pjp@fedoraproject.org> - r106-3
  167. - fixed install section to replace /usr/ with a macro.
  168. -> https://bugzilla.redhat.com/show_bug.cgi?id=1015263#c5
  169. * Sat Oct 05 2013 pjp <pjp@fedoraproject.org> - r106-2
  170. - fixed install section above as suggested in the review.
  171. -> https://bugzilla.redhat.com/show_bug.cgi?id=1015263#c1
  172. * Sun Sep 22 2013 pjp <pjp@fedoraproject.org> - r106-1
  173. - Initial RPM release of lz4-r106