source: projects/specs/branches/6/r/ruby/ruby-vl.spec @ 2794

Revision 2794, 59.8 KB checked in by daisuke, 13 years ago (diff)

ruby: update to 1.8.7-p334

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