123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- Name: lzip
- Version: 1.22
- Release: 1%{?_dist_release}
- Summary: LZMA compressor with integrity checking
- Group: accessories
- Vendor: Project Vine
- Distribution: Vine Linux
- License: GPLv3+
- URL: http://www.nongnu.org/lzip/lzip.html
- Source0: http://download.savannah.gnu.org/releases/lzip/lzip-%{version}.tar.gz
- # 2009-02-15: sent to upstream bug report mailinglist lzip-bug@nongnu.org
- #Patch0: lzip-1.4-missing_cstdio.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Requires(post): /sbin/install-info
- Requires(preun): /sbin/install-info
- %description
- Lzip compresses data using LZMA (Lempel-Ziv-Markov chain-Algorithm). It
- supports integrity checking using CRC (Cyclic Redundancy Check). To archive
- multiple files, tar can be used with lzip. Please note, that the lzip file
- format (.lz) is not compatible with the lzma file format (.lzma).
- %debug_package
- %prep
- %setup -q
- #%patch0 -p1 -b .missing_cstdio
- %build
- %configure CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CPPFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS"
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install install-man DESTDIR=$RPM_BUILD_ROOT
- # if install-info is present, this is created by upstream's makefile
- rm -Rf $RPM_BUILD_ROOT%{_infodir}/dir
- %check
- make check
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post
- /sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
- %preun
- if [ $1 = 0 ] ; then
- /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
- fi
- %files
- %defattr(-,root,root,-)
- # TODO is currently empty
- %doc AUTHORS ChangeLog COPYING NEWS README
- %{_bindir}/*
- %{_infodir}/lzip.info*
- %{_mandir}/man1/*
- %changelog
- * Mon Mar 01 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.22-1
- - new upstream release.
- * Fri Sep 02 2016 Toshiaki Ara <ara_t@384.jp> 1.18-2
- - rebuild with gcc-5.4.0
- * Sat Jul 09 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.18-1
- - new upstream release
- * Sat Apr 23 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.17-1
- - new upstream release
- * Wed Feb 11 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.16-1
- - new upstream release
- * Sat Oct 12 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.15-1
- - new upstream release
- * Sat Mar 16 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.14-1
- - new upstream release
- * Mon Mar 12 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.13-1
- - Update to new release
- - dropt patch0
- * Wed May 4 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.12-1
- - Update to new release
- * Mon Sep 27 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.11-1
- - Update to new release
- * Sun May 30 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.10-1
- - Update to new release
- * Thu Jan 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.9-1
- - Update to new release
- * Sun Sep 6 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.8-1
- - Update to new release
- * Thu Jul 2 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.7-1
- - Update to new release
- * Wed Jun 24 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6-1
- - Update to new release
- - dropt Source1
- * Fri Apr 24 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.5-1
- - Update to new release
- - spec in UTF-8
- * Thu Apr 23 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4-2
- - changed Group to Applications/Archiving
- * Sat Apr 11 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4-1vl5
- - initial build for VineSeed (import Fedora Package)
- * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Sun Feb 15 2009 Till Maas <opensource@till.name> - 1.4-1
- - Update to new release
- - Add compile fixes for gcc 4.4 (missing #include <cstdio.h>)
- * Thu Nov 27 2008 Till Maas <opensource@till.name> - 1.1-2
- - fix type in summary
- - call testsuite in %%check
- - remove empty TODO file from %%doc
- * Wed Nov 26 2008 Till Maas <opensource@till.name> - 1.1-1
- - Initial spec for Fedora
|