source: projects/specs/trunk/r/ruby/ruby-vl.spec @ 521

Revision 521, 59.5 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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