source: projects/specs/trunk/s/sylpheed/sylpheed-vl.spec @ 3816

Revision 3816, 26.4 KB checked in by iwamoto, 13 years ago (diff)

sylpheed: new upstream release

Line 
1%define with_gtkspell %{?_with_gtkspell:1}%{!?_with_gtkspell:0}
2%define with_oniguruma %{?_with_oniguruma:1}%{!?_with_oniguruma:0}
3# %%define extraver beta
4
5%define srcver  %{version}%{?extraver:%extraver}
6%define srcname sylpheed
7
8Summary:        GTK+ based fast e-mail client
9Summary(ja):    GTK+ ベースの高速な電子メールクライアント
10Name:           sylpheed
11Version:        3.1.1
12Release:        1%{?_dist_release}
13License:        GPL
14Group:          Applications/Internet
15URL:            http://sylpheed.sraoss.jp/
16Source0:        http://sylpheed.sraoss.jp/sylpheed/v3.0/sylpheed-%{srcver}.tar.bz2
17Source1:        sylpheed.xpm
18# Patch0:               sylpheed-3.0.3-default-browser.patch
19Patch1:         sylpheed-2.3.0-certs-search-path.patch
20Requires:       gtk2 >= 2.10.0, openssl, gpgme >= 0.4.5
21Requires:       mailcap
22Requires:       xdg-utils
23BuildRequires:  gtk2-devel >= 2.10.0, openssl-devel, gpgme-devel >= 0.4.5
24BuildRequires:  bison, flex, faces-devel
25%if %{with_gtkspell}
26Requires:       gtkspell
27BuildRequires:  gtkspell-devel
28%endif
29%if %{with_oniguruma}
30Requires:       oniguruma >= 4.2.2
31BuildRequires:  oniguruma-devel >= 4.2.2
32%endif
33Obsoletes:      vmail
34Obsoletes:      sylpheed2 <= %{version}, sylpheed24 <= %{version}
35Obsoletes:      sylpheed25 <= %{version}, sylpheed26 <= %{version}
36Obsoletes:      sylpheed27 <= %{version}, sylpheed3 <= %{version}
37Buildroot:      %{_tmppath}/%{name}-%{version}-root
38
39Packager:       iwamoto
40Vendor:         Project Vine
41Distribution:   Vine Linux
42
43%description
44Sylpheed is an e-mail client and news reader based on GTK+ GUI toolkit, and
45runs on X Window System.
46
47Sylpheed has the following features.
48
49 * Simple, beautiful, and well-polished user interface
50 * Comfortable operationality which is built in detail
51 * Well-organized, easy-to-understand configuration
52 * Lightweight operation
53 * High reliability
54 * Internationalization and Multilingualization support
55 * High-level Japanese processing
56 * Various protocols support
57 * Security features (GnuPG, SSL/TLSv1)
58 * Powerful filtering and search
59 * Junk mail control
60 * Flexible cooperation with external commands
61
62See README file for more information.
63
64%description -l ja
65Sylpheed は、X 上で動作する GTK+ ベースの電子メールクライアント&ニュース
66リーダーです。
67
68Sylpheedには以下のような特長があります。
69
70 *  シンプルで美しく、洗練されたユーザインタフェース
71 * 細部まで作りこまれた快適な操作性
72 * 整理された分かりやすい設定項目
73 * 軽快な動作
74 * 高い信頼性
75 * 国際化、多言語対応
76 * 高度な日本語処理(文字コードの自動判別、機種依存文字対応等)
77 * 多様なプロトコルに対応
78 * セキュリティ機能(GnuPG、SSL/TLSv1)
79 * 強力なフィルタリング・検索機能
80 * 迷惑メール対策機能
81 * 外部コマンドとの柔軟な連携
82
83詳細は README を参照してください。
84
85%prep
86%setup -q -n %{srcname}-%{srcver}
87# %setup -q -n %{srcname}-3.0.0
88
89# %patch0 -p1 -b .default-browser
90%patch1 -p1 -b .certs-path
91
92%build
93%configure \
94           --enable-ipv6 \
95           --enable-ssl \
96           --enable-gpgme \
97           --disable-updatecheck \
98%if %{with_gtkspell}
99           --enable-gtkspell \
100%else
101           --disable-gtkspell \
102%endif
103%if %{with_oniguruma}
104           --enable-oniguruma \
105%else
106           --disable-oniguruma \
107%endif
108           --build=%{_target_platform} \
109           --program-transform-name=sylpheed
110
111%__make %{?_smp_mflags}
112
113%install
114%__rm -rf %{buildroot}
115%makeinstall
116%find_lang %{srcname}
117
118%__install -d %{buildroot}%{_datadir}/pixmaps
119%__install -p -m644 %{SOURCE1} %{buildroot}%{_datadir}/pixmaps/
120%__install -p -m644 sylpheed*.png %{buildroot}%{_datadir}/pixmaps/
121
122%__install -d %{buildroot}%{_datadir}/applications
123%__install -p -m644 sylpheed.desktop %{buildroot}%{_datadir}/applications/
124
125# remove unneeded files
126%__rm -fv %{buildroot}%{_libdir}/*.la
127%__rm -frv %{buildroot}%{_includedir}/sylpheed
128
129%clean
130%__rm -rf %{buildroot}
131
132%files -f %{srcname}.lang
133%defattr(-,root,root)
134%doc AUTHORS COPYING* ChangeLog* README* INSTALL* TODO* NEWS*
135%{_bindir}/sylpheed
136%{_datadir}/pixmaps/sylpheed.xpm
137%{_datadir}/pixmaps/sylpheed*.png
138%{_datadir}/sylpheed/
139%{_libdir}/libsylph*
140%config(missingok) %{_datadir}/applications/sylpheed.desktop
141
142%changelog
143* Sun May  8 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.1.1-1
144- new upstream release
145
146* Fri Apr 22 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.1.0-2
147- drop patch0 to change default-browser (htmlview -> xdg-open)
148- add R: xdg-utils
149
150* Tue Feb  1 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.1.0-1
151- new upstream release
152
153* Sun Jan  9 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.3-1
154- new upstream release
155- update patch0
156- built with openssl 1.0.0c
157
158* Sat Apr  3 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.2-1
159- new upstream release
160
161* Sun Mar 21 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.1-1
162- new upstream release
163
164* Wed Mar 10 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.0-2
165- rebuild for release
166- update src url
167
168* Fri Feb 26 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.0-1
169- new upstream release   
170
171* Tue Feb 23 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.0rc
172- new upstream rc release 
173
174* Wed Feb  3 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.0beta7
175- new upstream beta release
176
177* Mon Jan 18 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.0.0beta6
178- test package (not for release)
179- change package name sylpheed 3
180- add -disable-updatecheck option in configure
181
182* Thu Aug 13 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.7.1-1
183- new upstream release
184- add Req: curl
185- add *.so files into files section
186- remove *.la and include files
187- add Obsoletes: sylpheed27 <= %{version}
188
189* Sun Dec 21 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.0-1
190- new upstream release
191- fix source url
192- add Obsoletes: sylpheed26 <= %{version}
193
194* Sat Aug 16 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.5.0-1
195- new upstream release
196- add Obsoletes: sylpheed25 <= %{version}
197- spec in utf8
198
199* Mon Mar 24 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.4.8-1
200- rebuild under new versioning policy
201- add Obsoletes: sylpheed24 <= %{version}
202- add smp_mflags into make section
203
204* Mon Dec 31 2007 KAZUKI SHIMURA <ksh753@y5.dion.ne.jp> 2.4.8
205- new upstream release
206
207* Mon Oct 08 2007 KAZUKI SHIMURA <ksh753@y5.dion.ne.jp> 2.4.7
208- new upstream release
209
210* Sat Sep 22 2007 KAZUKI SHIMURA <ksh753@y5.dion.ne.jp> 2.4.6
211- new upstream release
212
213* Tue Sep 04 2007 KAZUKI SHIMURA <ksh753@y5.dion.ne.jp> 2.4.5
214- [SECURITY] new upstream release
215  - fix format string vulnerability (CVE-2007-2958)
216
217* Sat Aug 11 2007 KAZUKI SHIMURA <ksh753@y5.dion.ne.jp> 2.4.4
218- new upstream release
219
220* Mon May 19 2007 KAZUKI SHIMURA <ksh753@gmail.com> 2.4.2
221- new upstream release
222
223* Thu May 03 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1-0vl1
224- new upstream release
225
226* Sun Apr 29 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl2
227- rebuild with gtk+-2.10
228
229* Sun Apr 22 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl1
230- new upstream release
231
232* Sun Mar 18 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.4.0-0vl0.0beta5
233- upstream release
234
235* Fri Feb 16 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.4.0-0vl0.0beta4
236- upstream release
237
238* Wed Feb 07 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.4.0-0vl0.0beta3
239- upstream release
240
241* Fri Feb 02 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.4.0-0vl0.0beta2
242- upstream release
243
244* Tue Jan 30 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.4.0-0vl0.0beta1
245- upstream release
246
247* Tue Jan 16 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.1-0vl1
248- upstream release
249
250* Tue Jan 16 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl2
251- add certs-search-path.patch (patch1)
252  to search CA certificates files in /usr/share/ssl/certs
253
254* Tue Dec 26 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl1
255- upstream release
256
257* Wed Dec 20 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl0.0rc
258- upstream release
259
260* Sun Dec 17 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl0.0beta7
261- upstream release
262
263* Sat Dec 09 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl0.0beta6
264- upstream release
265
266* Sat Nov 11 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl0.0beta5
267- upstream release
268
269* Thu Nov 02 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl0.0beta4
270- upstream release
271
272* Wed Oct 18 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl0.0beta3
273- upstream release
274
275* Wed Oct 04 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl0.0beta2
276- upstream release
277- update source URL
278
279* Fri Sep 29 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.3.0-0vl0.0beta1
280- upstream release
281
282* Fri Sep 22 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.9-0vl1
283- upstream release
284
285* Fri Sep 22 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.8-0vl1
286- upstream release
287- add %%with_oniguruma macro
288  - enable oniguruma support if rpmbuild with '--with oniguruma'
289
290* Tue Sep 05 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.7-0vl2
291- update URLs
292
293* Mon Jul 31 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.7-0vl1
294- upstream release
295
296* Sat Jun 10 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.6-0vl1
297- upstream release
298
299* Tue May 30 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.5-0vl1
300- upstream release
301
302* Mon Apr 10 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.4-0vl2
303- drop Requires: metamail ([VineSeed:10690])
304- add Obsoletes: sylpheed2 <= %%{version}
305
306* Thu Mar 30 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.4-0vl1
307- upstream release
308- drop obsolete patch1
309
310* Tue Mar 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.3-0vl2
311- add patch1 from svn to enable bold face with GLib 2.10 and Pango 1.12
312
313* Tue Mar 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.3-0vl1
314- upstream release
315
316* Fri Mar 03 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.2-0vl1
317- upstream release
318
319* Mon Feb 27 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.1-0vl1
320- upstream release
321
322* Thu Feb 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl1
323- upstream release
324
325* Thu Feb 09 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl0.0rc
326- upstream release
327
328* Mon Feb 06 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl0.0beta8
329- upstream release
330
331* Tue Jan 31 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl0.0beta7
332- upstream release
333
334* Thu Jan 26 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl0.0beta6
335- upstream release
336
337* Sun Jan 22 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl0.0beta5
338- upstream release
339
340* Sat Jan 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl0.0beta4
341- upstream release
342
343* Thu Jan 12 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl0.0beta3
344- upstream release
345
346* Tue Dec 27 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl0.0beta2
347- upstream release
348
349* Fri Dec 23 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.0-0vl0.0beta1
350- upstream release
351
352* Thu Dec 15 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.9-0vl1
353- upstream release
354
355* Thu Dec 01 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.8-0vl1
356- upstream release
357
358* Fri Nov 18 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.7-0vl1
359- upstream release
360- cleanup description
361- add %%with_gtkspell macro
362  - enable gtkspell support if rpmbuild with '--with gtkspell'
363
364* Wed Nov 09 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.6-0vl1
365- upstream release
366
367* Sat Oct 29 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.5-0vl1
368- upstream release
369
370* Wed Oct 19 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.4-0vl1
371- upstream release
372- update default-browser.patch (patch0)
373
374* Thu Sep 29 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.3-0vl1
375- upstream release
376
377* Fri Sep 16 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.2-0vl1
378- upstream release
379- update default-browser.patch (patch0)
380- add COPYING.LIB
381
382* Tue Aug 24 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.1-0vl1
383- upstream release
384
385* Sun Aug 14 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.1.0-0vl1
386- upstream release
387
388* Sat Jul 30 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0.0-0vl1
389- upstream release
390
391* Sat Jul 23 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0.0-0vl0.0rc
392- upstream release
393
394* Thu Jul 14 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0.0-0vl0.0beta6
395- upstream release
396
397* Sat Jul 09 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0.0-0vl0.0beta5
398- upstream release
399
400* Mon Jul 04 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0.0-0vl0.0beta4
401- upstream release
402
403* Thu Jun 23 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0.0-0vl0.0beta3
404- upstream release
405
406* Fri Jun 17 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0.0-0vl0.0beta2
407- upstream release
408
409* Fri Jun 10 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0.0-0vl0.0beta1
410- upstream release
411
412* Mon May 30 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.12-0vl1
413- upstream release
414
415* Sat May 21 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.11-0vl1
416- upstream release
417
418* Sat May 14 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.10-0vl1
419- upstream release
420
421* Sat Apr 23 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.9-0vl1
422- upstream release
423- add sylpheed.desktop (fixed in svn)
424
425* Tue Apr 12 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.8-0vl1
426- upstream release
427
428* Tue Mar 29 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.7-0vl1
429- upstream release
430
431* Fri Mar 18 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.6-0vl1
432- upstream release
433- drop obsolete patch1
434- update default-browser.patch (patch0)
435- enable gnupg support by default
436
437* Fri Mar 04 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.4-0vl2
438- [SECURITY] fix buffer overflow
439  - update to svn revision 146 (patch1)
440
441* Wed Mar 02 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.4-0vl1
442- upstream release
443
444* Mon Feb 21 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.3-0vl1
445- upstream release
446
447* Wed Feb 09 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.2-0vl1
448- upstream release
449
450* Thu Feb 03 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.1-0vl1
451- upstream release
452
453* Tue Feb 01 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.0-0vl1
454- upstream release
455- update source URL
456
457* Tue Feb 01 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.9.0-0vl0.0pre
458- svn revesion 63
459- update (Build)Requires: gpgme(-devel) >= 0.4.5
460
461* Wed Jan 26 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.1.0-0vl0.0alpha1
462- gtk2 port from svn (revision 40)
463- dispose %%doc
464- fix dependencies
465  - add Requires: gtk2, glib2 instead of gtk+, glib
466  - add BuildRequires: {gtk2,glib2}-devel instead of {gtk+,glib,imlib}-devel
467- remove --disable-gdk-pixbuf from %%configure option
468- use sylpheed.desktop in source archive
469- install desktop file into %%{_datadir}/applications
470- update default-browser.patch (patch0) to use htmlview
471
472* Sun Dec 26 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.0-0vl1
473- upstream release
474
475* Thu Dec 16 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.0-0vl0.rc
476- upstream release
477
478* Sun Dec 05 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.0-0vl0.beta4
479- upstream release
480- update default-browser.patch
481- update (Build)Requires: gpgme (>= 0.3.10, < 0.4)
482
483* Tue Nov 16 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.0-0vl0.beta3
484- upstream release
485- use 'mozilla -remote' as default browser (patch0)
486
487* Mon Nov 08 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.0-0vl0.beta2
488- upstream release
489
490* Fri Oct 29 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.0.0-0vl0.beta1
491- upstream release
492
493* Sun Oct 17 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.9.99-0vl2
494- update description
495- add Japanese summary & description (thanks, spec file translation project)
496
497* Thu Oct 07 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.9.99-0vl1
498- upstream release
499
500* Thu Jul 22 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.9.12-0vl2
501- add Requires: mailcap, metamail
502- drop obsolete patches
503
504* Thu Jun 17 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.9.12-0vl1
505- upstream release
506
507* Sun May 30 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.9.11-0vl1
508- upstream release
509
510* Sat Apr 10 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.9.10-0vl2
511- rebuild with openssl-0.9.7d
512
513* Tue Mar 09 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.9.10-0vl1
514- upstream release
515
516* Thu Jan 29 2004 KAZUKI SHIMURA <rito@pos.to> 0.9.9-0vl1
517- upstream release
518
519* Mon Dec 15 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 0.9.8a-0vl1
520- upstream release
521
522* Sat Dec 13 2003 KAZUKI SHIMURA <rito@pos.to> 0.9.8-0vl1
523- upstream release
524
525* Wed Oct 15 2003 KAZUKI SHIMURA <rito@pos.to> 0.9.7-0vl1
526- upstream release
527
528* Wed Sep 17 2003 KAZUKI SHIMURA <rito@pos.to> 0.9.6-0vl1
529- upstream release
530
531* Tue Sep 02 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 0.9.5-0vl1
532- upstream release
533
534* Sun Jul 27 2003 KAZUKI SHIMURA <rito@pos.to> 0.9.4-0vl1
535- upstream release
536
537* Sun Jul 06 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 0.9.3-0vl1
538- upstream release
539
540* Fri Jun 06 2003 KAZUKI SHIMURA <rito@pos.to> 0.9.2-0vl1
541- upstream release
542
543* Wed May 28 2003 KAZUKI SHIMURA <rito@pos.to> 0.9.1-0vl1
544- upstream release
545
546* Sat May 15 2003 KAZUKI SHIMURA <rito@pos.to> 0.9.0-0vl1
547- upstream release
548
549* Fri Mar 07 2003 KAZUKI SHIMURA <rito@pos.to> 0.8.11-0vl1
550- upstream release
551- eliminated prefs_filter.patch
552
553* Mon Feb 17 2003 KAZUKI SHIMURA <rito@pos.to> 0.8.10-0vl3
554- added prefs_filter.patch (from 0.8.10cvs12)
555        to fix the crash when the selection list is empty
556
557* Sun Feb 16 2003 KAZUKI SHIMURA <rito@pos.to> 0.8.10-0vl2
558- merged with VineSeed:07485
559
560  - Mon Feb 03 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.8.9-0vl3
561  - spec modified for ease with creation of gpgme-enabled version
562    (still disabled for VineSeed)
563
564* Sat Feb 08 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 0.8.10-0vl1
565- upstream release
566
567* Mon Jan 20 2003 KAZUKI SHIMURA <rito@pos.to> 0.8.9-0vl2
568- remove Requires: libjconv >= 2.0
569
570* Sat Jan 18 2003 KAZUKI SHIMURA <rito@pos.to> 0.8.9-0vl1
571- upstream release
572
573* Sat Jan 11 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 0.8.8-0vl1
574- upstream release
575- Patch1 was merged in the upstream release
576
577* Fri Nov 15 2002 KAZUKI SHIMURA <rito@pos.to> 0.8.6-0vl1
578- upstream release
579
580* Fri Oct 04 2002 KAZUKI SHIMURA <rito@pos.to> 0.8.5-0vl2
581- added BuildRequires: imlib-devel >= 1.9, faces-devel
582
583* Fri Oct 04 2002 KAZUKI SHIMURA <rito@pos.to> 0.8.5-0vl1
584- upstream release
585
586* Tue Oct 01 2002 KAZUKI SHIMURA <rito@pos.to> 0.8.4-0vl1
587- upstream release
588
589* Mon Sep 23 2002 KAZUKI SHIMURA <rito@pos.to> 0.8.3-0vl2
590- changed default browser into mozilla (updated patch0)
591
592* Sun Sep 15 2002 KAZUKI SHIMURA <rito@pos.to> 0.8.3-0vl1
593- upstream release
594
595* Tue Aug 27 2002 IWAI Masaharu <iwai@alib.jp> 0.8.2-0vl1
596- upstream release
597
598* Fri Jul 26 2002 KAZUKI SHIMURA <rito@pos.to> 0.8.1-0vl2
599- release++
600
601* Thu Jul 25 2002 IWAI Masaharu <iwai@alib.jp> 0.8.1-0vl1
602- upstream release
603- eliminated charset.patch
604
605* Tue Jul 23 2002 IWAI Masaharu <iwai@alib.jp> 0.8.0-0vl2
606- added charset.patch for no charset in Content-Type header field
607  ( from 0.8.0cvs1 )
608
609* Mon Jul 15 2002 IWAI Masaharu <iwai@alib.jp> 0.8.0-0vl1
610- upstream release
611
612* Sat Jun 15 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 0.7.8-0vl1
613- upstream release
614
615* Sun Jun 09 2002 KOBAYSHI R. Taizo <tkoba@vinelinux.org> 0.7.7-0vl1
616- upstream release
617
618* Wed May 15 2002 KOBAYSHI R. Taizo <tkoba@vinelinux.org> 0.7.6-0vl2
619- fixed Tab completion bug
620
621* Sun May 12 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 0.7.6-0vl1
622- upstream release
623
624* Mon Apr 22 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.5-0vl2
625- add new sylpheed icons
626
627* Sun Apr 21 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 0.7.5-0vl1
628- upstream release
629
630* Sat Mar  9 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 0.7.4-0vl1
631- upstream release
632
633* Sun Mar  3 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 0.7.3-0vl1
634- upstream release
635
636* Wed Feb 20 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 0.7.2-0vl2
637- added IPv6 and SSL support
638- added BuildPreReq: glib-devel, bison and flex, openssl-devel
639- added Requires: openssl
640
641* Sat Feb 16 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 0.7.2-0vl1
642- upstream release
643
644* Mon Feb 11 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp> 0.7.1-0vl1
645- upstream release
646- changed release tag value (s/%%{rel}vl0/%%{rel}/)
647
648* Mon Jan  7 2002 IWAI Masaharu <iwaim@cc.mbn.or.jp>
649- 0.7.0-0vl1
650- upstream release
651
652* Sun Dec 16 2001 IWAI Masaharu <iwaim@cc.mbn.or.jp>
653- 0.6.6-0vl1
654- fixed BuildPreReq (gtk+-devel >= 1.2.6)
655- added BuildPreReq: glib-devel, bison and flex
656
657* Wed Nov 07 2001 Toru Sagami <sagami@vinelinux.org>
658- 0.6.5-0vl1
659
660* Mon Oct 22 2001 IWAI Masaharu <iwaim@cc.mbn.or.jp>
661- 0.6.4-0vl1
662- eliminated ABOUT-NLS from %%doc
663
664* Sat Oct 13 2001 IWAI Masaharu <iwaim@cc.mbn.or.jp>
665- 0.6.3-0vl1
666- added %%doc AUTHORS, NEWS and ABOUT-NLS
667
668* Sun Sep 16 2001 Toru Sagami <sagami@vinelinux.org>
669- 0.6.2-0vl1
670
671* Sun Sep 02 2001 Toru Sagami <sagami@vinelinux.org>
672- 0.6.1-0vl1
673
674* Fri Aug 31 2001 Toru Sagami <sagami@vinelinux.org>
675- 0.6.0-0vl1
676
677* Tue Aug 14 2001 <sagami@vinelinux.org>
678- 0.5.3-0vl1
679
680* Thu Aug 02 2001 <sagami@vinelinux.org>
681- 0.5.2-0vl1: eliminate ABOUT-NLS from %%doc
682
683* Wed Jul 18 2001 <sagami@vinelinux.org>
684- 0.5.1-0vl1: updated to 0.5.1
685- owns whole directory in %%{_datadir} instead of each files
686
687* Sat Jul 07 2001 <sagami@vinelinux.org>
688- 0.5.0-0vl1: updated to 0.5.0
689- minor spec fixes (put %%changelog at EOF, use %%{find_lang}...)
690- added %%config(missingok) to applnk file
691
692* Wed May 09  2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.66-0vl1
693- updated to 0.4.66
694
695* Tue May 01 2001 Yoichi Imai <yoichi@silver-forest.com> 0.4.65-0vl1
696- updated to 0.4.65
697- changed %description
698
699* Fri Apr 20 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.64-0vl1
700- updated to 0.4.64
701
702* Wed Apr 11 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.63-0vl1
703- updated to 0.4.63
704
705* Mon Mar 12 2001 Yoichi Imai <yoichi@silver-forest.com>
706- 0.4.62-0vl1
707- update to 0.4.62
708
709* Wed Feb 7 2001 Kunio Murasawa <murasawa@marineroad.com>
710- 0.4.61-0vl1
711- update to 0.4.61
712
713* Tue Dec 19 2000 Yoichi Imai <yoichi@silver-forest.com>
714- 0.4.9-0vl1
715- update to 0.4.9
716- used %{_(bin|data|sysconf)dir} for %install section
717
718* Sat Dec 9 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.8-0vl1
719- update to 0.4.8
720
721* Thu Nov 9 2000 Yoichi Imai <yoichi@silver-forest.com>
722- update to 0.4.4
723
724* Thu Oct 19 2000 Tomoya TAKA <tomoya@olive.plala.or.jp>
725- update to 0.4.2
726
727* Mon Oct 2 2000 Yoichi Imai <yoichi@silver-forest.com>
728- update to 0.4.1
729- --disable-gdk-pixbuf
730- Requires: imlib
731- BuildPreReq: gtk+ >= 1.2.6
732- Obsoletes: vmail
733
734* Thu Sep 28 2000 Yoichi Imai <yoichi@silver-forest.com>
735- rebuild for VineSeed
736
737* Wed Sep 27 2000 Yoichi Imai <yoichi@silver-forest.com>
738- update to 0.4.0
739- sylpheed-defualt-browser.patch for Vine Linux
740- requires: gdk-pixbuf
741
742* Tue Sep 26 2000 Yoichi Imai <yoichi@silver-forest.com>
743- update to 0.3.99
744
745* Sun Sep 17 2000 Yoichi Imai <yoichi@silver-forest.com>
746- update to 0.3.29
747
748* Wed Aug 30 2000 Yoichi Imai <yoichi@silver-forest.com>
749- update to 0.3.28
750
751* Fri Aug 25 2000 Yoichi Imai <yoichi@silver-forest.com>
752- update to 0.3.27
753
754* Sat Aug 19 2000 Yoichi Imai <yoichi@silver-forest.com>
755- update to 0.3.26
756
757* Thu Aug 10 2000 Yoichi Imai <yoichi@silver-forest.com>
758- update to 0.3.25
759
760* Fri Aug 04 2000 Yoichi Imai <yoichi@silver-forest.com>
761- update to 0.3.24
762- change uri
763* Mon Jul 24 2000 Yoichi Imai <yoichi@silver-forest.com>
764- update to 0.3.23
765
766* Fri Jul 21 2000 Yoichi Imai <yoichi@silver-forest.com>
767- update to 0.3.22
768
769* Wed Jul 05 2000 Yoichi Imai <yoichi@silver-forest.com>
770- update to 0.3.21
771
772* Fri Jun 30 2000 Yoichi Imai <yoichi@silver-forest.com>
773- update to 0.3.20
774
775* Mon Jun 26 2000 Yoichi Imai <yoichi@silver-forest.com>
776- update to 0.3.19
777
778* Sun Jun 18 2000 Yoichi Imai <yoichi@silver-forest.com>
779- update to 0.3.18
780
781* Thu Jun 15 2000 Yoichi Imai <yoichi@silver-forest.com>
782- update to 0.3.17
783
784* Tue Jun 13 2000 Yoichi Imai <yoichi@silver-forest.com>
785- update to 0.3.16
786
787* Sun Jun 11 2000 Yoichi Imai <yoichi@silver-forest.com>
788- update to 0.3.15
789
790* Sun Jun 4 2000 Yoichi Imai <yoichi@silver-forest.com>
791- some change
792
793* Sun Jun 4 2000 Yoichi Imai <yoichi@silver-forest.com>
794- update to 0.3.13
795
796* Sat Jun 3 2000 Yoichi Imai <yoichi@silver-forest.com>
797- update to 0.3.12
798
799* Fri Jun 2 2000 Yoichi Imai <yoichi@silver-forest.com>
800- update to 0.3.11
801
802* Sat May 20 2000 Yoichi Imai <yoichi@silver-forest.com>
803- update to 0.3.10
804
805* Sat May 20 2000 Yoichi Imai <yoichi@silver-forest.com>
806- update to 0.3.9
807
808* Sun May 14 2000 Yoichi Imai <yoichi@silver-forest.com>
809- update to 0.3.8
810
811* Thu May 11 2000 Yoichi Imai <yoichi@silver-forest.com>
812- update to 0.3.7a
813
814* Thu May 4 2000 Yoichi Imai <yoichi@silver-forest.com>
815- update to 0.3.6a
816
817* Sun Apr 30 2000 Yoichi Imai <yoichi@silver-forest.com>
818- update to 0.3.5
819
820* Sun Apr 30 2000 Yoichi Imai <yoichi@silver-forest.com>
821- update to 0.3.4
822
823* Sat Apr 29 2000 Yoichi Imai <yoichi@silver-forest.com>
824- gnome-menu and requires header change
825
826* Mon Apr 24 2000 Yoichi Imai <yoichi@silver-forest.com>
827- update to 0.3.3
828
829* Sat Apr 15 2000 Yoichi Imai <yoichi@silver-forest.com>
830- update to 0.3.2
831
832* Tue Apr 14 2000 Yoichi Imai <yoichi@silver-forest.com>
833- update to 0.3.1
834
835* Tue Mar 14 2000 Yoichi Imai <yoichi@silver-forest.com>
836- update to 0.2.9
837
838* Tue Mar 14 2000 Yoichi Imai <yoichi@silver-forest.com>
839- update for 0.2.7
840
841* Thu Feb 24 2000 Yoichi Imai <yoichi@silver-forest.com>
842- update for 0.2.4
843
844* Tue Feb 22 2000 Yoichi Imai <yoichi@silver-forest.com>
845- update for 0.2.3
846
847* Sun Feb 20 2000 Yoichi Imai <yoichi@silver-forest.com>
848- update for 0.2.2
849
850* Sat Feb 19 2000 Yoichi Imai <yoichi@silver-forest.com>
851- update for 0.2.1
852
853* Sat Feb 12 2000 Yoichi Imai <yoichi@silver-forest.com>
854- update for 0.2.0pre8
855
856* Sat Feb 12 2000 Yoichi Imai <yoichi@silver-forest.com>
857- update for 0.2.0pre7
858
859* Wed Feb 5 2000 Yoichi Imai <yoichi@silver-forest.com>
860- update for 0.2.0pre3
861
862* Wed Feb 5 2000 Yoichi Imai <yoichi@silver-forest.com>
863- append "TODO.jp"
864
865* Wed Feb 5 2000 Yoichi Imai <yoichi@silver-forest.com>
866- update for 0.2.0pre1
867
868* Wed Feb 4 2000 Yoichi Imai <yoichi@silver-forest.com>
869- update for 0.1.23
870
871* Wed Feb 2 2000 Yoichi Imai <yoichi@silver-forest.com>
872- update for 0.1.21
873
874* Tue Feb 1 2000 Yoichi Imai <yoichi@silver-forest.com>
875- update for 0.1.20
876
877* Tue Jan 25 2000 Yoichi Imai <yoichi@silver-forest.com>
878- update for 0.1.19
879
880* Sun Jan 23 2000 Yoichi Imai <yoichi@silver-forest.com>
881- update for 0.1.17
882
883* Sun Jan 16 2000 Yoichi Imai <yoichi@silver-forest.com>
884- update for 0.1.15
885
886* Sat Jan 15 2000 Yoichi Imai <yoichi@silver-forest.com>
887- update for 0.1.14
888
889* Fri Jan 14 2000 Yoichi Imai <yoichi@silver-forest.com>
890- update for 0.1.13
891
892* Thu Jan 13 2000 Yoichi Imai <yoichi@silver-forest.com>
893- update for 0.1.12
894
895* Wed Jan 12 2000 Yoichi Imai <yoichi@silver-forest.com>
896- update for 0.1.11
897
898* Tue Jan 11 2000 Yoichi Imai <yoichi@silver-forest.com>
899- update for 0.1.10
900
901* Mon Jan 10 2000 Yoichi Imai <yoichi@silver-forest.com>
902- update for 0.1.8
903
904* Sat Jan 8 2000 Yoichi Imai <yoichi@silver-forest.com>
905- update for 0.1.7
906
907* Fri Jan 7 2000 Yoichi Imai <yoichi@silver-forest.com>
908- update for 0.1.6
909
910* Thu Jan 6 2000 Yoichi Imai <yoichi@silver-forest.com>
911- update for 0.1.5
912
913* Sat Jan 1 2000 Yoichi Imai <yoichi@silver-forest.com>
914- first release for version 0.1.0
915
Note: See TracBrowser for help on using the repository browser.