ruby-vl.spec 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608
  1. %define rubyxver 1.8
  2. %define rubyyver 7
  3. %define rubypl 330
  4. %define rubyver %{rubyxver}.%{rubyyver}-p%{rubypl}
  5. %define rpmver %{rubyxver}.%{rubyyver}.%{rubypl}
  6. %define rpmrel 1%{?_dist_release}
  7. %define rubysrcdir %{rubyxver}.%{rubyyver}-p%{rubypl}
  8. %define emacsen_pkg 1
  9. %{?without_emacsen: %define emacsen_pkg 0}
  10. %if %{emacsen_pkg}
  11. %undefine without_emacsen
  12. %else
  13. %define without_emacsen 1
  14. %endif
  15. %define rbmode ruby-mode
  16. %define rbmode_el ruby-mode
  17. %define rb_lib %{_prefix}/lib/ruby/%{rubyxver}
  18. %ifarch ppc
  19. %define rb_arch powerpc-%{_target_os}
  20. %else
  21. %define rb_arch %{_target_cpu}-%{_target_os}
  22. %endif
  23. %define rb_prefix %{_prefix}
  24. %define rb_mandir %(echo %{_mandir} | sed -e 's!^%{_prefix}!${prefix}!')
  25. %define rb_locallib local/%{_lib}
  26. %define rb_site %{rb_locallib}/site_ruby
  27. %define rb_sitebase %{rb_prefix}/%{rb_site}
  28. %define rb_sitedir %{rb_sitebase}/%{rubyxver}
  29. %define rb_sitearch %{rb_sitedir}/%{rb_arch}
  30. Summary: An interpreter of object-oriented scripting language
  31. Summary(ja): オブジェクト指向言語 Ruby インタプリタ
  32. Name: ruby
  33. Version: %{rpmver}
  34. Release: %{rpmrel}
  35. License: Ruby or GPLv2
  36. Group: Development/Languages
  37. Source0: ftp://ftp.ruby-lang.org/pub/%{name}/%{name}-%{rubyver}.tar.bz2
  38. Source2: http://elbereth-hp.hp.infoseek.co.jp/files/ruby/refm/ruby-refm-rdp-1.9.0-ja-html.tar.gz
  39. Source5: irb.1
  40. %if %{emacsen_pkg}
  41. Source6: %{rbmode_el}-install.sh
  42. Source7: %{rbmode_el}-remove.sh
  43. Source8: %{rbmode_el}-init.el
  44. %endif
  45. Patch803: ruby-1.8.6.111-soap-massmem.patch
  46. Patch808: ruby-1.8.6.287-rexml-document-transitive.patch
  47. Patch901: ruby-1.8.6.111-ri-pager.patch
  48. Patch903: ruby-1.8.6.111-rdoc-documents.patch
  49. Patch950: ruby-1.8.7-p72-multilib.patch
  50. Patch960: ruby-1.8.7-rubyprefix.patch
  51. # patches from debian package
  52. Patch1005: 090812_openssl_x509_warning.dpatch
  53. URL: http://www.ruby-lang.org/
  54. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  55. BuildPreReq: sed autoconf bison unzip
  56. BuildRequires: readline-devel
  57. BuildRequires: ncurses-devel
  58. BuildRequires: db4-devel
  59. BuildRequires: gdbm-devel
  60. BuildRequires: glibc-devel
  61. BuildRequires: tcl tk
  62. BuildRequires: libX11-devel
  63. BuildRequires: openssl-devel
  64. BuildRequires: zlib-devel
  65. Requires: libruby = %{version}-%{release}
  66. Vendor: Project Vine
  67. Distribution: Vine Linux
  68. Packager: daisuke, akira
  69. %description
  70. Ruby is the interpreted scripting language for quick and easy
  71. object-oriented programming. It has many features to process text files
  72. and to do system management tasks (as in Perl). It is simple,
  73. straight-forward, and extensible.
  74. %description -l ja
  75. Rubyはシンプルかつ強力なオブジェクト指向スクリプト言語です.Rubyは最初
  76. から純粋なオブジェクト指向言語として設計されていますから,オブジェクト
  77. 指向プログラミングを手軽に行う事が出来ます.もちろん通常の手続き型のプ
  78. ログラミングも可能です.
  79. Rubyはテキスト処理関係の能力などに優れ,Perlと同じくらい強力です.さら
  80. にシンプルな文法と,例外処理やイテレータなどの機構によって,より分かり
  81. やすいプログラミングが出来ます.
  82. %package -n libruby
  83. Summary: Libraries necessary to run Ruby.
  84. Summary(ja): Ruby の動作に必要なライブラリ群
  85. Group: System Environment/Libraries
  86. URL: http://www.ruby-lang.org/
  87. Obsoletes: drb erb ruby-csv ruby-optparse ruby-rexml ruby-strscan rubyunit racc-runtime
  88. %description -n libruby
  89. This package includes the libruby, necessary to run Ruby.
  90. %description -n libruby -l ja
  91. このパッケージには Ruby を利用するために必要となるライブラリが含まれ
  92. ています.
  93. %package -n ruby-devel
  94. Summary: A Ruby development environment.
  95. Group: Development/Languages
  96. Requires: libruby = %{version}-%{release}
  97. URL: http://www.ruby-lang.org/
  98. %description -n ruby-devel
  99. Header files and libraries for building a extension library for the
  100. Ruby or an application embedded Ruby.
  101. %description -n ruby-devel -l ja
  102. Rubyのための拡張ライブラリやRubyを組み込んだアプリケーションを作るため
  103. に必要となるへッダファイルやライブラリです.
  104. %package -n ruby-openssl
  105. Summary: OpenSSL interface for scripting language Ruby.
  106. Group: Development/Languages
  107. Requires: libruby = %{version}-%{release}
  108. URL: http://www.ruby-lang.org/
  109. %description -n ruby-openssl
  110. OpenSSL interface for the object-oriented scripting language Ruby.
  111. %description -n ruby-openssl -l ja
  112. RubyにOpenSSLライブラリへのインタフェースを提供する拡張ライブラリです.
  113. %package -n ruby-tcltk
  114. Summary: Tcl/Tk interface for scripting language Ruby.
  115. Group: Development/Languages
  116. Requires: libruby = %{version}-%{release}
  117. URL: http://www.ruby-lang.org/
  118. %description -n ruby-tcltk
  119. Tcl/Tk interface for the object-oriented scripting language Ruby.
  120. %description -n ruby-tcltk -l ja
  121. RubyにTcl/Tkライブラリへのインタフェースを提供する拡張ライブラリです.
  122. %package -n irb
  123. Summary: The Intaractive Ruby.
  124. Group: Development/Languages
  125. Requires: ruby = %{version}-%{release}
  126. URL: http://www.ruby-lang.org/
  127. %description -n irb
  128. The irb is acronym for Interactive RuBy. It evaluates ruby expression
  129. from the terminal.
  130. %description -n irb -l ja
  131. irbとはInteractive RuByの略で,対話的にRubyの式を入力し,評価させるこ
  132. とが可能です.
  133. %package -n rdoc
  134. Summary: Generate documentation from ruby source files
  135. Group: Development/Languages
  136. Requires: ruby = %{version}-%{release}, irb = %{version}-%{release}
  137. URL: http://www.ruby-lang.org/
  138. %description -n rdoc
  139. RDoc - Documentation from Ruby Source Files
  140. - Generates structured HTML and XML documentation from Ruby source and C
  141. extensions.
  142. - Automatically extracts class, module, method, and attribute definitions.
  143. These can be annonated using inline comments.
  144. - Analyzes method visibility.
  145. - Handles aliasing.
  146. - Uses non-intrusive and implicit markup in the comments. Readers
  147. of the original source needn't know that it is marked up at all.
  148. %description -n rdoc -l ja
  149. RDocはRubyのソースコードからドキュメントを生成するツールです.
  150. - RubyおよびC言語で書かれた拡張ライブラリのソースコードからHTML/XML形式の
  151. ドキュメントを生成できます.
  152. - クラス,モジュール,メソッド,アトリビュートを自動的に取り出します.それ
  153. らの説明はコメントの形で記述できます.
  154. - メソッドの可視性を判別できます.
  155. - エイリアスを適切に処理できます.
  156. %package -n ruby-docs
  157. Summary: Manuals and FAQs for scripting language Ruby.
  158. Summary(ja): Ruby のマニュアルと FAQ
  159. Group: Applications/Documentation
  160. URL: http://www.ruby-lang.org/
  161. %description -n ruby-docs
  162. Manuals and FAQs for the object-oriented scripting language Ruby.
  163. %description -n ruby-docs -l ja
  164. オブジェクト指向スクリプト言語Rubyについてのマ二ュアルとFAQです.
  165. %if %{emacsen_pkg}
  166. %package -n %{rbmode_el}
  167. Summary: Emacs-lisp ruby-mode for the scripting language Ruby
  168. Group: Applications/Editors/Emacs
  169. PreReq: emacsen, emacsen-common >= 0.1
  170. URL: http://www.ruby-lang.org/
  171. %description -n %{rbmode_el}
  172. Emacs-lisp ruby-mode for the object-oriented scripting language Ruby.
  173. %description -n %{rbmode_el} -l ja
  174. Emacs上でRubyスクリプトを書くのに便利なモードです.
  175. %endif
  176. %prep
  177. %setup -q -c
  178. mkdir %{name}-refm-ja
  179. cd %{name}-refm-ja
  180. tar xzf %{SOURCE2}
  181. cd ..
  182. cd %{name}-%{rubysrcdir}
  183. %patch803 -p1
  184. %patch808 -p1
  185. %patch901 -p1
  186. %patch903 -p1
  187. %ifarch x86_64 ppc64
  188. %patch950 -p1
  189. %endif
  190. %patch960 -p1
  191. %patch1005 -p1
  192. cd ../../..
  193. %build
  194. cd %{name}-%{rubysrcdir}
  195. autoconf
  196. CFLAGS="${CFLAGS:-%{optflags}}" ./configure \
  197. %ifarch i386 i486
  198. --enable-frame-address \
  199. %endif
  200. --prefix='%{rb_prefix}' \
  201. --mandir='%{rb_mandir}' \
  202. --sysconfdir='/etc' \
  203. --libdir='%{_libdir}' \
  204. --localstatedir='/var' \
  205. --with-sitedir='${prefix}/%{rb_site}' \
  206. --with-ruby-prefix='%{_prefix}/lib' \
  207. %ifarch x86_64 ppc64
  208. --with-search-path='%{_libdir}/ruby/%{rubyxver}' \
  209. %endif
  210. --with-default-kcode=none \
  211. --with-dbm-type=db \
  212. --with-bundled-sha1 \
  213. --with-bundled-md5 \
  214. --with-bundled-rmd160 \
  215. --enable-shared \
  216. --enable-pthread \
  217. --enable-ipv6 \
  218. --with-lookup-order-hack=INET \
  219. --target='%{rb_arch}'
  220. make %{?_smp_mflags}
  221. make test
  222. cd ..
  223. %install
  224. rm -rf ${RPM_BUILD_ROOT}
  225. %if %{emacsen_pkg}
  226. mkdir -p $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/%{rbmode}
  227. mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/emacsen-common/packages/install
  228. mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/emacsen-common/packages/remove
  229. %endif
  230. #
  231. # installing documents and exapmles...
  232. #
  233. mkdir tmp-ruby-docs
  234. cd tmp-ruby-docs
  235. mkdir ruby libruby ruby-devel ruby-openssl ruby-tcltk ruby-docs irb
  236. # for ruby.rpm
  237. cd ruby
  238. %if !%{emacsen_pkg}
  239. (cd ../../%{name}-%{rubysrcdir} && tar cf - misc) | tar xvf -
  240. %endif
  241. (cd ../../%{name}-%{rubysrcdir} && tar cf - sample) | tar xvf -
  242. cd ..
  243. # for libruby.rpm
  244. cd libruby
  245. (cd ../../%{name}-%{rubysrcdir} && tar cf - lib/README*) | tar xvf -
  246. (cd ../../%{name}-%{rubysrcdir}/doc && tar cf - .) | tar xvf -
  247. (cd ../../%{name}-%{rubysrcdir} &&
  248. tar cf - `find ext \
  249. -mindepth 1 \
  250. \( -path '*/sample/*' -o -path '*/demo/*' \) -o \
  251. \( -name '*.rb' -not -path '*/lib/*' -not -name extconf.rb \) -o \
  252. \( -name 'README*' -o -name '*.txt*' -o -name 'MANUAL*' \)`) | tar xvf -
  253. rm -rf ext/openssl
  254. cd ..
  255. # for irb.rpm
  256. cd irb
  257. mv ../libruby/irb/* .
  258. rmdir ../libruby/irb
  259. cd ..
  260. # for ruby-devel.rpm
  261. cd ruby-devel
  262. cd ..
  263. # for ruby-openssl.rpm
  264. cd ruby-openssl
  265. mv ../ruby/sample/openssl sample
  266. cd ..
  267. # for ruby-tcltk.rpm
  268. cd ruby-tcltk
  269. mv ../libruby/ext/tk/MANUAL* .
  270. mv ../libruby/ext/tk/README.* .
  271. mv ../libruby/ext/tk/lib/README README.lib
  272. mv ../libruby/ext/tk/lib/tkextlib .
  273. mv ../libruby/ext/tk/sample .
  274. rmdir ../libruby/ext/tk/lib
  275. rmdir ../libruby/ext/tk
  276. cd ..
  277. # for ruby-docs.rpm
  278. cd ruby-docs
  279. mkdir refm-ja
  280. (cd ../../%{name}-refm-ja && tar cf - .) | (cd refm-ja && tar xvf -)
  281. cd ..
  282. # fixing `#!' paths
  283. for f in `find . -type f`
  284. do
  285. sed -e 's,^#![ ]*\([^ ]*\)/\(ruby\|with\|perl\|env\),#!/usr/bin/\2,' < $f > $f.n
  286. if ! cmp $f $f.n
  287. then
  288. mv -f $f.n $f
  289. else
  290. rm -f $f.n
  291. fi
  292. done
  293. # done
  294. cd ..
  295. #
  296. # installing files ...
  297. #
  298. cd %{name}-%{rubysrcdir}
  299. make DESTDIR=${RPM_BUILD_ROOT} install install-doc
  300. make test
  301. cd ..
  302. # installing irb.1
  303. install %{SOURCE5} $RPM_BUILD_ROOT%{_mandir}/man1/
  304. # installing ruby-mode
  305. %if %{emacsen_pkg}
  306. cd %{name}-%{rubysrcdir}
  307. cp misc/*.el %{SOURCE8} $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/%{rbmode}
  308. cd ..
  309. %{?emacsen_pkg: %_installemacsenscript %{rbmode} %{SOURCE6}}
  310. %{?emacsen_pkg: %_removeemacsenscript %{rbmode} %{SOURCE7}}
  311. %endif
  312. # listing all files in ruby.files
  313. (find $RPM_BUILD_ROOT%{_bindir} \
  314. $RPM_BUILD_ROOT%{_datadir} \
  315. $RPM_BUILD_ROOT%{_libdir} \
  316. %ifarch x86_64 ppc64
  317. $RPM_BUILD_ROOT%{_prefix}/lib \
  318. %endif
  319. $RPM_BUILD_ROOT%{_mandir} \
  320. -type f -o -type l) |
  321. sort | uniq | sed -e "s,^$RPM_BUILD_ROOT,," \
  322. -e "s,\(/man/man./.*\)$,\1*," > ruby.files
  323. egrep '(\.[ah]|libruby\.so)$' ruby.files > ruby-devel.files
  324. sort ruby.files ruby-devel.files | uniq -u > tmp.files
  325. mv -f tmp.files ruby.files
  326. # for ruby-openssl.rpm
  327. cp /dev/null ruby-openssl.files
  328. for f in `cd %{name}-%{rubysrcdir}/ext/openssl && find lib -type f -name '*.rb'`
  329. do
  330. grep "`echo $f | sed -e 's,^lib/,/%{rubyxver}/,'`$" ruby.files >> ruby-openssl.files
  331. done
  332. fgrep %{rb_arch}/openssl.so ruby.files >> ruby-openssl.files
  333. fgrep %{rb_lib}/net/https.rb ruby.files >> ruby-openssl.files
  334. fgrep %{rb_lib}/drb/ssl.rb ruby.files >> ruby-openssl.files
  335. fgrep %{rb_lib}/webrick/ssl.rb ruby.files >> ruby-openssl.files
  336. sort ruby.files ruby-openssl.files | uniq -u > tmp.files
  337. mv -f tmp.files ruby.files
  338. # for ruby-tcltk.rpm
  339. cp /dev/null ruby-tcltk.files
  340. for f in `cd %{name}-%{rubysrcdir}/ext/tk && find lib -type f -name '*.rb'`
  341. do
  342. grep "`echo $f | sed -e 's,^lib/,/%{rubyxver}/,'`$" ruby.files >> ruby-tcltk.files
  343. done
  344. fgrep tkextlib/SUPPORT_STATUS ruby.files >> ruby-tcltk.files
  345. fgrep %{rb_arch}/tcltklib.so ruby.files >> ruby-tcltk.files
  346. fgrep %{rb_arch}/tkutil.so ruby.files >> ruby-tcltk.files
  347. sort ruby.files ruby-tcltk.files | uniq -u > tmp.files
  348. mv -f tmp.files ruby.files
  349. # for rdoc.rpm
  350. cp /dev/null rdoc.files
  351. fgrep 'rdoc' ruby.files >> rdoc.files
  352. fgrep %{_bindir}/ri ruby.files >> rdoc.files
  353. ridatadir=`%{name}-%{rubysrcdir}/miniruby \
  354. -I %{name}-%{rubysrcdir} -I %{name}-%{rubysrcdir}/lib \
  355. -r rdoc/ri/ri_paths.rb \
  356. -e 'puts RI::Paths::SYSDIR'`
  357. fgrep "${ridatadir}" ruby.files >> rdoc.files
  358. sort ruby.files rdoc.files | uniq -u > tmp.files
  359. mv -f tmp.files ruby.files
  360. # for irb.rpm
  361. cp /dev/null irb.files
  362. fgrep 'irb' ruby.files >> irb.files
  363. sort ruby.files irb.files | uniq -u > tmp.files
  364. mv -f tmp.files ruby.files
  365. # for libruby
  366. cp /dev/null libruby.files
  367. fgrep '%{_prefix}/lib' ruby.files | fgrep -v 'emacsen-common' | \
  368. sort | uniq -u >> libruby.files
  369. sort ruby.files libruby.files | uniq -u > tmp.files
  370. mv -f tmp.files ruby.files
  371. # for ruby-mode-el
  372. cp /dev/null %{rbmode_el}.files
  373. %if %{emacsen_pkg}
  374. fgrep '.el' ruby.files >> %{rbmode_el}.files
  375. fgrep 'emacsen-common' ruby.files >> %{rbmode_el}.files
  376. sort ruby.files %{rbmode_el}.files | uniq -u > tmp.files
  377. mv -f tmp.files ruby.files
  378. %endif
  379. strip ${RPM_BUILD_ROOT}%{_bindir}/%{name}
  380. %clean
  381. rm -rf ${RPM_BUILD_ROOT}
  382. rm -f *.files
  383. rm -rf tmp-ruby-docs
  384. %post -n libruby
  385. /sbin/ldconfig
  386. if [ -w %{rb_prefix}/%{rb_locallib} -a ! -e %{rb_sitedir} ]; then
  387. mkdir -p %{rb_sitedir} %{rb_sitearch}
  388. chown root:root %{rb_sitedir} %{rb_sitearch}
  389. chmod 775 %{rb_sitedir} %{rb_sitearch}
  390. fi
  391. %preun -n libruby
  392. if [ "$1" = 0 ]; then
  393. if [ -w %{rb_sitedir} -a -e %{rb_sitearch} ]; then
  394. rmdir %{rb_sitearch} 2>/dev/null || true
  395. fi
  396. if [ -w %{rb_prefix}/%{rb_locallib} -a -e %{rb_sitedir} ]; then
  397. rmdir %{rb_sitedir} 2>/dev/null || true
  398. fi
  399. fi
  400. %postun -n libruby
  401. /sbin/ldconfig
  402. %if %{emacsen_pkg}
  403. %post -n %{rbmode_el}
  404. if [ "$1" = 2 ]; then
  405. %{?emacsen_pkg: %_emacsenPackageRemove %{rbmode}}
  406. fi
  407. %{?emacsen_pkg: %_addemacsenlist %{rbmode}}
  408. %{?emacsen_pkg: %_emacsenPackageInstall %{rbmode}}
  409. %preun -n %{rbmode_el}
  410. if [ "$1" = 0 ]; then
  411. %{?emacsen_pkg: %_emacsenPackageRemove %{rbmode}}
  412. %{?emacsen_pkg: %_removeemacsenlist %{rbmode}}
  413. fi
  414. %endif
  415. %files -f ruby.files -n ruby
  416. %defattr(-, root, root)
  417. %doc %{name}-%{rubysrcdir}/README
  418. %lang(ja) %doc %{name}-%{rubysrcdir}/README.ja
  419. %doc %{name}-%{rubysrcdir}/COPYING
  420. %lang(ja) %doc %{name}-%{rubysrcdir}/COPYING.ja
  421. %doc %{name}-%{rubysrcdir}/ChangeLog
  422. %doc %{name}-%{rubysrcdir}/LEGAL
  423. %doc %{name}-%{rubysrcdir}/ToDo
  424. %doc %{name}-%{rubysrcdir}/doc/ChangeLog-1.8.0
  425. %doc %{name}-%{rubysrcdir}/doc/NEWS-1.8.0
  426. %doc tmp-ruby-docs/ruby/*
  427. %files -f ruby-devel.files -n ruby-devel
  428. %defattr(-, root, root)
  429. %doc %{name}-%{rubysrcdir}/README.EXT
  430. %lang(ja) %doc %{name}-%{rubysrcdir}/README.EXT.ja
  431. %files -f libruby.files -n libruby
  432. %defattr(-, root, root)
  433. %doc %{name}-%{rubysrcdir}/README
  434. %lang(ja) %doc %{name}-%{rubysrcdir}/README.ja
  435. %doc %{name}-%{rubysrcdir}/COPYING
  436. %lang(ja) %doc %{name}-%{rubysrcdir}/COPYING.ja
  437. %doc %{name}-%{rubysrcdir}/ChangeLog
  438. %doc %{name}-%{rubysrcdir}/LEGAL
  439. %doc tmp-ruby-docs/libruby/*
  440. %files -f ruby-openssl.files -n ruby-openssl
  441. %defattr(-, root, root)
  442. %doc tmp-ruby-docs/ruby-openssl/*
  443. %files -f ruby-tcltk.files -n ruby-tcltk
  444. %defattr(-, root, root)
  445. %doc tmp-ruby-docs/ruby-tcltk/*
  446. %doc %{name}-%{rubysrcdir}/ext/tk/lib/tkextlib/SUPPORT_STATUS
  447. %files -f rdoc.files -n rdoc
  448. %defattr(-, root, root)
  449. %doc %{name}-%{rubysrcdir}/lib/rdoc/README
  450. %files -f irb.files -n irb
  451. %defattr(-, root, root)
  452. %doc tmp-ruby-docs/irb/*
  453. %files -n ruby-docs
  454. %defattr(-, root, root)
  455. %doc tmp-ruby-docs/ruby-docs/*
  456. %if %{emacsen_pkg}
  457. %files -f %{rbmode_el}.files -n %{rbmode_el}
  458. %defattr(-, root, root)
  459. %doc %{name}-%{rubysrcdir}/misc/README
  460. %endif
  461. %changelog
  462. * Tue Jan 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.330-1
  463. - update to 1.8.7-p330
  464. - change License tag (Ruby or GPLv2)
  465. * Tue Feb 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.249-1
  466. - update to 1.8.7-p249
  467. - rebuild with db4-4.8.0
  468. - drop unneccesary patches: 809, 1001, 1002, 1003, 1004
  469. * Tue Sep 08 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.174-3
  470. - move noarch ruby libraries to /usr/lib/ruby.
  471. - add Patch960
  472. - add --with-ruby-prefix=%%{_prefix}/lib
  473. - add deprecated search path for 64bit arch.
  474. - --with-search-path=%%{_libdir}/ruby/%%{rubyxver}
  475. * Wed Aug 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.174-2
  476. - import Patch100[12345] from debian package
  477. * Added debian/patches/090811_thread_and_select.dpatch:
  478. threads may hangup when IO.select called from two or more threads.
  479. * Added debian/patches/090812_finalizer_at_exit.dpatch:
  480. finalizers should be run at exit (Closes: #534241)
  481. * Added debian/patches/090812_class_clone_segv.dpatch:
  482. avoid segv when an object cloned. (Closes: #533329)
  483. * Added debian/patches/090812_eval_long_exp_segv.dpatch:
  484. fix segv when eval a long expression. (Closes: #510561)
  485. * Added debian/patches/090812_openssl_x509_warning.dpatch:
  486. suppress warning from OpenSSL::X509::ExtensionFactory. (Closes: #489443)
  487. * Tue Jun 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.174-1
  488. - new upstream release 1.8.7-p174
  489. - fix CVE-2009-1904
  490. http://www.ruby-lang.org/en/news/2009/06/09/dos-vulnerability-in-bigdecimal/
  491. * Mon Jun 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.160-1
  492. - new upstream version 1.8.7-p160.
  493. - drop unneccesary patches: Patch807, Patch1010
  494. * Mon Sep 22 2008 NAKAMURA Kenta <kenta@vinelinux.org> 1.8.7.72-2
  495. - updated Patch950: ruby-1.8.7-p72-multilib.patch
  496. * Thu Sep 11 2008 akira yamada <akira@vinelinux.org> 1.8.7.72-1
  497. - new upstream version 1.8.7-p72.
  498. - droped unnecessary patches: Patch802.
  499. * Thu Sep 11 2008 akira yamada <akira@vinelinux.org> 1.8.6.287-1
  500. - new upstream version 1.8.6-p287.
  501. - droped unnecessary patches: Patch805, Patch1000.
  502. - updated Patch808 for 1.8.6-p287.
  503. - added Patch809: rcov may crash because of backwards incompatibility.
  504. (backported r14826:15141 of trunk).
  505. - added Patch1010 to fix CVE-2008-3790.
  506. * Sat Sep 6 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.6.111-1
  507. - applied new versioning policy
  508. - spec in UTF-8
  509. - removed BuildRequires: XOrg-devel
  510. * Wed Oct 24 2007 akira yamada <akira@vinelinux.org> 1.8.6.111-0vl2
  511. - added ruby-1.8.6.111-rexml-document-transitive.patch:
  512. - fixed: Document#write undefined local variable or method `transitive'.
  513. * Tue Oct 23 2007 akira yamada <akira@vinelinux.org> 1.8.6.111-0vl1
  514. - new upstream version 1.8.6.111.
  515. - added ruby-1.8.6.111-CVE-2007-5162.patch:
  516. - security fixes for CVE-2007-5162. It is backported r13657 from ruby_1_8
  517. branch.
  518. - added ruby-1.8.6.111-ruby-bugs-11507.patch:
  519. - ConditionVariable#wait may raise "not owner" exceptions.
  520. - added ruby-1.8.6.111-sync_try_lock_always_fail.patch:
  521. - Sync#try_lock always fails due to wrong variable name.
  522. * Thu May 17 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.6-0vl4
  523. - rebuild with new openssl
  524. * Thu May 10 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.6-0vl3
  525. - rebuilt with new toolchain and db4-4.3.x
  526. * Sun Mar 25 2007 NAKAMURA Kenta <kenta@vinelinux.org> 1.8.6-0vl2
  527. - modified emacsen-common path
  528. * Mon Mar 19 2007 akira yamada <akira@vinelinux.org> 1.8.6-0vl1
  529. - new upstream version 1.8.6.
  530. * Mon Dec 04 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.5-0vl1.1
  531. - add pacth1000 for fix cgi.rb issue (JVN#84798830)
  532. * Wed Nov 1 2006 akira yamada <akira@ruby-lang.org> 1.8.5-0vl1
  533. - new upstream version 1.8.5.
  534. - added ruby-1.8.5-rexml_encoding.patch:
  535. - REXML should accept UTF-16. [ruby-list:42737]
  536. - added ruby-1.8.5-rdoc.patch:
  537. - Don't unescape HTML in HtmlFormatter. Submitted by Kent Sibilev <ksruby
  538. at gmail.com>. [ruby-core:08392].
  539. - lib/rdoc/generators/ri_generator.rb: do not chdir twice.
  540. - added ruby-1.8.5-hash_memory_reak.patch:
  541. - hash.c (rb_hash_s_create): fixed memory leak, based on the patch by Kent
  542. Sibilev <ksruby at gmail.com>. fixed: [ruby-talk:211233]
  543. - added ruby-1.8.5-top_cref.patch:
  544. - eval.c (ruby_init): rename top_cref to ruby_top_cref and export, along
  545. with ruby_cref, for use by the sandbox. [ruby-core:08762]
  546. - added ruby-1.8.5-tcltk.patch:
  547. - ext/tk/lib/tkextlib/blt.rb: double dashes (--) option doesn't work
  548. properly on some versions of BLT (wrong description on the manual of
  549. `blt::bgexec'?).
  550. - ext/tk/lib/tk/font.rb: TkFont#current_configinfo() doesn't work on
  551. Tcl/Tk8.x.
  552. - ext/tk/lib/tk.rb: update RELEASE_DATE.
  553. - added ruby-1.8.5-acl.patch:
  554. - patterns which include '*' should not cause getaddress() call.
  555. [ruby-dev:29406]
  556. - added ruby-1.8.5-socket.patch:
  557. - ext/socket/extconf.rb: check arpa/inet.h for ntohs.
  558. - ext/socket/socket.c: include arpa/inet.h if available.
  559. - ext/socket/socket.c (ruby_connect): sockerrlen should be socklen_t.
  560. - added ruby-1.8.5-exec_vs_nullbyte.patch:
  561. - io.c (pipe_open): null character should be saved for command name.
  562. [ruby-dev:29421]
  563. - process.c (proc_spawn): ditto.
  564. - process.c (proc_spawn_n): ditto.
  565. - process.c (rb_f_system): ditto.
  566. - added ruby-1.8.5-mimedec.patch:
  567. - CGI#out should not decode base64 strings. [ruby-dev:29284]
  568. - Kconv::toeuc should decode base64 strings. (reverted to old behaviour for
  569. compatibility.) [ruby-dev:29505]
  570. - corrected regexp for EUC-JP (Kconv::RegexpEucjp). [ruby-dev:29344]
  571. - added ruby-1.8.5-strftime_nullbyte.patch:
  572. - Time#strftime should save null character. [ruby-dev:29422]
  573. - added ruby-1.8.5-dbm_extconf.patch:
  574. - ext/dbm/extconf.rb: create makefile according to the result of check for
  575. dbm header. fixed: [ruby-dev:29445]
  576. - ext/dbm/extconf.rb: allow multiple candidates for dbm-type.
  577. - added ruby-1.8.5-check_sticky_bit.patch:
  578. - file.c (path_check_0): check if sticky bit is set on parent directories
  579. for executable path. fixed: [ruby-dev:29415]
  580. - Fix documentation submitted by Rick Ohnemus. ruby-Bugs-5529.
  581. [ruby-core:08725]
  582. - added ruby-1.8.5-float_hash.patch:
  583. - improve hash collision of Float objects. [ruby-dev:29352]
  584. - added ruby-1.8.5-time_vardecl.patch:
  585. - time.c (time_to_s): variable declaration after an execution statement.
  586. - added ruby-1.8.5-bignum.patch:
  587. - numeric.c (fix_plus): addition in Fixnum will never overflow long. a
  588. patch from Ondrej Bilka <neleai at seznam.cz>. [ruby-core:08794]
  589. - numeric.c (fix_minus): ditto.
  590. - bignum.c (rb_big_pow): eagerly truncate resulting bignum.
  591. [ruby-core:08794]
  592. - added ruby-1.8.5-migration_macro.patch:
  593. - ruby.h (RSTRING_PTR): add migration macro.
  594. - ruby.h (RARRAY_PTR): ditto.
  595. - added ruby-1.8.5-webrick_cookie.patch:
  596. - lib/webrick/cookie.rb (WEBrick::Cookie.parse_set_cookies): new method to
  597. parse multiple cookies per Set-Cookie header. Thanks to Aaron Patterson
  598. <aaron_patterson at speakeasy.net>. [ruby-core:08802]
  599. - added ruby-1.8.5-suppress_warnings.patch:
  600. - mkconfig.rb, ext/extmk.rb, lib/mkmf.rb: suppress warnings with $VERBOSE.
  601. - ext/extmk.rb: Proc#call does not pass the block in 1.8.
  602. - Makefile.in, win32/Makefile.sub (MINIRUBY): append MINIRUBYOPT.
  603. - added ruby-1.8.5-pstore_binmode.patch:
  604. - lib/pstore.rb: open all in binary mode, and get rid of the quirk of
  605. msvcrt. fixed: [ruby-dev:29518]
  606. - added ruby-1.8.5-testunit_rescue.patch:
  607. - Rescue Exception in Test::Unit::TestCase#run. [ruby-core:08783]
  608. - added ruby-1.8.5-prevent_loading_twice.patch:
  609. - eval.c (rb_require_safe): prevent loading twice from extensions. fixed:
  610. [ruby-dev:29523]
  611. - added ruby-1.8.5-prohibit_intern_tainted_string.patch:
  612. - string.c (rb_str_intern): prohibit interning tainted string.
  613. - added ruby-1.8.5-ruby_mode.patch:
  614. - misc/ruby-mode.el (ruby-parse-partial): better here-doc support. a patch
  615. from Marshall T. Vandegrift <llasram at gmail.com>. [ruby-core:08804]
  616. - added ruby-1.8.5-readme_ext.patch:
  617. - README.EXT: English adjustment. [ruby-core:08851] [ruby-core:08852]
  618. [ruby-core:08855]
  619. - added ruby-1.8.5-check_safe_level_for_str_intern.patch:
  620. - string.c (rb_str_intern): raise SecurityError only when $SAFE level is
  621. greater than zero. [ruby-core:08862]
  622. - parse.y (rb_interned_p): new function to check if a string is already
  623. interned.
  624. - object.c (str_to_id): use rb_str_intern().
  625. - added ruby-1.8.5-pty.patch:
  626. - ext/pty/pty.c (establishShell): parent pid is not used.
  627. - ext/pty/pty.c (freeDevice): not used.
  628. - ext/pty/pty.c (get_device_once): removed garbage right brace.
  629. - ext/pty/pty.c (establishShell): remove remaining unused line.
  630. - added ruby-1.8.5-imap_extraspace.patch:
  631. - net/imap can accept extra space in server responses. The patch from Tom
  632. Soderlund.
  633. - added ruby-1.8.5-rdoc_nameerror.patch:
  634. - rdoc/ri/ri_options.rb should require 'rdoc/ri/ri_paths'.
  635. - added ruby-1.8.5-gdbm_docs.patch and updated ruby-1.8.5-.document.patch:
  636. - added GDBM documents.
  637. - added ruby-1.8.5-etc_uid_t.patch:
  638. - etc.c should use uid_t instead of int. [ruby-core:08897]
  639. - added ruby-1.8.5-cgi_empty_content.patch:
  640. - invalid multipart data can make cgi.rb infinite loop and CPU consumption.
  641. (CVE-2006-5467)
  642. - added ruby-1.8.5-sandbox.patch:
  643. - added Thread#kill!. [ruby-core:08768]
  644. - added ruby-1.8.5-update_docs.patch:
  645. - small fixes and updates for rdocs.
  646. - added ruby-1.8.5-array.patch:
  647. - fixed a potential leaks caused by shift. [ruby-talk:216055]
  648. [ruby-core:08922] [ruby-list:42907]
  649. - added ruby-1.8.5-dir_checkdir.patch:
  650. - internal existence test for "/" fails anytime. [ruby-core:08913]
  651. - added ruby-1.8.5-mkmf.patch:
  652. - set default $LDFLAGS. [ruby-talk:216256]
  653. - check function pointer first and macro next. [ruby-core:08949]
  654. - fixed the bug of handling COMMON_MACROS.
  655. - added ruby-1.8.5-jcode.patch:
  656. - succ! in jcode.rb doesn't work on $KCODE == 'n'. [ruby-talk:216845]
  657. - added ruby-1.8.5-eval.patch:
  658. - check protected visibility based on real self, not ruby_frame->self.
  659. [ruby-talk:217822]
  660. - added ruby-1.8.5-include_module.patch:
  661. - remove unnecessary check. [ruby-talk:218402]
  662. - added ruby-1.8.5-bignum_shift.patch:
  663. - a bug in right shift of negative bignums. [ruby-core:09020]
  664. - added ruby-1.8.5-rexml_enc.patch:
  665. - spaces are allowed around equal sign. [ruby-core:09032]
  666. - added ruby-1.8.5-wrong_id_check.patch:
  667. - wrong id check. [ruby-core:09158]
  668. - typo fixed. [ruby-core:09168]
  669. - added ruby-1.8.5-rb_warning.patch:
  670. - some error message may contain format specifiers. [ruby-dev:29657]
  671. - added ruby-1.8.5-parse.y.patch.patch:
  672. - no need to re-create NODE_SELF() again. [ruby-core:09177]
  673. - use particular enums. [ruby-core:09221]
  674. - added ruby-1.8.5-signal.patch:
  675. - handle SIGTERM. [ruby-list:42895]
  676. - don't set SA_RESTART. a backport from the HEAD. [ruby-talk:220937]
  677. [ruby-talk:147220]
  678. - added ruby-1.8.5-string_tainted.patch:
  679. - should be infected with only original string, but not the shared string.
  680. [ruby-core:09152]
  681. - strnig.c (rb_str_new4): keep shared string untainted when orignal string
  682. is tainted. [ruby-dev:29672]
  683. - added ruby-1.8.5-configure_alloca.patch:
  684. - alloca is broken; use C_ALLOCA instead. [ruby-dev:29416]
  685. - added ruby-1.8.5-openssl.patch:
  686. - ossl_pkcs7_verify, ossl_spki_initialize: should clear error.
  687. - Use digest/md5 instead of obsolete md5.
  688. - added ruby-1.8.5-imap_nomodseq.patch:
  689. - net/imap chokes on NOMODSEQ response. [ruby-Bugs#6026]
  690. - added ruby-1.8.5-soap.patch:
  691. - huge memory usage with the Ebay API.
  692. <http://dev.ctor.org/soap4r/ticket/224>
  693. - applied debian/patches/149_bignum_to_s.patch
  694. - should preserve leading zero information for negative %b and %x.
  695. [ruby-talk:221347]
  696. - applied debian/patches/150_time_dup.patch
  697. - duplicate the class of original time. [ruby-core:09357]
  698. - applied debian/patches/151_super.patch
  699. - fixed bug of zsuper with both of opt and rest. [ruby-list:42928]
  700. - applied debian/patches/152_dir_glob.patch
  701. - get rid of possible memory leak.
  702. * Tue Sep 12 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.4-0vl5
  703. - changed ruby-mode Group to Appliations/Editors/Emacs <BTS:VineLinux:163>
  704. - changed ruby-doc Group to Appliations/Documentation <BTS:VineLinux:163>
  705. - changed libruby Group to System Environment/Libraries
  706. - rebuilt with openssl-0.9.7k
  707. * Sat Jul 29 2006 NAKAMURA Kenta <kenta@vinelinux.org> 1.8.4-0vl4
  708. - x86_64 architecture support
  709. - added ruby-1.8.4-multilib.patch
  710. - added ruby-1.8.4-tcltk-multilib.patch
  711. - modified emacsen-common path
  712. * Fri Jul 14 2006 akira yamada <akira@vinelinux.org> 1.8.4-0vl3
  713. - added ruby-1.8.4-135.patch:
  714. - should check if chars are multibyte for regexp-i option.
  715. [ruby-dev:28598] [ruby-list:42096]
  716. - added ruby-1.8.4-136.patch:
  717. - jcode.rb breaks String#tr_s. [ruby-list:42090]
  718. - added ruby-1.8.4-137.patch:
  719. - Array#pack supports CRLF newlines. [ruby-dev:28601]
  720. - added ruby-1.8.4-138.patch:
  721. - should initialize variables first. [ruby-core:07785] [ruby-core:07810]
  722. - avoid accessing uninitialized array element. [ruby-core:07809]
  723. - added ruby-1.8.4-139.patch:
  724. - Numeric#div should use floor rather than Interger. [ruby-dev:28589]
  725. - the first element of Float#divmod should be an integer.
  726. [ruby-dev:28589]
  727. - added ruby-1.8.4-140.patch:
  728. - avoids memory leak of YAML. [ruby-core:7808]
  729. - added ruby-1.8.4-141.patch:
  730. - fixes out of bounds array access. [ruby-core:07823]
  731. - added ruby-1.8.4-142.patch:
  732. - use AF_INET6 for nameservers containing colons.
  733. - added ruby-1.8.4-143.patch:
  734. - should not modify untainted objects in safe levels higher than 3.
  735. - should not allow modifying literal regexps.
  736. - added ruby-1.8.4-144.patch:
  737. - should not close untainted dir stream in $SAVE >= 4.
  738. - should not call a vararg function rb_sys_warning() indirectly.
  739. [ruby-core:07886]
  740. - added ruby-1.8.4-145.patch:
  741. - should round for usec floating number. [ruby-core:07896]
  742. - added ruby-1.8.4-146.patch:
  743. - constant in Fixnum access with instance_eval dumps core.
  744. [ruby-dev:28327]
  745. - inspect for overriden method. [ruby-dev:28636]
  746. - set_trace_func dumps core. [ruby-dev:28632]
  747. - set_trace_func: binding has wrong self value for return events.
  748. [ruby-core:07928]
  749. - added ruby-1.8.4-147.patch:
  750. - fixed typo of openssl/ssl.rb.
  751. - added ruby-1.8.4-148.patch:
  752. - fixed memory leak and alignment bug of the dl library. [ruby-dev:28665]
  753. - added ruby-1.8.4-149.patch:
  754. - new method: IO#read_nonblock, IO#write_nonblock,
  755. Socket#connect_nonblock, Socket#accept_nonblock and
  756. Socket#recvfrom_nonblock. [ruby-core:7917]
  757. - use rb_read_pending instead of rb_io_read_pending. [ruby-dev:28663]
  758. - new method: IPSocket#recvfrom_nonblock, TCPServer#accept_nonblock,
  759. UNIXServer#accept_nonblock.
  760. - reject non-AF_UNIX sockaddr. [ruby-dev:28691]
  761. - added ruby-1.8.4-mkconfig.rb.patch:
  762. - mkconfig.rb should remove "|#_!!_#|" and unquote commas generated by
  763. autoconf > 2.59 (CVS).
  764. * Wed May 10 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.4-0vl2
  765. - dirty fix to rb_arch macro for ppc
  766. (_target_cpu should be powerpc, but rpm macro will translate to ppc anyhow)
  767. this fix will be removed after rpm-4.4 macro issue is cleared up.
  768. * Sun Apr 23 2006 akira yamada <akira@vinelinux.org> 1.8.4-0vl1
  769. - new upstream version 1.8.4.
  770. - updated ruby-refm-rdp.
  771. - applied following bug-fix-patches.
  772. - added ruby-1.8.4-100.patch:
  773. - fixed a bug in constant reference during instance_eval for some type of
  774. objects. [yarv-dev:707]
  775. - added ruby-1.8.4-101.patch:
  776. - allow dynamic symbols (:"...") to undef and alias. [ruby-dev:28105]
  777. - added ruby-1.8.4-102.patch:
  778. - (openssl) treat wildcard character in commonName. [ruby-dev:28121]
  779. - (openssl) should use "rb_str_new(0, 0)" to make empty string.
  780. - added ruby-1.8.4-103.patch:
  781. - callcc or thread may leak memory [ruby-Bugs:1364] [ruby-dev:28154]
  782. [ruby-dev:28172]
  783. - mark objects refered from aborting threads. [ruby-dev:28190]
  784. - added ruby-1.8.4-104.patch:
  785. - avoid a GC problem with RUBY_ALWAYS_GC= ./ruby -e ''.
  786. - declare rb_gc_abort_threads.
  787. - added ruby-1.8.4-105.patch:
  788. - should not recycle scope object used in a thread. [ruby-dev:28177]
  789. - added ruby-1.8.4-106.patch (urgency medium):
  790. - get rid of segfault on syntax error. [ruby-core:07070]
  791. - added ruby-1.8.4-107.patch:
  792. - fixed typo in webrick/httpservlet/filehandler.rb: fixed typo.
  793. [ruby-core:7075]
  794. - added ruby-1.8.4-108.patch (urgency medium):
  795. - YAML loading of quoted Symbols broken. [ruby-Bugs:2535]
  796. - YAML could not load Bignum in ruby 1.8.3/1.8.4. [ruby-core:6115]
  797. - YAML could not dump Subclass of Numeric properly. [ruby-core:7047]
  798. - should be able to load "!ruby/object:Bignum" syntax 1.8.3 dumped.
  799. [ruby-core:6159]
  800. - workaround for SEGV. ex: YAML.load("!map:B {}"). [ruby-core:7217]
  801. - fixed a typo in yaml.rb. [ruby-talk:165285] [ruby-core:6995]
  802. - YAML should output complex key mark even if map's key is empty seq/map.
  803. [ruby-core:7129]
  804. - added ruby-1.8.4-109.patch:
  805. - fixed possibility of memmory corruption.
  806. - added ruby-1.8.4-111.patch:
  807. - don't clobber %l7 of SPARC if enable-shared.
  808. - workaround for FreeBSD/i386 getcontext/setcontext bug. [ruby-dev:28263]
  809. - added ruby-1.8.4-112.patch:
  810. - FileUtils#mv should remove file after copying. [ruby-dev:28223]
  811. - added ruby-1.8.4-113.patch:
  812. - avoids compile error (use system routine if provided).
  813. [ruby-core:07195]
  814. - added ruby-1.8.4-114.patch:
  815. - need not to protect $SAFE value. [ruby-core:07177]
  816. - added ruby-1.8.4-115.patch:
  817. - (2**32).to_s(2) fails with exception where sizeof(int) == 4 <
  818. sizeof(long). [ruby-core:7300] [ruby-Bugs:3438]
  819. - added ruby-1.8.4-116.patch:
  820. - PStore#fetch should return default value if name is not found.
  821. [ruby-core:7304]
  822. - added ruby-1.8.4-117.patch:
  823. - defined RSTRUCT_LEN and RSTRUCT_PTR for source level compatibility with
  824. ruby 1.9.
  825. - alias RbConfig for Config for compatibility with ruby 1.9.
  826. - added ruby-1.8.4-118.patch:
  827. - should not access ruby objects in finalizer of Zlib. [ruby-dev:28286]
  828. - added ruby-1.8.4-119.patch:
  829. - no need to push ruby_class. [ruby-dev:28176] [ruby-dev:28580]
  830. - check if ruby_cbase is nil (during instance_eval for objects cannot have
  831. singleton classes, e.g. fixnums and symbols). [ruby-dev:28178]
  832. [ruby-dev:28580] [ruby-dev:28582]
  833. - argument update propagation. [ruby-dev:28044]
  834. - avoid unnecessary extra argument. [ruby-core:07366] [ruby-dev:28583]
  835. [ruby-dev:28583]
  836. - added ruby-1.8.4-120.patch:
  837. - support non 32bit time_t environments.
  838. - added ruby-1.8.4-121.patch:
  839. - zsuper (with define_method) dumps core. [ruby-dev:28181]
  840. - added ruby-1.8.4-122.patch:
  841. - should no singleton classes for true, false, and nil. [ruby-dev:28186]
  842. - added ruby-1.8.4-124.patch:
  843. - sleep should always sleep for specified amount of time.
  844. [ruby-talk:180067]
  845. - added ruby-1.8.4-125.patch:
  846. - unpack("l") did not work where sizeof(long) != 4. [ruby-talk:180024]
  847. - fixed integer overflow on template "w" of pack. [ruby-talk:180126]
  848. - added ruby-1.8.4-126.patch:
  849. - removed unnecessary MY_FILE_NAME constant. [ruby-core:07376]
  850. - added ruby-1.8.4-127.patch:
  851. - odd break behavior. [ruby-talk:180420]
  852. - added ruby-1.8.4-128.patch:
  853. - unexpected syntax error. [ruby-talk:180648]
  854. - added ruby-1.8.4-129.patch:
  855. - fixed that irb can't parse /\^/. [ruby-dev:28404] [ruby-Bugs:3302]
  856. - rdoc could not handle /\^/. [ruby-talk:181631] [ruby-dev:28404]
  857. - added ruby-1.8.4-130.patch:
  858. - symbols overlap ordinary objects. [ruby-core:07414]
  859. - heap_slots may overflow.
  860. - align VALUE with sizeof(RVALUE) globally. [ruby-talk:178364]
  861. [ruby-core:7305]
  862. - added ruby-1.8.4-131.patch:
  863. - should not re-schedule output from KILLED thread.
  864. - added ruby-1.8.4-133.patch:
  865. - reports aliased method names in a generated backtrace. [ruby-dev:28471]
  866. - insecure calling should be checked for non NODE_SCOPE method invocations
  867. too.
  868. - should preserve the current safe level as well as method definition.
  869. - added ruby-1.8.4-134.patch:
  870. - (bignum) second operand may be too big even if it's a Fixnum.
  871. [ruby-talk:187984]
  872. - libruby1.8-dbg: applied a patch from Matthew Palmer to provide detached
  873. symbols.
  874. * Wed Nov 9 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.1-0vl22
  875. - added BuildRequires: zlib-devel
  876. * Sat Jul 2 2005 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 1.8.1-0vl21
  877. - rebuild for VineSeed
  878. - rename BuildRequires: XFree86-devel to XOrg-devel
  879. * Thu Jun 23 2005 akira yamada <akira@vinelinux.org> 1.8.1-0vl20.1
  880. - added ruby-1.8.2pre2-xmlrpc-util.rb.patch:
  881. - fixed arbitrary command execution on XMLRPC server.
  882. (CAN-2005-1992) [ruby-core:5237]
  883. * Wed Nov 03 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl20
  884. - increased release number to avoid discrepancy against 3.0/errata package
  885. * Wed Nov 03 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl19
  886. - updated and enabled ruby-1.8.2pre2-cvs-update-104.patch.
  887. - added ruby-1.8.2pre2-io-open.patch:
  888. - (important) additional changes for "open dumps core again^2."
  889. [ruby-dev:24656]
  890. - added ruby-1.8.2pre2-array-uniq.patch:
  891. - Array#uniq should not freeze elements. [ruby-dev:24695]
  892. * Wed Nov 03 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl18
  893. - added ruby-1.8.2pre2-cvs-update-104.patch:
  894. - (important) Enumerable#grep dumps core. [ruby-dev:24671]
  895. - (important) open dumps core again^2. [ruby-dev:24656]
  896. - added ruby-1.8.2pre2-ostruct-revert.patch and removed
  897. ruby-1.8.2pre2-ostruct-marshal.patch:
  898. - reverted lib/ostruct.rb.
  899. * Sun Oct 31 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl17
  900. - added ruby-1.8.2pre2-cvs-updates-103.patch:
  901. - (important) temporarily frozen string causes core dump. [ruby-dev:24552]
  902. - removed ruby-1.8.2pre2-cgi.rb-macie.patch,
  903. ruby-1.8.2pre2-ostruct-marshal.patch,
  904. ruby-1.8.2pre2-zlib-flush_next_in.patch and
  905. ruby-1.8.2pre2-ruby_finalize_1-segv.patch: they ware included into the
  906. above patch.
  907. * Sat Oct 30 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl16
  908. - added ruby-1.8.2pre2-eval.c-memory-leak.patch:
  909. - (important) another memory leak in ruby_1_8. [ruby-core:03619]
  910. - added ruby-1.8.2pre2-io-path.patch:
  911. - (important) IO#path may cause segv. [ruby-talk:118234]
  912. - added ruby-1.8.2pre2-enum-sort_by.patch:
  913. - (important) Enumerable#sort_by dumps core again^4. [ruby-dev:24642]
  914. * Thu Oct 29 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl15
  915. - added ruby-1.8.2pre2-cvs-updates-100.patch:
  916. - minor bug fix.
  917. - added ruby-1.8.2pre2-cvs-updates-101.patch:
  918. - (important) "IO.allocate.reopen('/nothing')" on irb causes SEGV.
  919. [ruby-core:03288]
  920. - YAML fails to load/dump non-printable characters. [ruby-core:03280]
  921. [ruby-core:03286]
  922. - Bug#265429: IO.select() mysteriously hangs [ruby-dev:24072]
  923. [ruby-dev:24075]
  924. - Pathological slowdown in 1.8 [ruby-core:02662]
  925. - added ruby-1.8.2pre2-cvs-updates-102.patch:
  926. - (important) fixed some segmentation fault bugs listed in
  927. - <URL:http://jp.rubyist.net/magazine/?0002-RubyCore>.
  928. - raise dumps core. [ruby-dev:24519]
  929. - unpack("p") dumps core. [ruby-dev:24594]
  930. - Enumerable#sort_by dumps core again. [ruby-dev:24386]
  931. - Enumerable#sort_by dumps core again(2). [ruby-dev:24399]
  932. - A class of return value of Array#*. [ruby-dev:24526]
  933. - Zlib::Deflate#deflate causes core dump. [ruby-dev:24530]
  934. - PStore#transaction may raise Errno::ENOENT. [ruby-dev:24561]
  935. - String#include? ?\x80. [ruby-dev:24558]
  936. - httpresponse.rb: ensure to close @body.
  937. - (important) fixed memory leak. [ruby-core:03549]
  938. - Zlib::GzipReader#ungetc does not work correctly.
  939. - (important) core dump with binding, eval, instance_eval and class
  940. variable. [ruby-dev:24120]
  941. - added ruby-1.8.2pre2-cgi.rb-macie.patch:
  942. - cgi.rb: workaround for Mac IE. [ruby-list:40136]
  943. - added ruby-1.8.2pre2-ostruct-marshal.patch:
  944. - ostruct.rb: OpenStruct can't be dumped. [ruby-dev:24625]
  945. - added ruby-1.8.2pre2-zlib-flush_next_in.patch:
  946. - (important) Zlib::Deflate#flush_next_in causes core dump.
  947. [ruby-dev:24621]
  948. - added ruby-1.8.2pre2-ruby_finalize_1-segv.patch:
  949. - (important) raising zlib dumps core again. [ruby-dev:24627]
  950. - removed ruby-1.8.2pre2-cgi-session-filename.patch and
  951. ruby-1.8.2pre2-cgi.rb-infinity-loop.patch: they ware included into the
  952. above patch.
  953. * Thu Oct 29 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl14
  954. - added ruby-1.8.2pre2-cgi-session-filename.patch:
  955. - (important) CGI::Session::FilesStore and CGI::Session::PStore should not
  956. use a session id as a filename.
  957. - added ruby-1.8.2pre2-cgi.rb-infinity-loop.patch:
  958. - (security) cgi.rb: avoids infinity loop.
  959. * Wed Oct 13 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl13
  960. - rebuilt with db4-4.2.25
  961. * Fri Jul 30 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl12
  962. - new upstream source, ruby-1.8.2-preview2.
  963. - removed patches which is included into upstream:
  964. ruby-1.8.2pr1-sleep.patch, ruby-1.8.2pr1-version.h.patch,
  965. ruby-1.8.2pr1-yaml-rubytypes.rb.patch, ruby-1.8.2pr1-ruby-mode.patch,
  966. ruby-1.8.2pr1-yaml-load-exception.patch,
  967. ruby-1.8.2pr1-config.guess-revert.patch, ruby-1.8.2pr1-callcc.patch,
  968. ruby-1.8.2pr1-net-imap.patch, ruby-1.8.2pr1-uri-ldap.patch,
  969. ruby-1.8.2pr1-use-NULL.patch, ruby-1.8.2pr1-cgi-session.patch and
  970. ruby-1.8.2pr1-run-final.patch.
  971. - renamed to ruby-1.8.2pre2-delegate.rb.patch from
  972. ruby-1.8.2pr1-delegate.rb.patch.
  973. * Wed Jul 28 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl11
  974. - enabled Patch811(ruby-1.8.2pr1-cgi-session.patch).
  975. - added a patch:
  976. - ruby-1.8.2pr1-run-final.patch: ObjectSpace.define_finalizer may cause
  977. Segmentation falult. [ruby-dev:23957]
  978. * Wed Jul 21 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl10
  979. - new upstream source, ruby-1.8.2-preview1.
  980. - removed patches which included into upstream:
  981. ruby-1.8.1-{100..108}-cvs-updates.patch,
  982. ruby-1.8.1-ia64-stack-limit-hack.patch,
  983. ruby-1.8.1-zlib_64bit_gzfile_get32.patch,
  984. ruby-1.8.1-rdoc-parse.rb.patch.
  985. - updated patches:
  986. - ruby-1.8.1-sleep.patch -> ruby-1.8.2pr1-sleep.patch
  987. - ruby-1.8.1-yaml-rubytypes.rb.patch -> ruby-1.8.2pr1-yaml-rubytypes.rb.patch
  988. - ruby-1.8.1-ruby-mode.patch -> ruby-1.8.2pr1-ruby-mode.patch
  989. - ruby-1.8.1-delegate.rb.patch -> ruby-1.8.2pr1-delegate.rb.patch
  990. - ruby-1.8.1-config.guess-revert.patch -> ruby-1.8.2pr1-config.guess-revert.patch
  991. - ruby-1.8.1-ri-pager.patch -> ruby-1.8-ri-pager.patch
  992. - added patches:
  993. - ruby-1.8.2pr1-version.h.patch: added some constans.
  994. - ruby-1.8.2pr1-yaml-load-exception.patch: YAML.load
  995. couldn't load Exception objects. [ruby-talk:104405]
  996. - ruby-1.8.2pr1-callcc.patch: callcc method may cause unknown data type
  997. bug. [ruby-talk:106657]
  998. - ruby-1.8.2pr1-net-imap.patch: wait command continuation requests before
  999. sending octet data of literals.
  1000. - ruby-1.8.2pr1-uri-ldap.patch: method hierarchical? in uri/ldap.rb should
  1001. be in URI::LDAP.
  1002. - ruby-1.8.2pr1-use-NULL.patch: use NULL instead of 0.
  1003. - ruby-1.8.2pr1-cgi-session.patch: sets the permission of the session data
  1004. file to 0600. [ruby-dev:23952]
  1005. * Wed Jun 23 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl9
  1006. - added ruby-1.8.1-rdoc-parse.rb.patch:
  1007. - [ruby-talk:104190] %r{...} is a regular expression but RDoc prints it
  1008. as %{...}.
  1009. - added ruby-1.8.1-config.guess-revert.patch:
  1010. - [ruby-dev:23753] revert to original config.guess
  1011. <URL:ftp://ftp.gnu.org/pub/gnu/config/config.guess>.
  1012. * Tue Jun 22 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl8
  1013. - added ruby-1.8.1-yaml-rubytypes.rb.patch:
  1014. - backported from CVS HEAD.
  1015. * Tue Jun 22 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl7
  1016. - added ruby-1.8.1-106-cvs-updates.patch:
  1017. - [ruby-dev:23550] Socket.new(Socket::AF_INET, Socket::SOCK_STREAM, 0)
  1018. dumps core.
  1019. - [ruby-core:02793] ruby -e 'a[*b]+=c' dups core.
  1020. - [ruby-dev:23487] core dump by delete_if on 1.8
  1021. - options for Net::Telnet::login can take regexps for login prompt
  1022. and/or password prompt.
  1023. - added ruby-1.8.1-107-cvs-updates.patch:
  1024. - upgraded to stable-snapshot (2004-06-05).
  1025. - added debian/patches/108_cvs_updates.patch:
  1026. - [ruby-dev:22631] should not dump singleton class.
  1027. - limit safe level.
  1028. - [ruby-dev:23713] allow changing $SAFE.
  1029. - added ruby-1.8.1-820_zlib_64bit_gzfile_get32.patch:
  1030. - the value in gzfile_get32 can accidentally be sign extended on 64 bit
  1031. systems. Thanks to Matthew Mueller. (see Debian Bug#255442)
  1032. - removed ruby-1.8.1-time.c.patch, ruby-1.8.1-find.rb.patch,
  1033. ruby-1.8.1-telnet.rb.patch, ruby-1.8.1-yaml.patch,
  1034. ruby-1.8.1-proc_eq.patch, ruby-1.8.1-misc-escape.patch and
  1035. ruby-1.8.1-parse.y-reverse.patch. they ware included into the above
  1036. patch.
  1037. - updated SOURCE2. [VineSeed:09109]
  1038. - removed unusable "Prefix:".
  1039. * Fri Feb 06 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl6
  1040. - configure with --with-bundled-{sha1,md5,rmd160}. it free libruby1.8 from
  1041. libssl.
  1042. - added ruby-1.8.1-105-cvs-updates.patch:
  1043. - "undef" for methods does not work. [ruby-list:39058]
  1044. - blocks in "#{}" makes syntax error. [ruby-list:39061]
  1045. - Net::IMAP accepts 8-bit characters in quoted strings for Novell
  1046. GroupWise Internet Agent.
  1047. - Socket#recvfrom makes an invalid argument error in non-blocking mode.
  1048. [ruby-talk:89962]
  1049. - util.c (mblen): fix overrun. (DJGPP ONLY) [ruby-dev:22672]
  1050. - delegate.rb should use Kernel::raise for Thread. [ruby-dev:22681]
  1051. [ruby-dev:22684]
  1052. - delegate.rb should not delegate singleton_method_added.
  1053. [ruby-dev:22685]
  1054. - added ruby-1.8.1-find.rb.patch:
  1055. - Find.find raises SecurityError in $SAFE>=1. [ruby-dev:22641]
  1056. - Find.find("xyz") will yield "xyz" even if no such file exists.
  1057. [ruby-core:02319]
  1058. - added ruby-1.8.1-telnet.rb.patch:
  1059. - net/telnet.rb accepts "Login" prompt.
  1060. - added ruby-1.8.1-yaml.patch:
  1061. - syck library does not dump tv_usec correctly. [ruby-core:02305]
  1062. - syck cannot dump a Range of strings. [ruby-core:02306]
  1063. - added ruby-1.8.1-ruby-mode.patch:
  1064. - font-lock could not treat %"..." correctry. [ruby-dev:22705]
  1065. - added ruby-1.8.1-proc_eq.patch:
  1066. - Proc with empty body may not be equal. [ruby-dev:22590]
  1067. [ruby-dev:22594][ruby-dev:22602]
  1068. - added ruby-1.8.1-misc-escape.patch:
  1069. - Here-document in lib/rexml/encodings/ISO-8859-1.rb requires quotation,
  1070. as in US-ASCII.rb. [ruby-talk:88650]
  1071. - avoid warnings in rdoc/parsers/parse_c.rb.
  1072. * Thu Jan 22 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl5
  1073. - changed the arguments when generating RI (in the %%install section)
  1074. against "ppc vs powerpc" issue (thanks Akira Yamada-san for helping)
  1075. * Wed Jan 21 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl4
  1076. - added ruby-1.8.1-104-cvs-updates.patch:
  1077. - removed O_NONBLOCK for a socket used by DRb.
  1078. - Net::IMAP accepts an NIL-envelope.
  1079. * Tue Jan 20 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl3
  1080. - added ruby-1.8.1-103-cvs-updates.patch:
  1081. - io.c: initializer of lineno should be "INT2FIX(0)".
  1082. - disabled optimization on ia64. (-O1/2 makes ruby unusable.)
  1083. - added ruby-1.8.1-ia64-stack-limit-hack.patch:
  1084. - disable IA64_MAGIC_STACK_LIMIT trick when optimization is disabled.
  1085. [ruby-dev:22650]
  1086. * Mon Jan 19 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl2
  1087. - added ruby-1.8.1-101-cvs-updates.patch:
  1088. - StringIO.new.sysread should raise EOFError. [ruby-core:2078]
  1089. - don't increment lineno when gzfile_read_all returns "". [ruby-core:2078]
  1090. - ARGF.readline should raise EOFError at EOF. [ruby-dev:22458]
  1091. - both of ARGF.read and ARGF.read(nil) should concatenate input files when
  1092. length argument is nil. [ruby-dev:22450]
  1093. - ARGF.lineno should return 0 even if ARGF have not been read.
  1094. [ruby-dev:22460]
  1095. - ARGF.each_byte should return self. [ruby-dev:22465]
  1096. - ARGF.eof? should not have any side effect. [ruby-dev:22469]
  1097. - should not abort when module_function is called for undefined method.
  1098. [ruby-dev:22498]
  1099. - ARGF.read(n) makes an error when it gets EOF. [ruby-bugs-ja:PR#585]
  1100. - synchronized with date2 library version 3.5. it includes fixes for
  1101. [ruby-talk:90063].
  1102. - added ruby-1.8.1-102-cvs-updates.patch:
  1103. - documents of methods of IO is missing.
  1104. - added ruby-1.8.1-sleep.patch:
  1105. - sleep is broken with --enable-pthread. [ruby-core:2133]
  1106. [ruby-core:2137]
  1107. - added ruby-1.8.1-time.c.patch:
  1108. - Time#usec should not return neither a negative number nor a number which
  1109. is larger than 1000000. [ruby-dev:22614], [ruby-dev:22617]
  1110. - added ruby-1.8.1-ri-pager.patch:
  1111. - changed pager search order: ENV['PAGER'], pager, ...
  1112. - put datafiles of ri into rdoc package.
  1113. * Sat Dec 27 2003 akira yamada <akira@vinelinux.org> 1.8.1-0vl1
  1114. - new upstream version.
  1115. - applied bugfix patch. ruby-1.8.1-100-cvs-updates.patch:
  1116. - Kernel::require searches actual file name once when no extension
  1117. specified.
  1118. - fixes Ruby/Tk crash bug. (but does not fix block bug.) [ruby-talk:88830]
  1119. - Array#pack checks sign for "i" and "I". [ruby-dev:22427]
  1120. - IO::readlines should return lines when record-separater is nil.
  1121. [ruby-core:02077][ruby-core:02078]
  1122. - ARGF.read accepts "nil" for argument. [ruby-dev:22433]
  1123. - updated ruby-refm-rdp-1.6.8-ja-html.tar.gz.
  1124. - added ruby-mode-init.el.
  1125. - updated ruby-mode-install.sh and ruby-mode-remove.sh.
  1126. * Mon Dec 08 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl5
  1127. - updated ruby-1.8.1pr3-cvs-updates.patch.
  1128. * Sat Dec 06 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl3
  1129. - updated to Ruby 1.8.1-preview3.
  1130. - applied patches from the CVS.
  1131. * Thu Oct 16 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl2
  1132. - libruby obsoletes drb, erb, ruby-csv, ruby-optparse, ruby-rexml,
  1133. ruby-strscan, rubyunit and racc-runtime.
  1134. * Mon Oct 06 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl1
  1135. - new upstream version.
  1136. - applied patches from the CVS.
  1137. - new sub-package: ruby-openssl.
  1138. * Mon Mar 31 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.6.8-0vl2
  1139. - rebuild with tcltk-8.4.2
  1140. * Tue Jan 21 2003 akira yamada <akira@vinelinux.org> 1.6.8-0vl1
  1141. - new upstream version.
  1142. - applied a patch:
  1143. - [ruby-dev:18702] [PATCH] .rb/.so with same feature name
  1144. - build with db4-devel. (dbm.so is linked with libdb-4.0.so.)
  1145. * Tue Mar 19 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl5
  1146. - applied bug fix patch:
  1147. - ruby-dev#16462: preserve reference for GC, but link should be cut.
  1148. (ruby-dev#16411: block local var.)
  1149. - RUBY_RELEASE_DATE "2002-03-19"
  1150. (ruby-1.6.7-103.patch)
  1151. * Sun Mar 17 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl4
  1152. - applied bug fix patch:
  1153. - ruby-dev#16274: patch for 'wm state' (tk.rb)
  1154. - PR#206ja: SEGV handle EXIT
  1155. - updated NEWS
  1156. - RUBY_RELEASE_DATE "2002-03-14"
  1157. (ruby-1.6.7-100.patch)
  1158. - ruby-list#34313: singleton should not be Marshal.dump'ed
  1159. - ruby-dev#16411: block local var
  1160. - RUBY_RELEASE_DATE "2001-03-15"
  1161. (ruby-1.6.7-101.patch)
  1162. - handling multibyte chars is partially broken.
  1163. - RUBY_RELEASE_DATE "2002-03-18"
  1164. (ruby-1.6.7-102.patch)
  1165. - removed ruby-1.6.7-500-marshal-proc.patch and
  1166. ruby-1.6.7-501-class-var.patch. they are included (or rewrited) into the
  1167. above patch.
  1168. - updated refm. (ruby-refm-rdp-1.6.7-ja-html.zip)
  1169. - prefixed %%lang(ja) to %%doc for Japanese documents.
  1170. * Fri Mar 08 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl3
  1171. - applied patch501.
  1172. * Fri Mar 08 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl2
  1173. - updated refm. (ruby-refm-rdp-1.6.7-jp-html.zip)
  1174. * Sun Mar 03 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl1
  1175. - new upstream version.
  1176. - uri library is included.
  1177. - time.rb is new.
  1178. - some bugs are fixed.
  1179. - added ruby-refm-rdp-1.6.6-jp-html.zip.
  1180. - applied bug fix patch:
  1181. - ruby-dev#16178: Marshal::dump shuld call Proc#call.
  1182. (ruby-1.6.7-500-marshal-proc.patch)
  1183. - ruby-talk#35157: class vars broken in 1.6.7
  1184. (ruby-1.6.7-501-class-var.patch)
  1185. - removed: ruby-1.6.6-10[12].patch, ruby-1.6.6-502-net_pop.patch.
  1186. * Mon Feb 04 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl5
  1187. - applied bug fix patch:
  1188. - ruby-dev#15684: reject prefix followed by spaces only.
  1189. - PR#183: SEGV on remove_class_variable
  1190. (ruby-1.6.6-101.patch)
  1191. - PR#184: Net::APOP.auth_only is not usable
  1192. (ruby-1.6.6-502-net_pop.patch)
  1193. - removed ruby-1.6.6-502-net_pop.patch. it is included by
  1194. 101_ruby-1.6.6.patch.
  1195. - site_ruby moved to under /usr/local/lib.
  1196. - added db1-devel to BuildRequires.
  1197. * Wed Jan 09 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl4
  1198. - added a bug fix patch: ruby-1.6.6-501-ruby-mode.patch
  1199. - ruby-talk#30479: ruby-mode.el disables font-lock coloring
  1200. * Tue Jan 08 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl3
  1201. - added a bug fix patch: ruby-1.6.6-100.patch
  1202. - ruby-talk#30203: Ruby 1.6.6 bug and fix
  1203. - ruby-list#33047: regex bug
  1204. - PR#230: problem with -d in 1.6.6
  1205. - removed patches: ruby-900-XXX-strtod.patch ruby-503-weakref.rb.patch.
  1206. included into ruby-1.6.6-100.patch.
  1207. * Fri Jan 04 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl2
  1208. - added a patch:
  1209. - ruby-1.6.6-901-sparc.patch: PR#225: sparc linux needs different
  1210. FLUSH_REGISTER_WINDOWS
  1211. - renamed to ruby-mode from ruby-mode-el.
  1212. * Wed Dec 26 2001 akira yamada <akira@vinelinux.org> 1.6.6-0vl1
  1213. - new upstream version.
  1214. * Sun Nov 18 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.6.5-0vl3
  1215. - rebuilt with new tcl/tk packages
  1216. - added patches: ruby-900-XXX-strtod.patch ruby-503-weakref.rb.patch
  1217. * Wed Oct 10 2001 akira yamada <akira@vinelinux.org> 1.6.5-0vl2
  1218. - applied bug fix patch from upstrem cvs repository.
  1219. - ruby-dev#14810, ruby-dev#14813 (ruby-1.6.5-100.patch)
  1220. - applied bug fix patch:
  1221. - ruby-list#31570 for net/pop.rb (ruby-1.6.5-501-net-pop.rb.patch)
  1222. - %%{_mandir} hack.
  1223. - emacsen_pkg hack. (very dirty for %%_foo() in %%if-%%endif. but it is
  1224. wrong of spec-specification... sigh.)
  1225. * Wed Sep 19 2001 akira yamada <akira@vinelinux.org> 1.6.5-0vl1
  1226. - new upstream version.
  1227. - add XFree86-devel to BuildRequires. (tk.h requires X11/Xlib.h.)
  1228. * Mon Sep 03 2001 akira yamada <akira@vinelinux.org> 1.6.4-0vl8
  1229. - removed files related on emacsen-common from libruby.
  1230. - updated upstream URLs.
  1231. * Tue Aug 07 2001 akira yamada <akira@vinelinux.org>
  1232. - 1.6.4-0vl7
  1233. - added ruby-1.6.4-108.patch.
  1234. - fixed: causes segv to mod_ruby.
  1235. - do not recurse if method_missing is undefined.
  1236. - m68k work around.
  1237. * Fri Aug 03 2001 akira yamada <akira@vinelinux.org>
  1238. - 1.6.4-0vl5
  1239. - new sub-package ruby-mode-el. it provides ruby-mode for emacsen.
  1240. * Thu Aug 01 2001 akira yamada <akira@vinelinux.org>
  1241. - 1.6.4-0vl4
  1242. - added ruby-1.6.4-10[67].patch.
  1243. - remove ruby-1.6.4-501.patch. (fixed on upstream.)
  1244. - marshal verbose warning bug.
  1245. - ruby-1.6-2001.07.31.
  1246. - packages except libruby and irb requires libruby = %%{version}-%%{release}.
  1247. - irb requires ruby = %%{version}-%%{release}.
  1248. * Thu Jul 26 2001 akira yamada <akira@vinelinux.org>
  1249. - 1.6.4-0vl3
  1250. - added ruby-1.6.4-10[345].patch and ruby-1.6.4-501.patch.
  1251. - tilde expansion problem and PR#158.
  1252. - some documents moved to libruby.rpm from ruby.rpm.
  1253. - stopped using %%configure macros, because it breaks
  1254. Config::CONFIG["libdir"] variable: %%configure sets
  1255. it to "/usr/lib" but it should be
  1256. "$(exec_prefix)/lib" for some packages which uses
  1257. ruby.
  1258. * Tue Jul 17 2001 akira yamada <akira@vinelinux.org>
  1259. - 1.6.4-0vl2
  1260. - added ruby-1.6.4-10[12].patch.
  1261. - fixed a bug around order of "$:".
  1262. - updated config.{guess,sub}.
  1263. - eval.c bug.
  1264. - marshal version 4.6.
  1265. * Mon Jun 04 2001 akira yamada <akira@vinelinux.org>
  1266. - 1.6.4-0vl1
  1267. - upgrade to nwe upstream version 1.6.4.
  1268. * Mon Apr 02 2001 akira yamada <akira@vinelinux.org>
  1269. - applied patch:
  1270. - fixed method cache bug. etc. (Patch103, Patch104)
  1271. * Tue Mar 27 2001 akira yamada <akira@vinelinux.org>
  1272. - applied patch:
  1273. - fixed marshal for bignum bug.
  1274. - fixed scope of constant variables bug.
  1275. * Tue Mar 20 2001 akira yamada <akira@vinelinux.org>
  1276. - upgraded to new upstream version 1.6.3.
  1277. * Fri Feb 09 2001 akira yamada <akira@vinelinux.org>
  1278. - fixed bad group for libruby.
  1279. - Applied patch: upgraded to cvs version (2001-02-08):
  1280. fixed minor bugs.
  1281. * Thu Jan 18 2001 akira yamada <akira@vinelinux.org>
  1282. - Applied patch: upgraded to cvs version (2001-01-15):
  1283. fixed minor bugs(e.g. ruby makes extention librares too large...).
  1284. * Wed Jan 10 2001 akira yamada <akira@vinelinux.org>
  1285. - Applied patch: upgraded to cvs version (2001-01-09):
  1286. fixed minor bugs.
  1287. * Sat Dec 30 2000 akira yamada <akira@vinelinux.org>
  1288. - Applied bug fix patch.
  1289. * Mon Dec 25 2000 akira yamada <akira@vinelinux.org>
  1290. - Updated to new upstream version 1.6.2.
  1291. * Fri Dec 22 2000 akira yamada <akira@vinelinux.org>
  1292. - Removed ruby_cvs.2000122019.patch, added ruby_cvs.2000122215.patch
  1293. (upgraded ruby to latest cvs version, 1.6.2-preview4).
  1294. * Wed Dec 20 2000 akira yamada <akira@vinelinux.org>
  1295. - Removed ruby_cvs.2000121413.patch, added ruby_cvs.2000122019.patch
  1296. (upgraded ruby to latest cvs version).
  1297. - new package: libruby
  1298. * Thu Dec 14 2000 akira yamada <akira@vinelinux.org>
  1299. - Removed ruby_cvs.2000101901.patch, added ruby_cvs.2000121413.patch
  1300. (upgraded ruby to latest cvs version).
  1301. - Removed ruby-dev.11262.patch, ruby-dev.11265.patch,
  1302. and ruby-dev.11268.patch (included into above patch).
  1303. * Sun Nov 12 2000 MACHINO, Satoshi <machino@vinelinux.org> 1.6.1-0vl9
  1304. - build on gcc-2.95.3
  1305. * Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
  1306. - Added ruby-dev.11268.patch.
  1307. * Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
  1308. - Removed ruby_cvs.2000101117.patch and added ruby_cvs.2000101901.patch
  1309. (upgraded ruby to latest cvs version).
  1310. - Added ruby-dev.11262.patch.
  1311. - Added ruby-dev.11265.patch.
  1312. * Wed Oct 11 2000 akira yamada <akira@vinelinux.org>
  1313. - Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000101117.patch
  1314. (upgraded ruby to latest cvs version).
  1315. * Mon Oct 09 2000 akira yamada <akira@vinelinux.org>
  1316. - Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000100313.patch
  1317. (upgraded ruby to latest cvs version).
  1318. * Tue Oct 03 2000 akira yamada <akira@vinelinux.org>
  1319. - Removed ruby_cvs.2000100218.patch and added ruby_cvs.2000100313.patch
  1320. (upgraded ruby to latest cvs version).
  1321. * Mon Oct 02 2000 akira yamada <akira@vinelinux.org>
  1322. - Removed ruby_cvs.2000092718.patch and added ruby_cvs.2000100218.patch
  1323. (upgraded ruby to latest cvs version).
  1324. * Thu Sep 27 2000 akira yamada <akira@vinelinux.org>
  1325. - Updated to upstream version 1.6.1.
  1326. - Removed ruby_cvs.2000082901.patch and added ruby_cvs.2000092718.patch
  1327. (upgraded ruby to latest cvs version).
  1328. * Tue Aug 29 2000 akira yamada <akira@redhat.com>
  1329. - Updated to version 1.4.6.
  1330. - removed ruby-dev.10123.patch(included into ruby-1.4.6).
  1331. - Added ruby_cvs.2000082901.patch(upgraded ruby to latest cvs version).
  1332. * Tue Jun 27 2000 akira yamada <akira@redhat.com>
  1333. - Updated manuals to version 1.4.5.
  1334. * Sun Jun 25 2000 akira yamada <akira@redhat.com>
  1335. - Added ruby-dev.10123.patch.
  1336. * Sat Jun 24 2000 akira yamada <akira@redhat.com>
  1337. - Updated to version 1.4.5.
  1338. - Removed ruby_cvs.2000062401.patch(included into ruby-1.4.5).
  1339. * Thu Jun 22 2000 akira yamada <akira@redhat.com>
  1340. - Updated to version 1.4.4(06/22/2000 CVS).
  1341. - Removed ruby-dev.10054.patch(included into ruby_cvs.patch).
  1342. * Thu Jun 22 2000 akira yamada <akira@redhat.com>
  1343. - Renamed to ruby_cvs20000620.patch from ruby_cvs.patch.
  1344. * Tue Jun 20 2000 akira yamada <akira@redhat.com>
  1345. - Updated to version 1.4.4(06/20/2000 CVS).
  1346. - Removed ruby-list.23190.patch(included into ruby_cvs.patch).
  1347. - Added ruby-dev.10054.patch.
  1348. * Tue Jun 15 2000 akira yamada <akira@redhat.com>
  1349. - Updated to version 1.4.4(06/12/2000 CVS).
  1350. - Added manuals and FAQs.
  1351. - Split into ruby, ruby-devel, ruby-tcltk, ruby-docs, irb.
  1352. * Tue Jun 13 2000 Mitsuo Hamada <mhamada@redhat.com>
  1353. - Updated to version 1.4.4
  1354. * Wed Dec 08 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1355. - Updated to version 1.4.3
  1356. * Mon Sep 20 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1357. - Updated to version 1.4.2 (Sep 18)
  1358. * Fri Sep 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1359. - Updated to version 1.4.2
  1360. * Tue Aug 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1361. - Updated to version 1.4.0
  1362. * Fri Jul 23 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1363. - 2nd release
  1364. - Updated to version 1.2.6(15 Jul 1999)
  1365. - striped %{prefix}/bin/ruby
  1366. * Mon Jun 28 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1367. - Updated to version 1.2.6(21 Jun 1999)
  1368. * Wed Apr 14 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1369. - Updated to version 1.2.5
  1370. * Fri Apr 09 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1371. - Updated to version 1.2.4
  1372. * Fri Dec 25 1998 Toru Hoshina <hoshina@best.com>
  1373. - Version up to 1.2 stable.
  1374. * Fri Nov 27 1998 Toru Hoshina <hoshina@best.com>
  1375. - Version up to 1.1c9.
  1376. * Thu Nov 19 1998 Toru Hoshina <hoshina@best.com>
  1377. - Version up to 1.1c8, however it appear short life :-P
  1378. * Fri Nov 13 1998 Toru Hoshina <hoshina@best.com>
  1379. - Version up.
  1380. * Mon Sep 22 1998 Toru Hoshina <hoshina@best.com>
  1381. - To make a libruby.so.
  1382. * Mon Sep 21 1998 Toru Hoshina <hoshina@best.com>
  1383. - Modified SPEC in order to install libruby.a so that it should be used by
  1384. another ruby entention.
  1385. - 2nd release.
  1386. * Mon Mar 9 1998 Shoichi OZAWA <shoch@jsdi.or.jp>
  1387. - Added a powerPC arch part. Thanks, MURATA Nobuhiro <nob@makioka.y-min.or.jp>