source: projects/specs/trunk/l/lzip/lzip-vl.spec @ 12558

Revision 12558, 3.8 KB checked in by tomop, 3 years ago (diff)

updated 2 packages

lzip-1.22-1

wpa_supplicant-2.9-2

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