fetchmail-vl.spec 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
  2. Summary: A remote mail retrieval and forwarding utility.
  3. Summary(ja): 遠隔メール取得/フォワード用ユーティリティ
  4. Name: fetchmail
  5. Version: 6.3.17
  6. Release: 2%{_dist_release}
  7. Requires: smtpdaemon
  8. License: GPL
  9. Group: Applications/Internet
  10. URL: http://fetchmail.berlios.de/
  11. Source0: http://download.berlios.de/fetchmail/fetchmail-%{version}.tar.bz2
  12. Source1: fetchmailconf.1
  13. Patch1: fetchmail-6.3.5-stripnul.patch
  14. Patch2: fetchmail-6.3.5-nonewline.patch
  15. # Patch3: fetchmail-6.3.5-malformed_spam_crash.patch
  16. # security
  17. # Patch100: fetchmail-6.3.8_CVE-2007-4565.patch
  18. # Patch110: fetchmail-6.3.8_CVE-2008-2711.patch
  19. Buildroot: %{_tmppath}/%{name}-%{version}-root
  20. BuildRequires: openssl-devel
  21. BuildRequires: krb5-devel
  22. BuildRequires: python-devel
  23. Requires: krb5-libs
  24. Vendor: Project Vine
  25. Distribution: Vine Linux
  26. Packager: iwamoto, inagaki
  27. %package -n fetchmailconf
  28. Summary: A GUI utility for configuring your fetchmail preferences.
  29. Summary(ja): fetchmail を設定する為の GUI ユーティリティ
  30. Group: Applications/Internet
  31. Requires: python, tk, tkinter, fetchmail = %{version}-%{release}
  32. %description
  33. Fetchmail is a remote mail retrieval and forwarding utility intended
  34. for use over on-demand TCP/IP links, like SLIP or PPP connections.
  35. Fetchmail supports every remote-mail protocol currently in use on the
  36. Internet (POP2, POP3, RPOP, APOP, KPOP, all IMAPs, ESMTP ETRN) for
  37. retrieval. Then Fetchmail forwards the mail through SMTP, so you can
  38. read it through your favorite mail client.
  39. Install fetchmail if you need to retrieve mail over SLIP or PPP
  40. connections.
  41. %description -l ja
  42. fetchmail は SLIP や PPP といったオンデマンド TCP/IP 接続環境で
  43. 使われることを念頭に置いた遠隔メール取得/フォワードユーティリティです.
  44. fetchmail は,現在インターネット上で使われている様々なプロトコル
  45. (POP2, POP3, RPOP, APOP, KPOP, IMAP, ESMTP, ETRN) に対応しています.
  46. fetchmail はメールのフォワードには SMTP を用います.
  47. ですので,あなたのお好きなメールクライアントでメールを読むことが出来ます.
  48. SLIP や PPP 接続でメールを取得したい場合は fetchmail を
  49. インストールして下さい.
  50. %description -n fetchmailconf
  51. Fetchmailconf is a Tcl/Tk GUI application which edits your
  52. .fetchmailrc file, in order to configure the fetchmail mail retrieval
  53. program. Fetchmail's numerous options may be confusing to new users,
  54. but fetchmailconf may help to clear up the confusion.
  55. Install fetchmailconf if you need help configuring fetchmail. You'll
  56. need to have python and tk installed in order to use fetchmailconf.
  57. %description -n fetchmailconf -l ja
  58. fetchmailconf は fetchmail プログラムを制御する .fetchmailrc ファイルを
  59. 編集する為の Tcl/Tk GUI アプリケーションです.
  60. fetchmail の様々なオプションは慣れないユーザにとっては混乱するばかりですが,
  61. fetchmailconf を使うと混乱すること無く設定が行えます.
  62. fetchmail の設定を簡単に行いたい場合は fetchmailconf をインストール
  63. して下さい.fetchmail を使うには python と tk もインストールされている
  64. 必要があります.
  65. %prep
  66. %setup -q
  67. %patch1 -p1 -b .stripnul
  68. %patch2 -p1 -b .nonewline
  69. # %patch3 -p0 -b .malformed_spam
  70. # %patch100 -p0 -b .CVE-2007-4565
  71. # %patch110 -p1 -b .CVE-2008-2711
  72. %build
  73. %configure \
  74. --enable-NTLM \
  75. --with-ssl \
  76. --with-kerberos5 \
  77. --with-gssapi
  78. %__make %{?_smp_mflags}
  79. %install
  80. rm -rf $RPM_BUILD_ROOT
  81. %makeinstall
  82. rm -f $RPM_BUILD_ROOT%{_mandir}/man1/fetchmailconf.1*
  83. install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_mandir}/man1/
  84. %find_lang %name
  85. %clean
  86. rm -rf $RPM_BUILD_ROOT
  87. %files -f %{name}.lang
  88. %defattr(-,root,root)
  89. %doc FEATURES README NEWS NOTES *.html FAQ COPYING INSTALL
  90. %{_bindir}/fetchmail
  91. %{_mandir}/man1/fetchmail.1*
  92. %files -n fetchmailconf
  93. %defattr(-,root,root)
  94. %{_bindir}/fetchmailconf
  95. %{python_sitelib}/fetchmailconf.py*
  96. %{_mandir}/man1/fetchmailconf.1*
  97. %changelog
  98. * Sun May 9 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.17-2
  99. - change spec filename (-vl added)
  100. * Fri May 7 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.17-1
  101. - new upstream release with security fix (CVE-2010-1167)
  102. - add BR: python-devel
  103. - fix configure option (--with-hoge)
  104. * Thu Feb 11 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.14-1
  105. - new upstream release with security fix (CVE-2010-0562)
  106. * Sat Nov 28 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 6.3.13-1
  107. - new upstream release (including security fix CVE-2009-0266)
  108. * Thu Aug 6 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.11-1
  109. - new upstream release
  110. - enable krb5 for Vine 5 and later
  111. - fix configure option (drop old configure options)
  112. - fix changelog typo
  113. * Sat Jul 4 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.10-1
  114. - new upstream release
  115. - fix changelog typo
  116. * Sat Nov 29 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.9-1
  117. - new upstream release with CVE-2007-4565,CVE-2008-2711 fix
  118. - drop old pacthes which are included in new release
  119. * Fri Jun 20 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.8-3
  120. - add patch110 for fix CVE-2008-2711
  121. (if 6.3.9 will be released, patch110 is no needed)
  122. - new versioning policy
  123. * Fri Aug 31 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.8-0vl2
  124. - add patch100 for fix CVE-2007-4565
  125. (if 6.3.9 will be released, patch100 is no needed)
  126. * Mon Apr 16 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.8-0vl1
  127. - new upstream release with fixing CVE-2007-1558
  128. * Tue Mar 30 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.7-0vl1
  129. - new upstream release with fixing up fallout from the CVE-2006-5867
  130. * Wed Dec 06 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.6-0vl1
  131. - new upstream release with security fix (CVE-2006-5867,CVE-2006-5974)
  132. - CVE-2006-5974 is already fixed by patch3
  133. - drop patch3 (is included in new release)
  134. - add Vendor/Distribution Tag
  135. * Wed Dec 06 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.5-0vl1.1
  136. - test package
  137. - add patch1,2 from mandrave
  138. - add patch3 from upstream CVS
  139. * Fri Oct 27 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 6.3.5-0vl1
  140. - new upstream release
  141. * Mon Jun 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 6.3.4-0vl1
  142. - new upstream release
  143. * Thu Dec 22 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
  144. - 6.2.5-0vl1.1
  145. - new upstream release
  146. - drop patch1
  147. - change source tarball gz -> bz2
  148. * Sun Aug 07 2005 Shu KONNO <owa@bg.wakwak.com> 6.2.5-0vl1.1
  149. - add fetchmail-patch-6.2.5.2.gz
  150. * Mon Nov 10 2003 IWAI, Masaharu <iwai@alib.jp> 6.2.5-0vl1
  151. - new upstream release
  152. * Tue Aug 26 2003 IWAI, Masaharu <iwai@alib.jp> 6.2.4-0vl1
  153. - new upstream release
  154. * Thu Jul 31 2003 IWAI Masaharu <iwai@alib.jp> 6.2.3-0vl1
  155. - new upstream release
  156. * Wed May 21 2003 IWAI Masaharu <iwai@alib.jp> 6.2.2-0vl2
  157. - revise URL and Source0 URL
  158. * Sun Mar 9 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 6.2.2-0vl1
  159. - new upstream release
  160. - this version include security fix patch.
  161. * Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 6.2.1-0vl1
  162. - new upstream release
  163. (hopefully fixed several security bugs)
  164. * Sun May 26 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 5.9.11-0vl1
  165. - new upstream release
  166. * Sun Feb 17 2002 Toru Sagami <sagami@vinelinux.org> 5.9.8-0vl1
  167. - updated to 5.9.8
  168. * Mon Jan 07 2002 Toru Sagami <sagami@vinelinux.org>
  169. - 5.9.6-0vl1
  170. * Mon Dec 10 2001 Toru Sagami <sagami@vinelinux.org>
  171. - 5.9.5-0vl1
  172. * Thu Oct 04 2001 Toru Sagami <sagami@vinelinux.org>
  173. - 5.9.4-0vl1
  174. * Tue Aug 14 2001 <sagami@vinelinux.org>
  175. - 5.9.0-0vl1
  176. * Thu Aug 02 2001 <sagami@vinelinux.org>
  177. - 5.8.15-0vl1
  178. - add tkinter for Requires
  179. * Mon Jul 16 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  180. - 5.8.11-0vl2
  181. - rebuilt with openssl-0.9.6b
  182. * Mon Jul 09 2001 <sagami@vinelinux.org>
  183. - 5.8.11-0vl1
  184. - built with openssl-0.9.6
  185. * Tue Jun 26 2001 <sagami@vinelinux.org>
  186. - 5.8.10-0vl1
  187. * Mon Jun 25 2001 <sagami@vinelinux.org>
  188. - 5.8.9-0vl1
  189. * Thu Jun 21 2001 <sagami@vinelinux.org>
  190. - 5.8.8-0vl1: updated to 5.8.8
  191. - use %%{find_lang}
  192. * Wed Jan 10 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  193. - 5.6.0-2vl1
  194. - based on 5.6.0-2 from Rawhide
  195. - added Japanese summary and description
  196. * Tue Nov 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  197. - enable NLS (#21419)
  198. * Mon Nov 27 2000 Nalin Dahyabhai <nalin@redhat.com>
  199. - update to 5.6.0
  200. - revert "untagged" patch, which went upstream
  201. * Wed Nov 8 2000 Nalin Dahyabhai <nalin@redhat.com>
  202. - patch to handle untagged responses during IMAP-GSS authentication
  203. - update to 5.5.5
  204. * Thu Aug 17 2000 Nalin Dahyabhai <nalin@redhat.com>
  205. - enable SSL support
  206. * Sat Aug 12 2000 Nalin Dahyabhai <nalin@redhat.com>
  207. - update to 5.5.0
  208. - change Copyright: to License: GPL
  209. * Tue Aug 8 2000 Nalin Dahyabhai <nalin@redhat.com>
  210. - back out MDA patch; sendmail started listening by default again
  211. * Thu Aug 3 2000 Nalin Dahyabhai <nalin@redhat.com>
  212. - patch to use procmail as an MDA by default
  213. - patch to not run makedepend
  214. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  215. - automatic rebuild
  216. * Sun Jul 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  217. - update to 5.4.3
  218. * Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
  219. - fix a typo in 5.4.2
  220. * Wed Jun 28 2000 Matt Wilson <msw@redhat.com>
  221. - fixed configure arguments to not have a continuation at the end of the last
  222. one
  223. * Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
  224. - update to 5.4.2
  225. * Fri Jun 9 2000 Nalin Dahyabhai <nalin@redhat.com>
  226. - update to 5.4.1
  227. - FHS fixes, with mandir override
  228. - change fetchmailconf.1 symlink to an include
  229. * Thu May 25 2000 Nalin Dahyabhai <nalin@redhat.com>
  230. - fix Kerberos configure patch to work correctly for krb5 1.0, too
  231. * Fri May 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  232. - update to 5.4.0
  233. - rework Kerberos dependencies
  234. * Fri Apr 21 2000 Nalin Dahyabhai <nalin@redhat.com>
  235. - update to 5.3.8
  236. * Tue Apr 4 2000 Bill Nottingham <notting@redhat.com>
  237. - eliminate explicit krb5-configs dependency
  238. * Mon Mar 6 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  239. - 5.3.1 - This fixes Bugs #9982 and #9987
  240. * Wed Mar 1 2000 Nalin Dahyabhai <nalin@redhat.com>
  241. - make kerberos support conditional at build-time
  242. * Wed Mar 1 2000 Bill Nottingham <notting@redhat.com>
  243. - integrate kerberos support into main tree
  244. * Fri Feb 25 2000 Nalin Dahyabhai <nalin@redhat.com>
  245. - Add Kerberos and GSS authenticator support
  246. * Fri Feb 25 2000 Cristian Gafton <gafton@redhat.com>
  247. - version 5.3.0 has a correct version of the rfc822 patch
  248. * Fri Feb 25 2000 Jeff Johnson <jbj@redhat.com>
  249. - fix length of rfc822 headers in strcncasecmp().
  250. * Tue Feb 15 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  251. - 5.2.8 (fixes the POP3-UIDL bug)
  252. - Fix up the fetchmailconf man page symlink
  253. * Fri Feb 11 2000 Cristian Gafton <gafton@redhat.com>
  254. - version 5.2.7
  255. - add patch so that fetchmailconf will not output ssl configure statements
  256. is no ssl is configured
  257. * Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
  258. - rebuild to fix deps
  259. - man pages are compressed
  260. - enable %clean
  261. * Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  262. - 5.2.3
  263. - fetchmailconf requires fetchmail = %{version}
  264. - fix compilation
  265. * Mon Dec 27 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  266. - 5.2.2
  267. * Thu Sep 23 1999 Preston Brown <pbrown@redhat.com>
  268. - got 5.1.0, fixes potential buffer overflow...
  269. * Sat Jun 12 1999 Jeff Johnson <jbj@redhat.com>
  270. - update to 5.0.4.
  271. * Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
  272. - 5.0.0
  273. * Tue Mar 30 1999 Preston Brown <pbrown@redhat.com>
  274. - subpackage for fetchmailconf
  275. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  276. - auto rebuild in the new build environment (release 2)
  277. * Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
  278. - version 4.7.0
  279. - build against glibc 2.1
  280. * Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
  281. - correct typo in dangling symlink fix.
  282. * Wed Sep 09 1998 Cristian Gafton <gafton@redhat.com>
  283. - update to 4.5.8
  284. * Wed Jul 22 1998 Jeff Johnson <jbj@redhat.com>
  285. - update to 4.5.3.
  286. * Fri May 08 1998 Cristian Gafton <gafton@redhat.com>
  287. - fixed spelung eror in the decsriptoin
  288. * Thu May 07 1998 Cristian Gafton <gafton@redhat.com>
  289. - new version 4.4.4 fixes a lot of bugs
  290. * Fri Apr 24 1998 Prospector System <bugs@redhat.com>
  291. - translations modified for de, fr, tr
  292. * Thu Apr 09 1998 Cristian Gafton <gafton@redhat.com>
  293. - upgraded to 4.4.1
  294. - buildroot
  295. * Thu Oct 23 1997 Michael Fulbright <msf@redhat.com>
  296. - Updated to 4.3.2 using SRPM from Eric Raymond
  297. * Thu Jul 10 1997 Erik Troan <ewt@redhat.com>
  298. - built against glibc