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

Revision 9649, 27.7 KB checked in by iwamoto, 9 years ago (diff)

sylpheed: update to 3.4.3

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