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

Revision 4147, 26.7 KB checked in by daisuke, 13 years ago (diff)

sylpheed: update icons

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