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

Revision 2478, 26.0 KB checked in by iwamoto, 13 years ago (diff)

sylpheed: new upstream release and built with openssl 1.0.x

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