source: projects/specs/trunk/f/fetchmail/fetchmail-vl.spec @ 12390

Revision 12390, 14.6 KB checked in by tomop, 4 years ago (diff)

updated 11 packages

dos2unix-7.4.1-1

enchant-1.6.0-2

enchant2-2.2.8-1

fetchmail-6.4.4-1

gmime-3.2.7-1

libical-3.0.8-1

nspr-4.25-1

re2c-1.3-1

samba-4.12.2-1

squid-4.11-1

unique-1.1.6-5

Line 
1%bcond_with systemd
2%bcond_with fetchmailconf
3
4Summary: A remote mail retrieval and forwarding utility.
5Summary(ja): 遠隔メール取得/フォワード用ユーティリティ
6Name: fetchmail
7Version: 6.4.4
8Release: 1%{_dist_release}%{?with_systemd:.systemd}
9License: GPL
10Group: Applications/Internet
11URL: http://www.fetchmail.info/
12%define shortver %(echo %{version} | sed -e 's/\\.[0-9]*$//')
13Source0: https://downloads.sourceforge.net/project/fetchmail/branch_%{shortver}/fetchmail-%{version}.tar.xz
14
15Source1: fetchmailconf.1
16Source2: fetchmail.service
17Source3: fetchmail@.service
18
19Buildroot: %{_tmppath}/%{name}-%{version}-root
20%if %{with systemd}
21%{?systemd_requires}
22%endif
23BuildRequires: openssl-devel
24BuildRequires: krb5-devel
25BuildRequires: flex, bison
26Requires: krb5-libs
27%if %{without fetchmailconf}
28Obsoletes: fetchmailconf < 6.4.0
29%endif
30
31Vendor: Project Vine
32Distribution: Vine Linux
33Packager: iwamoto, inagaki
34
35%description
36Fetchmail is a remote mail retrieval and forwarding utility intended
37for use over on-demand TCP/IP links, like SLIP or PPP connections.
38Fetchmail supports every remote-mail protocol currently in use on the
39Internet (POP2, POP3, RPOP, APOP, KPOP, all IMAPs, ESMTP ETRN) for
40retrieval.  Then Fetchmail forwards the mail through SMTP, so you can
41read it through your favorite mail client.
42
43Install fetchmail if you need to retrieve mail over SLIP or PPP
44connections.
45
46%description -l ja
47fetchmail は SLIP や PPP といったオンデマンド TCP/IP 接続環境で
48使われることを念頭に置いた遠隔メール取得/フォワードユーティリティです.
49fetchmail は,現在インターネット上で使われている様々なプロトコル
50(POP2, POP3, RPOP, APOP, KPOP, IMAP, ESMTP, ETRN) に対応しています.
51fetchmail はメールのフォワードには SMTP を用います.
52ですので,あなたのお好きなメールクライアントでメールを読むことが出来ます.
53
54SLIP や PPP 接続でメールを取得したい場合は fetchmail を
55インストールして下さい.
56
57%if %{with fetchmailconf}
58%package -n fetchmailconf
59Summary: A GUI utility for configuring your fetchmail preferences.
60Summary(ja): fetchmail を設定する為の GUI ユーティリティ
61Group: Applications/Internet
62BuildRequires: python-devel
63BuildRequires: python-rpm-macros
64Requires: python, tk, tkinter, fetchmail = %{version}-%{release}
65
66%description -n fetchmailconf
67Fetchmailconf is a Tcl/Tk GUI application which edits your
68.fetchmailrc file, in order to configure the fetchmail mail retrieval
69program. Fetchmail's numerous options may be confusing to new users,
70but fetchmailconf may help to clear up the confusion.
71
72Install fetchmailconf if you need help configuring fetchmail. You'll
73need to have python and tk installed in order to use fetchmailconf.
74
75%description -n fetchmailconf -l ja
76fetchmailconf は fetchmail プログラムを制御する .fetchmailrc ファイルを
77編集する為の Tcl/Tk GUI アプリケーションです.
78fetchmail の様々なオプションは慣れないユーザにとっては混乱するばかりですが,
79fetchmailconf を使うと混乱すること無く設定が行えます.
80
81fetchmail の設定を簡単に行いたい場合は fetchmailconf をインストール
82して下さい.fetchmail を使うには python と tk もインストールされている
83必要があります.
84%endif
85
86
87%prep
88%setup -q
89
90
91%build
92%if %{without fetchmailconf}
93export PYTHON=":"
94%endif
95
96%configure \
97     --enable-POP3 \
98     --enable-IMAP \
99     --enable-NTLM \
100     --with-ssl \
101     --with-kerberos5 \
102     --with-gssapi \
103     --enable-fallback=no
104
105%__make %{?_smp_mflags}
106
107
108%install
109rm -rf %{buildroot}
110%makeinstall
111
112rm -f %{buildroot}%{_mandir}/man1/fetchmailconf.1*
113%if %{with fetchmailconf}
114install -p -m 644 %{SOURCE1} %{buildroot}%{_mandir}/man1/
115%else
116rm -f %{buildroot}%{_bindir}/fetchmailconf
117%endif
118
119%if %{with systemd}
120install -Dpm644 %{SOURCE2} %{buildroot}%{_unitdir}/fetchmail.service
121install -Dpm644 %{SOURCE3} %{buildroot}%{_unitdir}/fetchmail@.service
122%endif
123
124%find_lang %name
125
126
127%clean
128rm -rf %{buildroot}
129
130
131%if %{with systemd}
132%post
133%systemd_post %{name}.service
134
135%preun
136%systemd_preun %{name}.service
137
138%postun
139%systemd_postun_with_restart %{name}.service
140%endif
141
142
143%files -f %{name}.lang
144%defattr(-,root,root)
145%license COPYING
146%doc FEATURES README NEWS NOTES *.html FAQ INSTALL
147%{_bindir}/fetchmail
148%{_mandir}/man1/fetchmail.1*
149%if %{with systemd}
150%{_unitdir}/*
151%endif
152
153%if %{with fetchmailconf}
154%files -n fetchmailconf
155%defattr(-,root,root)
156%{_bindir}/fetchmailconf
157%{python_sitelib}/fetchmailconf.py*
158%{_mandir}/man1/fetchmailconf.1*
159%endif
160
161%changelog
162* Fri May 01 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.4.4-1
163- new upstream release.
164- added systemd support (disabled as default).
165- dropped R:smtpdaemon.
166
167* Fri Oct 04 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.4.1-1
168- new upstream release.
169- disabled to build fetchmailconf as default.
170
171* Mon Nov 05 2018 Toshiaki Ara <ara_t@384.jp> 6.3.26-3
172- rebuild with openssl-1.1.1
173
174* Tue Mar  8 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.26-2
175- rebuilt with openssl 1.0.1s
176
177* Thu Jan  9 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.26-1
178- new upstream release 
179
180* Sun Mar 24 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.25-1
181- new upstream release
182
183* Fri Oct 19 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.22-1
184- new upstream release with security fix (CVE-2012-3482)
185- update patch1, 2
186- fix changelog ver number typo
187
188* Sat Aug 27 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.21-1
189- new upstream release
190
191* Sat Jul 16 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.20-1
192- new upstream release with security fix (CVE-2011-1947)
193  http://www.fetchmail.info/fetchmail-SA-2011-01.txt
194
195* Sun Apr  3 2011 IWAI, Masaharu <iwai@alib.jp> 6.3.19-3vl6
196- build with krb5-libs 1.8.2
197
198* Sun Jan  9 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.19-2
199- rebuilt with openssl 1.0.0c
200
201* Sun Dec 12 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.19-1
202- new upstream release with security fix
203  http://fetchmail.berlios.de/fetchmail-EN-2010-03.txt
204- add BRs: flex, bison
205
206* Wed May 12 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.17-3
207- rebuild with openssl 0.9.8 (2vl6 was built with openssl 1.0)
208
209* Sun May  9 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.17-2
210- change spec filename (-vl added)
211
212* Fri May  7 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.17-1
213- new upstream release with security fix (CVE-2010-1167)
214- add BR: python-devel
215- fix configure option (--with-hoge)
216
217* Thu Feb 11 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.14-1
218- new upstream release with security fix (CVE-2010-0562)
219
220* Sat Nov 28 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 6.3.13-1
221- new upstream release (including security fix CVE-2009-0266)
222
223* Thu Aug  6 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.11-1
224- new upstream release
225- enable krb5 for Vine 5 and later
226- fix configure option (drop old configure options)
227- fix changelog typo
228
229* Sat Jul  4 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.10-1
230- new upstream release
231- fix changelog typo
232
233* Sat Nov 29 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.9-1
234- new upstream release with CVE-2007-4565,CVE-2008-2711 fix
235- drop old pacthes which are included in new release
236
237* Fri Jun 20 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.8-3
238- add patch110 for fix CVE-2008-2711
239  (if 6.3.9 will be released, patch110 is no needed)
240- new versioning policy
241
242* Fri Aug 31 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.8-0vl2
243- add patch100 for fix CVE-2007-4565
244  (if 6.3.9 will be released, patch100 is no needed)
245
246* Mon Apr 16 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.8-0vl1
247- new upstream release with fixing CVE-2007-1558
248
249* Fri Mar 30 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.7-0vl1
250- new upstream release with fixing up fallout from the CVE-2006-5867
251
252* Wed Dec 06 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.6-0vl1
253- new upstream release with security fix (CVE-2006-5867,CVE-2006-5974)
254  - CVE-2006-5974 is already fixed by patch3
255- drop patch3 (is included in new release)
256- add Vendor/Distribution Tag
257
258* Wed Dec 06 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.5-0vl1.1
259- test package
260- add patch1,2 from mandrave
261- add patch3 from upstream CVS
262
263* Fri Oct 27 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.5-0vl1
264- new upstream release
265
266* Mon Jun 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 6.3.4-0vl1
267- new upstream release
268
269* Thu Dec 22 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
270- 6.2.5-0vl1.1
271- new upstream release
272- drop patch1
273- change source tarball gz -> bz2
274
275* Sun Aug 07 2005 Shu KONNO <owa@bg.wakwak.com> 6.2.5-0vl1.1
276- add fetchmail-patch-6.2.5.2.gz
277
278* Mon Nov 10 2003 IWAI, Masaharu <iwai@alib.jp> 6.2.5-0vl1
279- new upstream release
280
281* Tue Aug 26 2003 IWAI, Masaharu <iwai@alib.jp> 6.2.4-0vl1
282- new upstream release
283
284* Thu Jul 31 2003 IWAI Masaharu <iwai@alib.jp> 6.2.3-0vl1
285- new upstream release
286
287* Wed May 21 2003 IWAI Masaharu <iwai@alib.jp> 6.2.2-0vl2
288- revise URL and Source0 URL
289
290* Sun Mar  9 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 6.2.2-0vl1
291- new upstream release
292  - this version include security fix patch.
293
294* Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 6.2.1-0vl1
295- new upstream release
296  (hopefully fixed several security bugs)
297
298* Sun May 26 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 5.9.11-0vl1
299- new upstream release
300
301* Sun Feb 17 2002 Toru Sagami <sagami@vinelinux.org> 5.9.8-0vl1
302- updated to 5.9.8
303
304* Mon Jan 07 2002 Toru Sagami <sagami@vinelinux.org>
305- 5.9.6-0vl1
306
307* Mon Dec 10 2001 Toru Sagami <sagami@vinelinux.org>
308- 5.9.5-0vl1
309
310* Thu Oct 04 2001 Toru Sagami <sagami@vinelinux.org>
311- 5.9.4-0vl1
312
313* Tue Aug 14 2001 <sagami@vinelinux.org>
314- 5.9.0-0vl1
315
316* Thu Aug 02 2001 <sagami@vinelinux.org>
317- 5.8.15-0vl1
318- add tkinter for Requires
319
320* Mon Jul 16 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
321- 5.8.11-0vl2
322- rebuilt with openssl-0.9.6b
323
324* Mon Jul 09 2001 <sagami@vinelinux.org>
325- 5.8.11-0vl1
326- built with openssl-0.9.6
327
328* Tue Jun 26 2001 <sagami@vinelinux.org>
329- 5.8.10-0vl1
330
331* Mon Jun 25 2001 <sagami@vinelinux.org>
332- 5.8.9-0vl1
333
334* Thu Jun 21 2001 <sagami@vinelinux.org>
335- 5.8.8-0vl1: updated to 5.8.8
336- use %%{find_lang}
337
338* Wed Jan 10 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
339- 5.6.0-2vl1
340- based on 5.6.0-2 from Rawhide
341- added Japanese summary and description
342
343* Tue Nov 28 2000 Nalin Dahyabhai <nalin@redhat.com>
344- enable NLS (#21419)
345
346* Mon Nov 27 2000 Nalin Dahyabhai <nalin@redhat.com>
347- update to 5.6.0
348- revert "untagged" patch, which went upstream
349
350* Wed Nov  8 2000 Nalin Dahyabhai <nalin@redhat.com>
351- patch to handle untagged responses during IMAP-GSS authentication
352- update to 5.5.5
353
354* Thu Aug 17 2000 Nalin Dahyabhai <nalin@redhat.com>
355- enable SSL support
356
357* Sat Aug 12 2000 Nalin Dahyabhai <nalin@redhat.com>
358- update to 5.5.0
359- change Copyright: to License: GPL
360
361* Tue Aug  8 2000 Nalin Dahyabhai <nalin@redhat.com>
362- back out MDA patch; sendmail started listening by default again
363
364* Thu Aug  3 2000 Nalin Dahyabhai <nalin@redhat.com>
365- patch to use procmail as an MDA by default
366- patch to not run makedepend
367
368* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
369- automatic rebuild
370
371* Sun Jul  2 2000 Nalin Dahyabhai <nalin@redhat.com>
372- update to 5.4.3
373
374* Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
375- fix a typo in 5.4.2
376
377* Wed Jun 28 2000 Matt Wilson <msw@redhat.com>
378- fixed configure arguments to not have a continuation at the end of the last
379  one
380
381* Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
382- update to 5.4.2
383
384* Fri Jun  9 2000 Nalin Dahyabhai <nalin@redhat.com>
385- update to 5.4.1
386- FHS fixes, with mandir override
387- change fetchmailconf.1 symlink to an include
388
389* Thu May 25 2000 Nalin Dahyabhai <nalin@redhat.com>
390- fix Kerberos configure patch to work correctly for krb5 1.0, too
391
392* Fri May 19 2000 Nalin Dahyabhai <nalin@redhat.com>
393- update to 5.4.0
394- rework Kerberos dependencies
395
396* Fri Apr 21 2000 Nalin Dahyabhai <nalin@redhat.com>
397- update to 5.3.8
398
399* Tue Apr  4 2000 Bill Nottingham <notting@redhat.com>
400- eliminate explicit krb5-configs dependency
401
402* Mon Mar  6 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
403- 5.3.1 - This fixes Bugs #9982 and #9987
404
405* Wed Mar  1 2000 Nalin Dahyabhai <nalin@redhat.com>
406- make kerberos support conditional at build-time
407
408* Wed Mar  1 2000 Bill Nottingham <notting@redhat.com>
409- integrate kerberos support into main tree
410
411* Fri Feb 25 2000 Nalin Dahyabhai <nalin@redhat.com>
412- Add Kerberos and GSS authenticator support
413
414* Fri Feb 25 2000 Cristian Gafton <gafton@redhat.com>
415- version 5.3.0 has a correct version of the rfc822 patch
416
417* Fri Feb 25 2000 Jeff Johnson <jbj@redhat.com>
418- fix length of rfc822 headers in strcncasecmp().
419
420* Tue Feb 15 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
421- 5.2.8 (fixes the POP3-UIDL bug)
422- Fix up the fetchmailconf man page symlink
423
424* Fri Feb 11 2000 Cristian Gafton <gafton@redhat.com>
425- version 5.2.7
426- add patch so that fetchmailconf will not output ssl configure statements
427  is no ssl is configured
428
429* Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
430- rebuild to fix deps
431- man pages are compressed
432- enable %clean
433
434* Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
435- 5.2.3
436- fetchmailconf requires fetchmail = %{version}
437- fix compilation
438
439* Mon Dec 27 1999 Bernhard Rosenkraenzer <bero@redhat.com>
440- 5.2.2
441
442* Thu Sep 23 1999 Preston Brown <pbrown@redhat.com>
443- got 5.1.0, fixes potential buffer overflow...
444
445* Sat Jun 12 1999 Jeff Johnson <jbj@redhat.com>
446- update to 5.0.4.
447
448* Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
449- 5.0.0
450
451* Tue Mar 30 1999 Preston Brown <pbrown@redhat.com>
452- subpackage for fetchmailconf
453
454* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
455- auto rebuild in the new build environment (release 2)
456
457* Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
458- version 4.7.0
459- build against glibc 2.1
460
461* Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
462- correct typo in dangling symlink fix.
463
464* Wed Sep 09 1998 Cristian Gafton <gafton@redhat.com>
465- update to 4.5.8
466
467* Wed Jul 22 1998 Jeff Johnson <jbj@redhat.com>
468- update to 4.5.3.
469
470* Fri May 08 1998 Cristian Gafton <gafton@redhat.com>
471- fixed spelung eror in the decsriptoin
472
473* Thu May 07 1998 Cristian Gafton <gafton@redhat.com>
474- new version 4.4.4 fixes a lot of bugs
475
476* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
477- translations modified for de, fr, tr
478
479* Thu Apr 09 1998 Cristian Gafton <gafton@redhat.com>
480- upgraded to 4.4.1
481- buildroot
482
483* Thu Oct 23 1997 Michael Fulbright <msf@redhat.com>
484- Updated to 4.3.2 using SRPM from Eric Raymond
485
486* Thu Jul 10 1997 Erik Troan <ewt@redhat.com>
487- built against glibc
Note: See TracBrowser for help on using the repository browser.