wget-vl.spec 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. Summary: A utility for retrieving files using the HTTP or FTP protocols.
  2. Summary(ja): HTTP/FTP プロトコルによるファイル取得ユーティリティ
  3. Name: wget
  4. Version: 1.14
  5. Release: 2%{?_dist_release}
  6. License: GPL
  7. Group: Applications/Internet
  8. # Source0: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.bz2
  9. Source0: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
  10. Patch0: wget-1.12-path.patch
  11. Patch10: wget-1.14-sslreadtimeout.patch
  12. ## Vine Patch(es)
  13. Patch100: wget-vine-modified.patch
  14. # Security Fix
  15. # Nothing !
  16. Provides: webclient
  17. Requires(pre): install-info
  18. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  19. %if %{_dist_release} > "vl6"
  20. BuildRequires: openssl-devel, libuuid-devel, zlib-devel
  21. %else
  22. BuildRequires: openssl-devel, zlib-devel
  23. %endif
  24. %{?nosrc:NoSource: 0}
  25. Vendor: Project Vine
  26. Distribution: Vine Linux
  27. %description
  28. GNU Wget is a file retrieval utility which can use either the HTTP or
  29. FTP protocols. Wget features include the ability to work in the
  30. background while you're logged out, recursive retrieval of
  31. directories, file name wildcard matching, remote file timestamp
  32. storage and comparison, use of Rest with FTP servers and Range with
  33. HTTP servers to retrieve files over slow or unstable connections,
  34. support for Proxy servers, and configurability.
  35. Install wget if you need to retrieve large numbers of files with HTTP or
  36. FTP, or if you need a utility for mirroring web sites or FTP directories.
  37. #'
  38. %description -l ja
  39. GNU wget は HTTP や FTP プロトコルを使用してファイルを取得するユーティリ
  40. ティです。wget には次のような特徴があります。
  41. - ログアウトしている間にバックグラウンドで実行可能
  42. - ディレクトリの再帰的取得
  43. - ファイル名のワイルドカードマッチング
  44. - ファイルのタイムスタンプの保存と比較
  45. - FTP サーバの Rest、HTTP サーバの Range を使用したダウンロードの再開
  46. - プロキシサーバへの対応
  47. - 設定の容易さ
  48. もし HTTP か FTP で大量のファイルを取得する必要があったり、Web サイトや
  49. FTP ディレクトリをミラーするユーティリティが必要なら wget をインストール
  50. してください。
  51. %prep
  52. %setup -q
  53. %patch0 -p1 -b .path
  54. %patch10 -p1 -b .sslreadtimeout
  55. ## Vine Patch(es)
  56. %patch100 -p0 -b .vine
  57. # Security Fix
  58. # Nothing !!
  59. %build
  60. %configure --with-ssl=openssl
  61. %__make %{?_smp_mflags}
  62. %install
  63. %__rm -rf $RPM_BUILD_ROOT
  64. %makeinstall
  65. %find_lang %{name}
  66. %post
  67. /sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir
  68. %preun
  69. if [ "$1" = 0 ]; then
  70. /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir
  71. fi
  72. %clean
  73. %__rm -rf $RPM_BUILD_ROOT
  74. %files -f %{name}.lang
  75. %defattr(-,root,root)
  76. %doc AUTHORS MAILING-LIST NEWS README INSTALL COPYING
  77. %config %{_sysconfdir}/wgetrc
  78. %{_bindir}/wget
  79. %{_infodir}/wget.info*
  80. %{_mandir}/man1/wget.1*
  81. %changelog
  82. * Sat Oct 27 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.14-2
  83. - add BR: if-endif for vine6
  84. * Thu Oct 25 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.14-1
  85. - new upstream release
  86. - add pacth10,100 from fc19
  87. - add BR: libuuid-devel
  88. * Mon May 7 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.13.4-1
  89. - new upstream release
  90. - add patch0 from fc17
  91. - drop old patches
  92. - change configure option to use openssl
  93. - change src format from bz2 to xz
  94. * Tue Jan 11 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.11.4-3
  95. - rebuild with openssl-1.0.0c
  96. * Fri Sep 25 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.11.4-2
  97. - patch110 for fix openssl null char issue
  98. * Wed Oct 22 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.11.4-1
  99. - new upstream release
  100. - SPEC in UTF-8
  101. * Wed Mar 26 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.11.1-1
  102. - new upstream release
  103. - drop patch100 which is in included in new release
  104. - build under new versioning policy
  105. * Wed May 30 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.10.2-0vl3
  106. - rebuild with openssl-0.9.8
  107. * Fri Jan 12 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.10.2-0vl2
  108. - rebuilt for VineSeed
  109. - fix changelog typo
  110. * Fri Jan 12 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.10.2-0vl1.1
  111. - add pacth100 for fix CVE-2006-6719 (SYST Unchecked Boundary Condition)
  112. * Wed Oct 19 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.10.2-0vl1
  113. - [SECURITY FIX] upstream release
  114. - Stack-based buffer overflow (CAN-2005-3185)
  115. * Thu Jul 07 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.10-0vl1
  116. - [SECURITY FIX] upstream release
  117. - overwrite certain files via a redirection URL (CAN-2004-1487)
  118. - execute arbitrary code (CAN-2004-1488)
  119. - overwrite arbitrary files via a symlink attack (CAN-2004-2014)
  120. - %%doc
  121. - add COPYING, TODO
  122. - drop doc/ChangeLog
  123. - not compress info at %%install (should be done by %%__install_spec_post)
  124. - drop obsolete patches
  125. - update Japanese description
  126. * Wed Mar 31 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.9.1-0vl1
  127. - source upgrade
  128. - build with openssl-0.9.7d
  129. - Prereq: install-info instead of /sbin/install-info
  130. - remove all patches
  131. * Sun Dec 15 2002 IWAI Masaharu <iwai@alib.jp> 1.8.1-0vl5
  132. - rebuild on VineSeed
  133. * Thu Dec 12 2002 IWAI Masaharu <iwai@alib.jp> 1.8.1-0vl4
  134. - fix directory traversal bug
  135. add wget-1.8.2-filename.patch(Patch101) from RedHat updates 1.8.2-4.6x
  136. * Wed Mar 13 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl3
  137. - revamped Patch10 to fit with 1.8.1 source. But disable it.
  138. * Wed Mar 13 2002 Toru Sagami <sagami@vinelinux.org> 1.8.1-0vl2
  139. - added patch from current CVS to fix broken recursive download.
  140. * Tue Dec 25 2001 Toru Sagami <sagami@vinelinux.org>
  141. - 1.8.1
  142. * Mon Dec 10 2001 Toru Sagami <sagami@vinelinux.org>
  143. - 1.8-0vl0: update to 1.8 with an ad-hoc patch for md5.h
  144. * Thu Nov 22 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.7.1-0vl2
  145. - added ppc patch derived from:
  146. http://bugs.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=109348
  147. * Mon Nov 19 2001 Toru Sagami <sagami@vinelinux.org>
  148. - 1.7.1-0vl1: use ja.po included in source
  149. * Fri Aug 24 2001 Toru Sagami <sagami@vinelinux.org>
  150. - 1.7-0vl2: configure --with-ssl
  151. * Wed Jun 13 2001 <sagami@vinelinux.org>
  152. - 1.7-0vl1: update to 1.7 with updated ja.po
  153. * Tue May 29 2001 <sagami@vinelinux.org>
  154. - 1.6-0vl2: use better macros
  155. * Fri Jan 5 2001 Yoichi Imai <yoichi@silver-forest.com>
  156. - removed getmore patch, ja.patch, ja.po
  157. - removed gzip and strip
  158. - used environment variable of rpm
  159. - not used symlink patch
  160. * Fri Sep 08 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  161. - 1.5.3_jp-6
  162. - modified %files section to handle compressed man page(s)
  163. - added Japanese summary
  164. * Wed Jan 26 2000 Norihito Ohmori <nono@vinelinux.org>
  165. - fix ja.po
  166. * Thu Jan 20 2000 HIROSE, Masaaki <hirose31@t3.rim.or.jp>
  167. - added getmore.patch. to get files like LINK HREF="XXX".
  168. * Sun Nov 7 1999 Toru Hoshina <t@kondara.org>
  169. - be a NoSrc :-P
  170. * Sat Sep 18 1999 Norihito Ohmori <ohmori@flatout.org>
  171. - add ja.po
  172. - add Japanese Summary and Description
  173. * Thu Aug 26 1999 Jeff Johnson <jbj@redhat.com>
  174. - don't permit chmod 777 on symlinks (#4725).
  175. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  176. - auto rebuild in the new build environment (release 4)
  177. * Fri Dec 18 1998 Bill Nottingham <notting@redhat.com>
  178. - build for 6.0 tree
  179. - add Provides
  180. * Sat Oct 10 1998 Cristian Gafton <gafton@redhat.com>
  181. - strip binaries
  182. - version 1.5.3
  183. * Sat Jun 27 1998 Jeff Johnson <jbj@redhat.com>
  184. - updated to 1.5.2
  185. * Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
  186. - modified group to Applications/Networking
  187. * Wed Apr 22 1998 Cristian Gafton <gafton@redhat.com>
  188. - upgraded to 1.5.0
  189. - they removed the man page from the distribution (Duh!) and I added it back
  190. from 1.4.5. Hey, removing the man page is DUMB!
  191. * Fri Nov 14 1997 Cristian Gafton <gafton@redhat.com>
  192. - first build against glibc