lzip-vl.spec 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. Name: lzip
  2. Version: 1.22
  3. Release: 1%{?_dist_release}
  4. Summary: LZMA compressor with integrity checking
  5. Group: accessories
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: GPLv3+
  9. URL: http://www.nongnu.org/lzip/lzip.html
  10. Source0: http://download.savannah.gnu.org/releases/lzip/lzip-%{version}.tar.gz
  11. # 2009-02-15: sent to upstream bug report mailinglist lzip-bug@nongnu.org
  12. #Patch0: lzip-1.4-missing_cstdio.patch
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. Requires(post): /sbin/install-info
  15. Requires(preun): /sbin/install-info
  16. %description
  17. Lzip compresses data using LZMA (Lempel-Ziv-Markov chain-Algorithm). It
  18. supports integrity checking using CRC (Cyclic Redundancy Check). To archive
  19. multiple files, tar can be used with lzip. Please note, that the lzip file
  20. format (.lz) is not compatible with the lzma file format (.lzma).
  21. %debug_package
  22. %prep
  23. %setup -q
  24. #%patch0 -p1 -b .missing_cstdio
  25. %build
  26. %configure CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CPPFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS"
  27. make %{?_smp_mflags}
  28. %install
  29. rm -rf $RPM_BUILD_ROOT
  30. make install install-man DESTDIR=$RPM_BUILD_ROOT
  31. # if install-info is present, this is created by upstream's makefile
  32. rm -Rf $RPM_BUILD_ROOT%{_infodir}/dir
  33. %check
  34. make check
  35. %clean
  36. rm -rf $RPM_BUILD_ROOT
  37. %post
  38. /sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
  39. %preun
  40. if [ $1 = 0 ] ; then
  41. /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
  42. fi
  43. %files
  44. %defattr(-,root,root,-)
  45. # TODO is currently empty
  46. %doc AUTHORS ChangeLog COPYING NEWS README
  47. %{_bindir}/*
  48. %{_infodir}/lzip.info*
  49. %{_mandir}/man1/*
  50. %changelog
  51. * Mon Mar 01 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.22-1
  52. - new upstream release.
  53. * Fri Sep 02 2016 Toshiaki Ara <ara_t@384.jp> 1.18-2
  54. - rebuild with gcc-5.4.0
  55. * Sat Jul 09 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.18-1
  56. - new upstream release
  57. * Sat Apr 23 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.17-1
  58. - new upstream release
  59. * Wed Feb 11 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.16-1
  60. - new upstream release
  61. * Sat Oct 12 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.15-1
  62. - new upstream release
  63. * Sat Mar 16 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.14-1
  64. - new upstream release
  65. * Mon Mar 12 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.13-1
  66. - Update to new release
  67. - dropt patch0
  68. * Wed May 4 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.12-1
  69. - Update to new release
  70. * Mon Sep 27 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.11-1
  71. - Update to new release
  72. * Sun May 30 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.10-1
  73. - Update to new release
  74. * Thu Jan 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.9-1
  75. - Update to new release
  76. * Sun Sep 6 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.8-1
  77. - Update to new release
  78. * Thu Jul 2 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.7-1
  79. - Update to new release
  80. * Wed Jun 24 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6-1
  81. - Update to new release
  82. - dropt Source1
  83. * Fri Apr 24 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.5-1
  84. - Update to new release
  85. - spec in UTF-8
  86. * Thu Apr 23 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4-2
  87. - changed Group to Applications/Archiving
  88. * Sat Apr 11 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4-1vl5
  89. - initial build for VineSeed (import Fedora Package)
  90. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-2
  91. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  92. * Sun Feb 15 2009 Till Maas <opensource@till.name> - 1.4-1
  93. - Update to new release
  94. - Add compile fixes for gcc 4.4 (missing #include <cstdio.h>)
  95. * Thu Nov 27 2008 Till Maas <opensource@till.name> - 1.1-2
  96. - fix type in summary
  97. - call testsuite in %%check
  98. - remove empty TODO file from %%doc
  99. * Wed Nov 26 2008 Till Maas <opensource@till.name> - 1.1-1
  100. - Initial spec for Fedora