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

Revision 11556, 27.9 KB checked in by iwamoto, 6 years ago (diff)

sylpheed: update to 3.7.0

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