source: projects/specs/trunk/p/pbzip2/pbzip2-vl.spec @ 521

Revision 521, 3.8 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary:        Parallel implementation of bzip2
2Summary(ja):    bzip2 の並列処理実装
3Name:           pbzip2
4Version:        1.0.5
5Release:        2%{?_dist_release}
6URL:            http://www.compression.ca/pbzip2/
7License:        BSD
8Group:          Applications/Archiving
9Source0:        http://www.compression.ca/pbzip2/%{name}-%{version}.tar.gz
10
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12BuildRequires:  bzip2-devel
13
14%description
15PBZIP2 is a parallel implementation of the bzip2 block-sorting file
16compressor that uses pthreads and achieves near-linear speedup on SMP
17machines.  The output of this version is fully compatible with bzip2
18v1.0.2 or newer (ie: anything compressed with pbzip2 can be
19decompressed with bzip2).
20
21%description -l ja
22PBZIP2 は bzip2 ブロックソートファイル圧縮ツールの pthread を使った
23並列処理実装で、SMP マシン上で圧縮処理がほぼリニアにスピードアップ
24します。PBZIP2 で圧縮されたファイルは、bzip2-1.0.2 以上と完全互換で
25す。(pbzip2 で圧縮したファイルはすべて bzip2 で伸張できます)
26
27%prep
28%setup -q
29sed -i -e 's/ -O3 / %{optflags} /' Makefile
30
31%build
32make
33
34%install
35rm -rf %{buildroot}
36install -D -m755 %{name} %{buildroot}%{_bindir}/%{name}
37install -D -m644 %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
38ln -sf pbzip2 %{buildroot}%{_bindir}/pbunzip2
39
40%clean
41rm -rf %{buildroot}
42
43%files
44%defattr(-,root,root)
45%doc AUTHORS ChangeLog COPYING README
46%{_bindir}/%{name}
47%{_bindir}/pbunzip2
48%{_mandir}/man1/*
49
50%changelog
51* Tue Jul 14 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.5-2
52- spec in UTF-8
53
54* Sun Jan 18 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.5-1
55- new upstream release
56- changed Group to Applications/Archiving
57
58* Sat Apr 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-1
59- initial build for Vine Linux
60
61* Sun Feb 10 2008 Jeff Gilchrist <pbzip2@compression.ca> - 1.0.2-4
62- Rebuild for gcc 4.3
63
64* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.0.2-3
65- Rebuild for selinux ppc32 issue.
66
67* Thu Jul 26 2007 Jeff Gilchrist <pbzip2@compression.ca> - 1.0.2-2
68- Fixed symbolic link for pbunzip2 file
69
70* Tue Jul 25 2007 Jeff Gilchrist <pbzip2@compression.ca> - 1.0.2-1
71- Release 1.0.2
72
73* Tue Mar 20 2007 Jeff Gilchrist <pbzip2@compression.ca> - 1.0.1-1
74- Release 1.0.1
75
76* Wed Mar 14 2007 Jeff Gilchrist <pbzip2@compression.ca> - 1.0-1
77- Release 1.0
78
79* Tue Sep 12 2006 Jeff Gilchrist <pbzip2@compression.ca> - 0.9.6-4
80- Rebuild for Fedora Extras 6
81
82* Tue May 23 2006 Jeff Gilchrist <pbzip2@compression.ca> - 0.9.6-3
83- Added support for $RPM_OPT_FLAGS thanks to Ville Skytta
84
85* Tue Feb 28 2006 Jeff Gilchrist <pbzip2@compression.ca> - 0.9.6-2
86- Rebuild for Fedora Extras 5
87
88* Sun Feb 5 2006 Jeff Gilchrist <pbzip2@compression.ca> - 0.9.6-1
89- Release 0.9.6
90
91* Sat Dec 31 2005 Jeff Gilchrist <pbzip2@compression.ca> - 0.9.5-1
92- Release 0.9.5
93
94* Tue Aug 30 2005 Jeff Gilchrist <pbzip2@compression.ca> - 0.9.4-1
95- Updated RPM spec with suggestions from Oliver Falk
96
97* Fri Jul 29 2005 Bryan Stillwell <bryan@bokeoa.com> - 0.9.3-1
98- Release 0.9.3
99- Removed non-packaging changelog info
100- Added dist macro to release field
101- Clean buildroot at the beginning of the install section
102- Modified buildroot tag to match with Fedora PackagingGuidelines
103- Shortened Requires and BuildRequires list
104- Changed description to match with the Debian package
105
106* Sat Mar 12 2005 Jeff Gilchrist <pbzip2@compression.ca> - 0.9.2-1
107- Release 0.9.2
108
109* Sat Jan 29 2005 Jeff Gilchrist <pbzip2@compression.ca> - 0.9.1-1
110- Release 0.9.1
111
112* Sun Jan 24 2005 Jeff Gilchrist <pbzip2@compression.ca> - 0.9-1
113- Release 0.9
114
115* Sun Jan 9 2005 Jeff Gilchrist <pbzip2@compression.ca> - 0.8.3-1
116- Release 0.8.3
117
118* Mon Nov 30 2004 Jeff Gilchrist <pbzip2@compression.ca> - 0.8.2-1
119- Release 0.8.2
120
121* Sat Nov 27 2004 Jeff Gilchrist <pbzip2@compression.ca> - 0.8.1-1
122- Release 0.8.1
123
124* Thu Oct 28 2004 Bryan Stillwell <bryan@bokeoa.com> - 0.8-1
125- Initial packaging
Note: See TracBrowser for help on using the repository browser.