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

Revision 7271, 74.0 KB checked in by daisuke, 11 years ago (diff)

ruby: update to 1.9.3-p362

Line 
1%global major_version 1
2%global minor_version 9
3%global teeny_version 3
4%global patch_level 362
5
6%global major_minor_version %{major_version}.%{minor_version}
7
8%global ruby_version %{major_minor_version}.%{teeny_version}
9%global ruby_version_patch_level %{major_minor_version}.%{teeny_version}.%{patch_level}
10%global ruby_abi %{major_minor_version}.1
11
12%global ruby_archive %{name}-%{ruby_version}-p%{patch_level}
13
14%global ruby_libdir %{_datadir}/%{name}/%{ruby_abi}
15%global ruby_libarchdir %{_libdir}/%{name}/%{ruby_abi}
16
17# This is the local lib/arch and should not be used for packaging.
18%global ruby_sitedir site_ruby
19%global ruby_sitelibdir %{_prefix}/local/share/ruby/%{ruby_sitedir}/%{ruby_abi}
20%global ruby_sitearchdir %{_prefix}/local/%{_lib}/ruby/%{ruby_sitedir}/%{ruby_abi}
21
22# This is the general location for libs/archs compatible with all
23# or most of the Ruby versions
24%global ruby_vendordir vendor_ruby
25%global ruby_vendorlibdir %{_prefix}/share/ruby/%{ruby_vendordir}/%{ruby_abi}
26%global ruby_vendorarchdir %{_libdir}/ruby/%{ruby_vendordir}/%{ruby_abi}
27
28%global rubygems_version 1.8.23
29
30# The RubyGems library has to stay out of Ruby directory tree, since the
31# RubyGems should be share by all Ruby implementations.
32%global rubygems_dir %{_datadir}/rubygems
33
34# Specify custom RubyGems root.
35%global gem_dir %{_datadir}/gems
36%global gem_extdir %{_libdir}/gems
37%global gem_extdirs %{_exec_prefix}/lib{,64}/gems
38
39%global rake_version 0.9.2.2
40# TODO: The IRB has strange versioning. Keep the Ruby's versioning ATM.
41# http://redmine.ruby-lang.org/issues/5313
42%global irb_version %{ruby_version_patch_level}
43%global rdoc_version 3.9.4
44%global bigdecimal_version 1.1.0
45%global io_console_version 0.3
46%global json_version 1.5.4
47%global minitest_version 2.5.1
48
49%bcond_without emacsen
50%define rbmode          ruby-mode
51%define rbmode_el       ruby-mode
52
53%global _normalized_cpu %(echo %{_target_cpu} | sed 's/^ppc/powerpc/;s/i.86/i686/;s/sparcv./sparc/')
54
55Summary: An interpreter of object-oriented scripting language
56Summary(ja): オブジェクト指向言語 Ruby インタプリタ
57Name: ruby
58Version: %{ruby_version_patch_level}
59# Note:
60# As seen on perl srpm, as this (ruby) srpm contains several sub-components,
61# we cannot reset the release number to 1 even when the main (ruby) version
62# is updated - because it may be that the versions of sub-components don't
63# change.
64Release: 5%{?_dist_release}
65Group: Development/Languages
66# Public Domain for example for: include/ruby/st.h, strftime.c, ...
67License: (Ruby or BSD) and Public Domain
68URL: http://ruby-lang.org/
69Source0: ftp://ftp.ruby-lang.org/pub/%{name}/%{major_minor_version}/%{ruby_archive}.tar.bz2
70Source1: operating_system.rb
71
72Source6: %{rbmode_el}-install.sh
73Source7: %{rbmode_el}-remove.sh
74Source8: %{rbmode_el}-init.el
75
76# changelog of fedora package
77Source10: Changelog.fedora
78
79# http://redmine.ruby-lang.org/issues/5231
80Patch0: ruby-1.9.3-disable-versioned-paths.patch
81# TODO: Should be submitted upstream?
82Patch1: ruby-1.9.3-arch-specific-dir.patch
83# http://redmine.ruby-lang.org/issues/5281
84Patch2: ruby-1.9.3-added-site-and-vendor-arch-flags.patch
85# Force multiarch directories for i.86 to be always named i686.
86Patch3: ruby-1.9.3-always-use-i686.patch
87# http://redmine.ruby-lang.org/issues/5465
88Patch4: ruby-1.9.3-fix-s390x-build.patch
89# Fix the uninstaller, so that it doesn't say that gem doesn't exist
90# when it exists outside of the GEM_HOME (already fixed in the upstream)
91Patch5: ruby-1.9.3-rubygems-1.8.11-uninstaller.patch
92# Already fixed upstream:
93# https://github.com/ruby/ruby/commit/f212df564a4e1025f9fb019ce727022a97bfff53
94Patch7: ruby-1.9.3-bignum-test-fix.patch
95# Allows to install RubyGems into custom directory, outside of Ruby's tree.
96# http://redmine.ruby-lang.org/issues/5617
97Patch8: ruby-1.9.3-custom-rubygems-location.patch
98# Add support for installing binary extensions according to FHS.
99# https://github.com/rubygems/rubygems/issues/210
100Patch9: rubygems-1.8.11-binary-extensions.patch
101# On koji, network related tests sometimes cause internal server error,
102# ignore these
103Patch10: ruby-1.9.3-p327-ignore-internal-server-error-on-test.patch
104# Make mkmf verbose by default
105Patch12: ruby-1.9.3-mkmf-verbose.patch
106
107Requires: %{name}-libs = %{version}-%{release}
108Requires: ruby(rubygems) >= %{rubygems_version}
109# Make the bigdecimal gem a runtime dependency of Ruby to avoid problems
110# with user-installed gems, that don't require it in gemspec/Gemfile
111# See https://bugzilla.redhat.com/show_bug.cgi?id=829209
112# and http://bugs.ruby-lang.org/issues/6123
113Requires: rubygem(bigdecimal) >= %{bigdecimal_version}
114
115
116BuildRoot: %{_tmppath}/%{name}-%{version}-root
117BuildRequires: autoconf
118BuildRequires: gdbm-devel
119BuildRequires: ncurses-devel
120BuildRequires: db4-devel
121BuildRequires: libffi-devel
122BuildRequires: openssl-devel
123BuildRequires: libyaml-devel
124BuildRequires: readline-devel
125BuildRequires: tcl tk
126BuildRequires: libX11-devel
127BuildRequires: zlib-devel
128# Needed to pass test_set_program_name(TestRubyOptions)
129BuildRequires: procps
130
131Distribution: Vine Linux
132Vendor: Project Vine
133Packager: daisuke
134
135
136%description
137Ruby is the interpreted scripting language for quick and easy
138object-oriented programming.  It has many features to process text
139files and to do system management tasks (as in Perl).  It is simple,
140straight-forward, and extensible.
141
142%description -l ja
143Rubyはシンプルかつ強力なオブジェクト指向スクリプト言語です.Rubyは最初
144から純粋なオブジェクト指向言語として設計されていますから,オブジェクト
145指向プログラミングを手軽に行う事が出来ます.もちろん通常の手続き型のプ
146ログラミングも可能です.
147
148Rubyはテキスト処理関係の能力などに優れ,Perlと同じくらい強力です.さら
149にシンプルな文法と,例外処理やイテレータなどの機構によって,より分かり
150やすいプログラミングが出来ます.
151
152%package devel
153Summary:    A Ruby development environment
154Summary(ja): Ruby 開発環境
155Group:      Development/Languages
156# Requires:   %{name}-libs = %{version}-%{release}
157Requires:   %{name} = %{version}-%{release}
158
159%description devel
160Header files and libraries for building an extension library for the
161Ruby or an application embedding Ruby.
162
163%description devel -l ja
164Rubyのための拡張ライブラリやRubyを組み込んだアプリケーションを作るため
165に必要となるへッダファイルやライブラリです.
166
167
168%package libs
169Summary:    Libraries necessary to run Ruby
170Group:      Development/Libraries
171License:    Ruby or BSD
172Provides:   ruby(abi) = %{ruby_abi}
173Provides:   libruby = %{version}-%{release}
174Obsoletes:  libruby < 1.9
175Obsoletes:  drb erb
176Obsoletes:  ruby-csv ruby-optparse ruby-rexml ruby-strscan rubyunit racc-runtime
177Obsoletes:  ruby-openssl < 1.9
178
179%description libs
180This package includes the libruby, necessary to run Ruby.
181
182%description libs -l ja
183このパッケージには Ruby を利用するために必要となるライブラリが含まれ
184ています.
185
186
187%package rubygems
188Summary:    Packaging system for Ruby application or library
189Summary(ja): Ruby アプリケーションやライブラリのためのパッケージシステム
190Version:    %{rubygems_version}
191Group:      Development/Libraries
192License:    Ruby or MIT
193Requires:   ruby(abi) = %{ruby_abi}
194Requires:   rubygem(rdoc) >= %{rdoc_version}
195Requires:   rubygem(io-console) >= %{io_console_version}
196Provides:   gem = %{version}-%{release}
197Provides:   ruby(rubygems) = %{version}-%{release}
198Obsoletes:  rubygems <= 1.8.24-1vl7
199BuildArch:  noarch
200
201%description rubygems
202RubyGems is the Ruby standard for publishing and managing third party
203libraries.
204
205%description rubygems -l ja
206RubyGems は Ruby 標準のサードパーティ製ライブラリのパッケージ管理
207システムです。
208
209
210%package rubygems-devel
211Summary:    Macros and development tools for packaging RubyGems
212Version:    %{rubygems_version}
213Group:      Development/Libraries
214License:    Ruby or MIT
215Requires:   ruby(rubygems) = %{version}-%{release}
216BuildArch:  noarch
217
218%description rubygems-devel
219Macros and development tools for packaging RubyGems.
220
221
222%package -n rubygem-rake
223Summary:    Ruby based make-like utility
224Summary(ja): Ruby ベースの make のようなユーティリティ
225Version:    %{rake_version}
226Group:      Development/Libraries
227License:    Ruby or MIT
228Requires:   ruby(abi) = %{ruby_abi}
229Requires:   ruby(rubygems) >= %{rubygems_version}
230Provides:   rake = %{version}-%{release}
231Provides:   rubygem(rake) = %{version}-%{release}
232BuildArch:  noarch
233
234%description -n rubygem-rake
235Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
236specified in standard Ruby syntax.
237
238%description -n rubygem-rake -l ja
239Rake は Ruby ベースの make のようなユーティリティです。
240
241
242%package irb
243Summary:    The Interactive Ruby
244Summary(ja):  インタラクティブ Ruby
245Version:    %{irb_version}
246Group:      Development/Libraries
247Requires:   %{name}-libs = %{ruby_version_patch_level}
248Obsoletes:  irb < 1.9
249Provides:   irb = %{version}-%{release}
250Provides:   ruby(irb) = %{version}-%{release}
251BuildArch:  noarch
252
253%description irb
254The irb is acronym for Interactive Ruby.  It evaluates ruby expression
255from the terminal.
256
257%description irb -l ja
258irb は Interactive RuBy の略で、対話的にRubyの式を入力し、
259評価させることが可能です。
260
261
262%package -n rubygem-rdoc
263Summary:    A tool to generate HTML and command-line documentation for Ruby projects
264Summary(ja): Rubyのソースコードからドキュメントを生成するツール
265Version:    %{rdoc_version}
266Group:      Development/Libraries
267License:    GPLv2 and Ruby and MIT
268Requires:   ruby(abi) = %{ruby_abi}
269Requires:   ruby(rubygems) >= %{rubygems_version}
270Requires:   ruby(irb) = %{irb_version}
271Provides:   rdoc = %{version}-%{release}
272Provides:   ri = %{version}-%{release}
273Provides:   rubygem(rdoc) = %{version}-%{release}
274Obsoletes:  rdoc < 1.9
275Obsoletes:  ruby-rdoc < %{version}
276Obsoletes:  ruby-ri < %{version}
277BuildArch:  noarch
278
279%description -n rubygem-rdoc
280RDoc produces HTML and command-line documentation for Ruby projects.  RDoc
281includes the 'rdoc' and 'ri' tools for generating and displaying online
282documentation.
283
284%description -n rubygem-rdoc -l ja
285RDocはRubyのソースコードからドキュメントを生成するツールです.
286
287
288%package doc
289Summary:    Documentation for %{name}
290Summary(ja): %{name} のドキュメント
291Group:      Applications/Documentation
292Requires:   %{_bindir}/ri
293# TODO: It seems that ri documentation differs from platform to platform due to
294# some encoding bugs, therefore the documentation should be split out of this gem
295# or kept platform specific.
296# https://github.com/rdoc/rdoc/issues/71
297# BuildArch:  noarch
298
299%description doc
300This package contains documentation for %{name}.
301
302
303%package -n rubygem-bigdecimal
304Summary:    BigDecimal provides arbitrary-precision floating point decimal arithmetic
305Version:    %{bigdecimal_version}
306Group:      Development/Libraries
307License:    GPL+ or Artistic
308Requires:   ruby(abi) = %{ruby_abi}
309Requires:   ruby(rubygems) >= %{rubygems_version}
310Provides:   rubygem(bigdecimal) = %{version}-%{release}
311
312%description -n rubygem-bigdecimal
313Ruby provides built-in support for arbitrary precision integer arithmetic.
314For example:
315
31642**13 -> 1265437718438866624512
317
318BigDecimal provides similar support for very large or very accurate floating
319point numbers. Decimal arithmetic is also useful for general calculation,
320because it provides the correct answers people expect–whereas normal binary
321floating point arithmetic often introduces subtle errors because of the
322conversion between base 10 and base 2.
323
324
325%package -n rubygem-io-console
326Summary:    IO/Console is a simple console utilizing library
327Version:    %{io_console_version}
328Group:      Development/Libraries
329Requires:   ruby(abi) = %{ruby_abi}
330Requires:   ruby(rubygems) >= %{rubygems_version}
331Provides:   rubygem(io-console) = %{version}-%{release}
332
333%description -n rubygem-io-console
334IO/Console provides very simple and portable access to console. It doesn't
335provide higher layer features, such like curses and readline.
336
337
338%package -n rubygem-json
339Summary:    This is a JSON implementation as a Ruby extension in C
340Version:    %{json_version}
341Group:      Development/Libraries
342License:    Ruby or GPLv2
343Requires:   ruby(abi) = %{ruby_abi}
344Requires:   ruby(rubygems) >= %{rubygems_version}
345Provides:   rubygem(json) = %{version}-%{release}
346
347%description -n rubygem-json
348This is a implementation of the JSON specification according to RFC 4627.
349You can think of it as a low fat alternative to XML, if you want to store
350data to disk or transmit it over a network rather than use a verbose
351markup language.
352
353
354%package -n rubygem-minitest
355Summary:    Minitest provides a complete suite of testing facilities.
356Version:    %{minitest_version}
357Group:      Development/Libraries
358License:    MIT
359Requires:   ruby(abi) = %{ruby_abi}
360Requires:   ruby(rubygems) >= %{rubygems_version}
361Provides:   rubygem(minitest) = %{version}-%{release}
362BuildArch:  noarch
363
364%description -n rubygem-minitest
365minitest/unit is a small and incredibly fast unit testing framework.
366
367minitest/spec is a functionally complete spec engine.
368
369minitest/benchmark is an awesome way to assert the performance of your
370algorithms in a repeatable manner.
371
372minitest/mock by Steven Baker, is a beautifully tiny mock object
373framework.
374
375minitest/pride shows pride in testing and adds coloring to your test
376output.
377
378
379%package tcltk
380Summary:    Tcl/Tk interface for scripting language Ruby
381Summary(ja): RubyのTcl/Tkインタフェースライブラリ
382Group:      Development/Languages
383Requires:   %{name}-libs = %{ruby_version_patch_level}
384Provides:   ruby(tcltk) = %{ruby_version_patch_level}-%{release}
385
386%description tcltk
387Tcl/Tk interface for the object-oriented scripting language Ruby.
388
389%description -n ruby-tcltk -l ja
390RubyにTcl/Tkライブラリへのインタフェースを提供する拡張ライブラリです.
391
392
393%if %{with emacsen}
394%package mode
395Summary: Emacs-lisp ruby-mode for the scripting language Ruby
396Summary(ja): Emacs上でRubyスクリプトを書くためのモード
397Group: Applications/Editors/Emacs
398Requires(post): emacsen, emacsen-common >= 0.1
399Requires(preun): emacsen, emacsen-common >= 0.1
400BuildArch: noarch
401
402%description -n %{rbmode_el}
403Emacs-lisp ruby-mode for the object-oriented scripting language Ruby.
404
405%description -n %{rbmode_el} -l ja
406Emacs上でRubyスクリプトを書くのに便利なモードです.
407%endif
408
409
410%prep
411%setup -q -n %{ruby_archive}
412
413%patch0 -p1
414%patch1 -p1
415%patch2 -p1
416%patch3 -p1
417%patch4 -p1
418%patch5 -p1
419%patch7 -p1
420%patch8 -p1
421%patch9 -p1
422%patch10 -p1
423%patch12 -p1
424
425%build
426autoconf
427
428%configure \
429        --with-rubylibprefix='%{ruby_libdir}' \
430        --with-archdir='%{ruby_libarchdir}' \
431        --with-sitedir='%{ruby_sitelibdir}' \
432        --with-sitearchdir='%{ruby_sitearchdir}' \
433        --with-vendordir='%{ruby_vendorlibdir}' \
434        --with-vendorarchdir='%{ruby_vendorarchdir}' \
435        --with-rubyhdrdir='%{_includedir}' \
436        --with-rubygemsdir='%{rubygems_dir}' \
437        --disable-rpath \
438        --enable-shared \
439        --disable-versioned-paths
440
441# Q= makes the build output more verbose and allows to check compiler options.
442make %{?_smp_mflags} COPY="cp -p" Q=
443
444
445%install
446rm -rf %{buildroot}
447make install DESTDIR=%{buildroot}
448
449# install ruby-mode
450%if %{with emacsen}
451mkdir -p $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/%{rbmode}
452mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/emacsen-common/packages/install
453mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/emacsen-common/packages/remove
454cp misc/*.el %{SOURCE8} $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/%{rbmode}
455
456%_installemacsenscript %{rbmode} %{SOURCE6}
457
458%_removeemacsenscript  %{rbmode} %{SOURCE7}
459
460%endif
461
462# Dump the macros into macro.ruby to use them to build other Ruby libraries.
463mkdir -p %{buildroot}%{_sysconfdir}/rpm
464cat >> %{buildroot}%{_sysconfdir}/rpm/macros.ruby << \EOF
465%%ruby_libdir %%{_datadir}/%{name}/%{ruby_abi}
466%%ruby_libarchdir %%{_libdir}/%{name}/%{ruby_abi}
467
468# This is the local lib/arch and should not be used for packaging.
469%%ruby_sitedir site_ruby
470%%ruby_sitelibdir %%{_prefix}/local/share/%{name}/%%{ruby_sitedir}/%{ruby_abi}
471%%ruby_sitearchdir %%{_prefix}/local/%%{_lib}/%{name}/%%{ruby_sitedir}/%{ruby_abi}
472
473# This is the general location for libs/archs compatible with all
474# or most of the Ruby versions
475%%ruby_vendordir vendor_ruby
476%%ruby_vendorlibdir %%{_datadir}/%{name}/%%{ruby_vendordir}/%{ruby_abi}
477%%ruby_vendorarchdir %%{_libdir}/%{name}/%%{ruby_vendordir}/%{ruby_abi}
478EOF
479
480cat >> %{buildroot}%{_sysconfdir}/rpm/macros.rubygems << \EOF
481# The RubyGems root folder.
482%%gem_dir %{gem_dir}
483
484# Common gem locations and files.
485%%gem_instdir %%{gem_dir}/gems/%%{gem_name}-%%{version}
486%%gem_extdir %%{_libdir}/gems/exts/%%{gem_name}-%%{version}
487%%gem_libdir %%{gem_instdir}/lib
488%%gem_cache %%{gem_dir}/cache/%%{gem_name}-%%{version}.gem
489%%gem_spec %%{gem_dir}/specifications/%%{gem_name}-%%{version}.gemspec
490%%gem_docdir %%{gem_dir}/doc/%%{gem_name}-%%{version}
491EOF
492
493# Install custom operating_system.rb.
494mkdir -p %{buildroot}%{rubygems_dir}/rubygems/defaults
495cp %{SOURCE1} %{buildroot}%{rubygems_dir}/rubygems/defaults
496
497# Move gems root into common direcotry, out of Ruby directory structure.
498mv %{buildroot}%{ruby_libdir}/gems/%{ruby_abi} %{buildroot}%{gem_dir}
499
500# Create folders for gem binary extensions.
501mkdir -p %{buildroot}%{gem_extdirs}/exts
502
503# Move bundled rubygems to %%gem_dir and %%gem_extdir
504# make symlinks for io-console and bigdecimal,
505# which are considered to be part of stdlib by other Gems
506mkdir -p %{buildroot}%{gem_dir}/gems/rake-%{rake_version}/lib
507mv %{buildroot}%{ruby_libdir}/rake* %{buildroot}%{gem_dir}/gems/rake-%{rake_version}/lib
508
509mkdir -p %{buildroot}%{gem_dir}/gems/rdoc-%{rdoc_version}/lib
510mv %{buildroot}%{ruby_libdir}/rdoc* %{buildroot}%{gem_dir}/gems/rdoc-%{rdoc_version}/lib
511
512# gem_dir
513mkdir -p %{buildroot}%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib
514mv %{buildroot}%{ruby_libdir}/bigdecimal %{buildroot}%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib
515ln -s %{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib/bigdecimal %{buildroot}%{ruby_libdir}/bigdecimal
516# gem_extdir
517mkdir -p %{buildroot}%{gem_extdir}/exts/bigdecimal-%{bigdecimal_version}/lib
518mv %{buildroot}%{ruby_libarchdir}/bigdecimal.so %{buildroot}%{gem_extdir}/exts/bigdecimal-%{bigdecimal_version}/lib
519ln -s %{gem_extdir}/exts/bigdecimal-%{bigdecimal_version}/lib/bigdecimal.so %{buildroot}%{ruby_libarchdir}/bigdecimal.so
520
521# gem_dir
522mkdir -p %{buildroot}%{gem_dir}/gems/io-console-%{io_console_version}/lib
523mv %{buildroot}%{ruby_libdir}/io %{buildroot}%{gem_dir}/gems/io-console-%{io_console_version}/lib
524ln -s %{gem_dir}/gems/io-console-%{io_console_version}/lib/io %{buildroot}%{ruby_libdir}/io
525# gem_extdir
526mkdir -p %{buildroot}%{gem_extdir}/exts/io-console-%{io_console_version}/lib/io
527mv %{buildroot}%{ruby_libarchdir}/io/console.so %{buildroot}%{gem_extdir}/exts/io-console-%{io_console_version}/lib/io
528ln -s %{gem_extdir}/exts/io-console-%{io_console_version}/lib/io/console.so %{buildroot}%{ruby_libarchdir}/io/console.so
529
530# gem_dir
531mkdir -p %{buildroot}%{gem_dir}/gems/json-%{json_version}/lib
532mv %{buildroot}%{ruby_libdir}/json* %{buildroot}%{gem_dir}/gems/json-%{json_version}/lib
533# gem_extdir
534mkdir -p %{buildroot}%{gem_extdir}/exts/json-%{json_version}/lib
535mv %{buildroot}%{ruby_libarchdir}/json/ %{buildroot}%{gem_extdir}/exts/json-%{json_version}/lib/
536
537mkdir -p %{buildroot}%{gem_dir}/gems/minitest-%{minitest_version}/lib
538mv %{buildroot}%{ruby_libdir}/minitest %{buildroot}%{gem_dir}/gems/minitest-%{minitest_version}/lib
539
540# Adjust the gemspec files so that the gems will load properly
541sed -i '2 a\
542  s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/specifications/rake-%{rake_version}.gemspec
543
544sed -i '2 a\
545  s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/specifications/rdoc-%{rdoc_version}.gemspec
546
547sed -i '2 a\
548  s.require_paths = ["lib"]\
549  s.extensions = ["bigdecimal.so"]' %{buildroot}%{gem_dir}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
550
551sed -i '2 a\
552  s.require_paths = ["lib"]\
553  s.extensions = ["io/console.so"]' %{buildroot}%{gem_dir}/specifications/io-console-%{io_console_version}.gemspec
554
555sed -i '2 a\
556  s.require_paths = ["lib"]\
557  s.extensions = ["json/ext/parser.so", "json/ext/generator.so"]' %{buildroot}%{gem_dir}/specifications/json-%{json_version}.gemspec
558
559sed -i '2 a\
560  s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/specifications/minitest-%{minitest_version}.gemspec
561
562%check
563DISABLE_TESTS=""
564
565# OpenSSL 1.0.1 is breaking the drb test suite.
566# https://bugs.ruby-lang.org/issues/6221
567DISABLE_TESTS="-x test_drbssl.rb $DISABLE_TESTS"
568
569%ifarch armv7l armv7hl armv7hnl
570# test_call_double(DL::TestDL) fails on ARM HardFP
571# http://bugs.ruby-lang.org/issues/6592
572DISABLE_TESTS="-x test_dl2.rb $DISABLE_TESTS"
573%endif
574
575%ifnarch ppc ppc64
576make check TESTS="-v $DISABLE_TESTS"
577%endif
578
579%post libs -p /sbin/ldconfig
580
581%postun libs -p /sbin/ldconfig
582
583%if %{with emacsen}
584%post -n %{rbmode_el}
585if [ "$1" = 2 ]; then
586
587  %_emacsenPackageRemove %{rbmode}
588
589fi
590
591%_addemacsenlist %{rbmode}
592
593%_emacsenPackageInstall %{rbmode}
594 
595%preun -n %{rbmode_el}
596if [ "$1" = 0 ]; then
597
598  %_emacsenPackageRemove %{rbmode}
599
600  %_removeemacsenlist %{rbmode}
601
602fi
603%endif
604     
605
606%files
607%doc COPYING
608%lang(ja) %doc COPYING.ja
609%doc GPL
610%doc LEGAL
611%{_bindir}/erb
612%{_bindir}/ruby
613%{_bindir}/testrb
614%{_mandir}/man1/erb*
615%{_mandir}/man1/ruby*
616
617# http://fedoraproject.org/wiki/Packaging:Guidelines#Packaging_Static_Libraries
618%exclude %{_libdir}/libruby-static.a
619
620%files devel
621%doc COPYING*
622%doc GPL
623%doc LEGAL
624%doc README.EXT
625%lang(ja) %doc README.EXT.ja
626
627%config(noreplace) %{_sysconfdir}/rpm/macros.ruby
628
629%{_includedir}/*
630%{_libdir}/libruby.so
631%{_libdir}/pkgconfig/ruby-%{major_minor_version}.pc
632
633%files libs
634%doc COPYING
635%lang(ja) %doc COPYING.ja
636%doc GPL
637%doc LEGAL
638%doc README
639%lang(ja) %doc README.ja
640%doc NEWS
641%doc doc/NEWS-*
642%{ruby_sitelibdir}
643%{ruby_sitearchdir}
644%{ruby_vendorlibdir}
645%{ruby_vendorarchdir}
646
647# List all these files explicitly to prevent surprises
648# Platform independent libraries.
649%dir %{ruby_libdir}
650%{ruby_libdir}/*.rb
651%exclude %{ruby_libdir}/*-tk.rb
652%exclude %{ruby_libdir}/irb.rb
653%exclude %{ruby_libdir}/tcltk.rb
654%exclude %{ruby_libdir}/tk*.rb
655%{ruby_libdir}/cgi
656%{ruby_libdir}/date
657%{ruby_libdir}/digest
658%{ruby_libdir}/dl
659%{ruby_libdir}/drb
660%{ruby_libdir}/fiddle
661%exclude %{ruby_libdir}/gems
662%exclude %{ruby_libdir}/irb
663%{ruby_libdir}/matrix
664%{ruby_libdir}/net
665%{ruby_libdir}/openssl
666%{ruby_libdir}/optparse
667%{ruby_libdir}/psych
668%{ruby_libdir}/racc
669%{ruby_libdir}/rbconfig
670%{ruby_libdir}/rexml
671%{ruby_libdir}/rinda
672%{ruby_libdir}/ripper
673%{ruby_libdir}/rss
674%{ruby_libdir}/shell
675%{ruby_libdir}/syck
676%{ruby_libdir}/test
677%exclude %{ruby_libdir}/tk
678%exclude %{ruby_libdir}/tkextlib
679%{ruby_libdir}/uri
680%{ruby_libdir}/webrick
681%{ruby_libdir}/xmlrpc
682%{ruby_libdir}/yaml
683
684# Platform specific libraries.
685%{_libdir}/libruby.so.*
686%dir %{ruby_libarchdir}
687%{ruby_libarchdir}/continuation.so
688%{ruby_libarchdir}/coverage.so
689%{ruby_libarchdir}/curses.so
690%{ruby_libarchdir}/date_core.so
691%{ruby_libarchdir}/dbm.so
692%dir %{ruby_libarchdir}/digest
693%{ruby_libarchdir}/digest.so
694%{ruby_libarchdir}/digest/bubblebabble.so
695%{ruby_libarchdir}/digest/md5.so
696%{ruby_libarchdir}/digest/rmd160.so
697%{ruby_libarchdir}/digest/sha1.so
698%{ruby_libarchdir}/digest/sha2.so
699%dir %{ruby_libarchdir}/dl
700%{ruby_libarchdir}/dl.so
701%{ruby_libarchdir}/dl/callback.so
702%dir %{ruby_libarchdir}/enc
703%{ruby_libarchdir}/enc/big5.so
704%{ruby_libarchdir}/enc/cp949.so
705%{ruby_libarchdir}/enc/emacs_mule.so
706%{ruby_libarchdir}/enc/encdb.so
707%{ruby_libarchdir}/enc/euc_jp.so
708%{ruby_libarchdir}/enc/euc_kr.so
709%{ruby_libarchdir}/enc/euc_tw.so
710%{ruby_libarchdir}/enc/gb18030.so
711%{ruby_libarchdir}/enc/gb2312.so
712%{ruby_libarchdir}/enc/gbk.so
713%{ruby_libarchdir}/enc/iso_8859_1.so
714%{ruby_libarchdir}/enc/iso_8859_10.so
715%{ruby_libarchdir}/enc/iso_8859_11.so
716%{ruby_libarchdir}/enc/iso_8859_13.so
717%{ruby_libarchdir}/enc/iso_8859_14.so
718%{ruby_libarchdir}/enc/iso_8859_15.so
719%{ruby_libarchdir}/enc/iso_8859_16.so
720%{ruby_libarchdir}/enc/iso_8859_2.so
721%{ruby_libarchdir}/enc/iso_8859_3.so
722%{ruby_libarchdir}/enc/iso_8859_4.so
723%{ruby_libarchdir}/enc/iso_8859_5.so
724%{ruby_libarchdir}/enc/iso_8859_6.so
725%{ruby_libarchdir}/enc/iso_8859_7.so
726%{ruby_libarchdir}/enc/iso_8859_8.so
727%{ruby_libarchdir}/enc/iso_8859_9.so
728%{ruby_libarchdir}/enc/koi8_r.so
729%{ruby_libarchdir}/enc/koi8_u.so
730%{ruby_libarchdir}/enc/shift_jis.so
731%dir %{ruby_libarchdir}/enc/trans
732%{ruby_libarchdir}/enc/trans/big5.so
733%{ruby_libarchdir}/enc/trans/chinese.so
734%{ruby_libarchdir}/enc/trans/emoji.so
735%{ruby_libarchdir}/enc/trans/emoji_iso2022_kddi.so
736%{ruby_libarchdir}/enc/trans/emoji_sjis_docomo.so
737%{ruby_libarchdir}/enc/trans/emoji_sjis_kddi.so
738%{ruby_libarchdir}/enc/trans/emoji_sjis_softbank.so
739%{ruby_libarchdir}/enc/trans/escape.so
740%{ruby_libarchdir}/enc/trans/gb18030.so
741%{ruby_libarchdir}/enc/trans/gbk.so
742%{ruby_libarchdir}/enc/trans/iso2022.so
743%{ruby_libarchdir}/enc/trans/japanese.so
744%{ruby_libarchdir}/enc/trans/japanese_euc.so
745%{ruby_libarchdir}/enc/trans/japanese_sjis.so
746%{ruby_libarchdir}/enc/trans/korean.so
747%{ruby_libarchdir}/enc/trans/single_byte.so
748%{ruby_libarchdir}/enc/trans/transdb.so
749%{ruby_libarchdir}/enc/trans/utf8_mac.so
750%{ruby_libarchdir}/enc/trans/utf_16_32.so
751%{ruby_libarchdir}/enc/utf_16be.so
752%{ruby_libarchdir}/enc/utf_16le.so
753%{ruby_libarchdir}/enc/utf_32be.so
754%{ruby_libarchdir}/enc/utf_32le.so
755%{ruby_libarchdir}/enc/windows_1251.so
756%{ruby_libarchdir}/etc.so
757%{ruby_libarchdir}/fcntl.so
758%{ruby_libarchdir}/fiber.so
759%{ruby_libarchdir}/fiddle.so
760%{ruby_libarchdir}/gdbm.so
761%{ruby_libarchdir}/iconv.so
762%dir %{ruby_libarchdir}/io
763%{ruby_libarchdir}/io/nonblock.so
764%{ruby_libarchdir}/io/wait.so
765%dir %{ruby_libarchdir}/mathn
766%{ruby_libarchdir}/mathn/complex.so
767%{ruby_libarchdir}/mathn/rational.so
768%{ruby_libarchdir}/nkf.so
769%{ruby_libarchdir}/objspace.so
770%{ruby_libarchdir}/openssl.so
771%{ruby_libarchdir}/pathname.so
772%{ruby_libarchdir}/psych.so
773%{ruby_libarchdir}/pty.so
774%dir %{ruby_libarchdir}/racc
775%{ruby_libarchdir}/racc/cparse.so
776%{ruby_libarchdir}/rbconfig.rb
777%{ruby_libarchdir}/readline.so
778%{ruby_libarchdir}/ripper.so
779%{ruby_libarchdir}/sdbm.so
780%{ruby_libarchdir}/socket.so
781%{ruby_libarchdir}/stringio.so
782%{ruby_libarchdir}/strscan.so
783%{ruby_libarchdir}/syck.so
784%{ruby_libarchdir}/syslog.so
785%exclude %{ruby_libarchdir}/tcltklib.so
786%exclude %{ruby_libarchdir}/tkutil.so
787%{ruby_libarchdir}/zlib.so
788
789%files rubygems
790%{_bindir}/gem
791%{rubygems_dir}
792%{gem_dir}
793%exclude %{gem_dir}/gems/*
794%{_exec_prefix}/lib*/gems
795%exclude %{_exec_prefix}/lib*/gems/exts/bigdecimal-%{bigdecimal_version}
796%exclude %{_exec_prefix}/lib*/gems/exts/io-console-%{io_console_version}
797%exclude %{_exec_prefix}/lib*/gems/exts/json-%{json_version}
798%exclude %{gem_dir}/gems/rake-%{rake_version}
799%exclude %{gem_dir}/gems/rdoc-%{rdoc_version}
800%exclude %{gem_dir}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
801%exclude %{gem_dir}/specifications/io-console-%{io_console_version}.gemspec
802%exclude %{gem_dir}/specifications/json-%{json_version}.gemspec
803%exclude %{gem_dir}/specifications/minitest-%{minitest_version}.gemspec
804%exclude %{gem_dir}/specifications/rake-%{rake_version}.gemspec
805%exclude %{gem_dir}/specifications/rdoc-%{rdoc_version}.gemspec
806
807%files rubygems-devel
808%config(noreplace) %{_sysconfdir}/rpm/macros.rubygems
809
810%files -n rubygem-rake
811%{_bindir}/rake
812%{gem_dir}/gems/rake-%{rake_version}
813%{gem_dir}/specifications/rake-%{rake_version}.gemspec
814%{_mandir}/man1/rake.1*
815
816%files irb
817%{_bindir}/irb
818%{ruby_libdir}/irb.rb
819%{ruby_libdir}/irb
820%{_mandir}/man1/irb.1*
821
822%files -n rubygem-rdoc
823%{_bindir}/rdoc
824%{_bindir}/ri
825%{gem_dir}/gems/rdoc-%{rdoc_version}
826%{gem_dir}/specifications/rdoc-%{rdoc_version}.gemspec
827%{_mandir}/man1/ri*
828
829%files doc
830%doc README
831%lang(ja) %doc README.ja
832%doc ChangeLog
833%doc doc/ChangeLog-*
834%{_datadir}/ri
835%{_docdir}/ruby
836
837%files -n rubygem-bigdecimal
838%{ruby_libdir}/bigdecimal
839%{ruby_libarchdir}/bigdecimal.so
840%{gem_extdir}/exts/bigdecimal-%{bigdecimal_version}
841%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}
842%{gem_dir}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
843
844%files -n rubygem-io-console
845%{ruby_libdir}/io
846%{ruby_libarchdir}/io/console.so
847%{gem_extdir}/exts/io-console-%{io_console_version}
848%{gem_dir}/gems/io-console-%{io_console_version}
849%{gem_dir}/specifications/io-console-%{io_console_version}.gemspec
850
851%files -n rubygem-json
852%{gem_extdir}/exts/json-%{json_version}
853%{gem_dir}/gems/json-%{json_version}
854%{gem_dir}/specifications/json-%{json_version}.gemspec
855
856%files -n rubygem-minitest
857%{gem_dir}/gems/minitest-%{minitest_version}
858%{gem_dir}/specifications/minitest-%{minitest_version}.gemspec
859
860%files tcltk
861%{ruby_libdir}/*-tk.rb
862%{ruby_libdir}/tcltk.rb
863%{ruby_libdir}/tk*.rb
864%{ruby_libarchdir}/tcltklib.so
865%{ruby_libarchdir}/tkutil.so
866%{ruby_libdir}/tk
867%{ruby_libdir}/tkextlib
868
869%if %{with emacsen}
870%files mode
871%defattr(-, root, root)
872%doc misc/README
873%{_datadir}/emacs/site-lisp/%{rbmode}
874%{_prefix}/lib/emacsen-common/packages/install/*
875%{_prefix}/lib/emacsen-common/packages/remove/*
876%endif
877
878%changelog
879* Wed Dec 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.362-5
880- update to 1.9.3-p362
881
882* Thu Nov 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.327-4
883- remove ruby_abi from gem_dir
884
885* Sun Nov 11 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.327-3
886- update to 1.9.3-p327
887- add patch10 to skip network related test
888- add patch11 to skip test_str_crypt (upstream bug)
889
890* Fri Oct 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.286-2
891- fix gem_extdir to include ruby_abi number
892- fix macros.ruby to include ruby_abi number
893- include site_ruby dir
894
895* Tue Oct 23 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.286-1
896- update to 1.9.3-p286
897- rebase with fedora package
898  - change filesystem structure compatible with Vine ruby package
899  - rename rubygems to ruby-rubygems
900  - modify ruby filesystem structure
901    - /usr{,/local}/share/ruby for arch-independent files
902    - /usr{,/local}/lib{,64}/ruby for arch-dependent files
903    - move gems to /usr/share/gems, /usr/lib{,64}/gems
904  - merge rubygems, rake to ruby sub-package
905  - add subpackages for ruby standard gems
906
907* Sat Jun 30 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1-1
908- update to 1.8.7-p370
909
910* Sun May 06 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.358-1
911- update to 1.8.7-p358
912- add patch1100 to build with glibc-2.14
913
914* Mon Feb 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.334-1
915- update to 1.8.7-p334
916
917* Tue Jan 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.330-1
918- update to 1.8.7-p330
919- change License tag (Ruby or GPLv2)
920
921* Tue Feb 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.249-1
922- update to 1.8.7-p249
923- rebuild with db4-4.8.0
924- drop unneccesary patches: 809, 1001, 1002, 1003, 1004
925
926* Tue Sep 08 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.174-3
927- move noarch ruby libraries to /usr/lib/ruby.
928  - add Patch960
929    - add --with-ruby-prefix=%%{_prefix}/lib
930- add deprecated search path for 64bit arch.
931  - --with-search-path=%%{_libdir}/ruby/%%{rubyxver}
932
933* Wed Aug 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.174-2
934- import Patch100[12345] from debian package
935  * Added debian/patches/090811_thread_and_select.dpatch:
936    threads may hangup when IO.select called from two or more threads.
937  * Added debian/patches/090812_finalizer_at_exit.dpatch:
938    finalizers should be run at exit (Closes: #534241)
939  * Added debian/patches/090812_class_clone_segv.dpatch:
940    avoid segv when an object cloned.  (Closes: #533329)
941  * Added debian/patches/090812_eval_long_exp_segv.dpatch:
942    fix segv when eval a long expression.  (Closes: #510561)
943  * Added debian/patches/090812_openssl_x509_warning.dpatch:
944    suppress warning from OpenSSL::X509::ExtensionFactory.  (Closes: #489443)
945
946* Tue Jun 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.174-1
947- new upstream release 1.8.7-p174
948 - fix CVE-2009-1904
949   http://www.ruby-lang.org/en/news/2009/06/09/dos-vulnerability-in-bigdecimal/
950
951* Mon Jun 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.160-1
952- new upstream version 1.8.7-p160.
953- drop unneccesary patches: Patch807, Patch1010
954
955* Mon Sep 22 2008 NAKAMURA Kenta <kenta@vinelinux.org> 1.8.7.72-2
956- updated Patch950: ruby-1.8.7-p72-multilib.patch
957
958* Thu Sep 11 2008 akira yamada <akira@vinelinux.org> 1.8.7.72-1
959- new upstream version 1.8.7-p72.
960- droped unnecessary patches: Patch802.
961
962* Thu Sep 11 2008 akira yamada <akira@vinelinux.org> 1.8.6.287-1
963- new upstream version 1.8.6-p287.
964- droped unnecessary patches: Patch805, Patch1000.
965- updated Patch808 for 1.8.6-p287.
966- added Patch809: rcov may crash because of backwards incompatibility.
967  (backported r14826:15141 of trunk).
968- added Patch1010 to fix CVE-2008-3790.
969
970* Sat Sep  6 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.6.111-1
971- applied new versioning policy
972- spec in UTF-8
973- removed BuildRequires: XOrg-devel
974
975* Wed Oct 24 2007 akira yamada <akira@vinelinux.org> 1.8.6.111-0vl2
976- added ruby-1.8.6.111-rexml-document-transitive.patch:
977  - fixed: Document#write undefined local variable or method `transitive'.
978
979* Tue Oct 23 2007 akira yamada <akira@vinelinux.org> 1.8.6.111-0vl1
980- new upstream version 1.8.6.111.
981- added ruby-1.8.6.111-CVE-2007-5162.patch:
982  - security fixes for CVE-2007-5162.  It is backported r13657 from ruby_1_8
983    branch.
984- added ruby-1.8.6.111-ruby-bugs-11507.patch:
985  - ConditionVariable#wait may raise "not owner" exceptions.
986- added ruby-1.8.6.111-sync_try_lock_always_fail.patch:
987  - Sync#try_lock always fails due to wrong variable name.
988
989* Thu May 17 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.6-0vl4
990- rebuild with new openssl
991
992* Thu May 10 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.6-0vl3
993- rebuilt with new toolchain and db4-4.3.x
994
995* Sun Mar 25 2007 NAKAMURA Kenta <kenta@vinelinux.org> 1.8.6-0vl2
996- modified emacsen-common path
997
998* Mon Mar 19 2007 akira yamada <akira@vinelinux.org> 1.8.6-0vl1
999- new upstream version 1.8.6.
1000
1001* Mon Dec 04 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.5-0vl1.1
1002- add pacth1000 for fix cgi.rb issue (JVN#84798830)
1003
1004* Wed Nov 1 2006 akira yamada <akira@ruby-lang.org> 1.8.5-0vl1
1005- new upstream version 1.8.5.
1006- added ruby-1.8.5-rexml_encoding.patch:
1007  - REXML should accept UTF-16.  [ruby-list:42737]
1008- added ruby-1.8.5-rdoc.patch:
1009  - Don't unescape HTML in HtmlFormatter.  Submitted by Kent Sibilev <ksruby
1010    at gmail.com>.  [ruby-core:08392].
1011  - lib/rdoc/generators/ri_generator.rb: do not chdir twice.
1012- added ruby-1.8.5-hash_memory_reak.patch:
1013  - hash.c (rb_hash_s_create): fixed memory leak, based on the patch by Kent
1014    Sibilev <ksruby at gmail.com>.  fixed: [ruby-talk:211233]
1015- added ruby-1.8.5-top_cref.patch:
1016  - eval.c (ruby_init): rename top_cref to ruby_top_cref and export, along
1017    with ruby_cref, for use by the sandbox. [ruby-core:08762]
1018- added ruby-1.8.5-tcltk.patch:
1019  - ext/tk/lib/tkextlib/blt.rb: double dashes (--) option doesn't work
1020    properly on some versions of BLT (wrong description on the manual of
1021    `blt::bgexec'?).
1022  - ext/tk/lib/tk/font.rb: TkFont#current_configinfo() doesn't work on
1023    Tcl/Tk8.x.
1024  - ext/tk/lib/tk.rb: update RELEASE_DATE.
1025- added ruby-1.8.5-acl.patch:
1026  - patterns which include '*' should not cause getaddress() call.
1027    [ruby-dev:29406]
1028- added ruby-1.8.5-socket.patch:
1029  - ext/socket/extconf.rb: check arpa/inet.h for ntohs.
1030  - ext/socket/socket.c: include arpa/inet.h if available.
1031  - ext/socket/socket.c (ruby_connect): sockerrlen should be socklen_t.
1032- added ruby-1.8.5-exec_vs_nullbyte.patch:
1033  - io.c (pipe_open): null character should be saved for command name.
1034    [ruby-dev:29421]
1035  - process.c (proc_spawn): ditto.
1036  - process.c (proc_spawn_n): ditto.
1037  - process.c (rb_f_system): ditto.
1038- added ruby-1.8.5-mimedec.patch:
1039  - CGI#out should not decode base64 strings.  [ruby-dev:29284]
1040  - Kconv::toeuc should decode base64 strings. (reverted to old behaviour for
1041    compatibility.)  [ruby-dev:29505]
1042  - corrected regexp for EUC-JP (Kconv::RegexpEucjp).  [ruby-dev:29344]
1043- added ruby-1.8.5-strftime_nullbyte.patch:
1044  - Time#strftime should save null character.  [ruby-dev:29422]
1045- added ruby-1.8.5-dbm_extconf.patch:
1046  - ext/dbm/extconf.rb: create makefile according to the result of check for
1047    dbm header.  fixed: [ruby-dev:29445]
1048  - ext/dbm/extconf.rb: allow multiple candidates for dbm-type.
1049- added ruby-1.8.5-check_sticky_bit.patch:
1050  - file.c (path_check_0): check if sticky bit is set on parent directories
1051    for executable path.  fixed: [ruby-dev:29415]
1052  - Fix documentation submitted by Rick Ohnemus.  ruby-Bugs-5529.
1053    [ruby-core:08725]
1054- added ruby-1.8.5-float_hash.patch:
1055  - improve hash collision of Float objects.  [ruby-dev:29352]
1056- added ruby-1.8.5-time_vardecl.patch:
1057  - time.c (time_to_s): variable declaration after an execution statement.
1058- added ruby-1.8.5-bignum.patch:
1059  - numeric.c (fix_plus): addition in Fixnum will never overflow long.  a
1060    patch from Ondrej Bilka <neleai at seznam.cz>.  [ruby-core:08794]
1061  - numeric.c (fix_minus): ditto.
1062  - bignum.c (rb_big_pow): eagerly truncate resulting bignum.
1063    [ruby-core:08794]
1064- added ruby-1.8.5-migration_macro.patch:
1065  - ruby.h (RSTRING_PTR): add migration macro.
1066  - ruby.h (RARRAY_PTR): ditto.
1067- added ruby-1.8.5-webrick_cookie.patch:
1068  - lib/webrick/cookie.rb (WEBrick::Cookie.parse_set_cookies): new method to
1069    parse multiple cookies per Set-Cookie header.  Thanks to Aaron Patterson
1070    <aaron_patterson at speakeasy.net>.  [ruby-core:08802]
1071- added ruby-1.8.5-suppress_warnings.patch:
1072  - mkconfig.rb, ext/extmk.rb, lib/mkmf.rb: suppress warnings with $VERBOSE.
1073  - ext/extmk.rb: Proc#call does not pass the block in 1.8.
1074  - Makefile.in, win32/Makefile.sub (MINIRUBY): append MINIRUBYOPT.
1075- added ruby-1.8.5-pstore_binmode.patch:
1076  - lib/pstore.rb: open all in binary mode, and get rid of the quirk of
1077    msvcrt.  fixed: [ruby-dev:29518]
1078- added ruby-1.8.5-testunit_rescue.patch:
1079  - Rescue Exception in Test::Unit::TestCase#run.  [ruby-core:08783]
1080- added ruby-1.8.5-prevent_loading_twice.patch:
1081  - eval.c (rb_require_safe): prevent loading twice from extensions.  fixed:
1082    [ruby-dev:29523]
1083- added ruby-1.8.5-prohibit_intern_tainted_string.patch:
1084  - string.c (rb_str_intern): prohibit interning tainted string.
1085- added ruby-1.8.5-ruby_mode.patch:
1086  - misc/ruby-mode.el (ruby-parse-partial): better here-doc support.  a patch
1087    from Marshall T. Vandegrift <llasram at gmail.com>.  [ruby-core:08804]
1088- added ruby-1.8.5-readme_ext.patch:
1089  - README.EXT: English adjustment.  [ruby-core:08851] [ruby-core:08852]
1090    [ruby-core:08855]
1091- added ruby-1.8.5-check_safe_level_for_str_intern.patch:
1092  - string.c (rb_str_intern): raise SecurityError only when $SAFE level is
1093    greater than zero.  [ruby-core:08862]
1094  - parse.y (rb_interned_p): new function to check if a string is already
1095    interned.
1096  - object.c (str_to_id): use rb_str_intern().
1097- added ruby-1.8.5-pty.patch:
1098  - ext/pty/pty.c (establishShell): parent pid is not used.
1099  - ext/pty/pty.c (freeDevice): not used.
1100  - ext/pty/pty.c (get_device_once): removed garbage right brace.
1101  - ext/pty/pty.c (establishShell): remove remaining unused line.
1102- added ruby-1.8.5-imap_extraspace.patch:
1103  - net/imap can accept extra space in server responses.  The patch from Tom
1104    Soderlund.
1105- added ruby-1.8.5-rdoc_nameerror.patch:
1106  - rdoc/ri/ri_options.rb should require 'rdoc/ri/ri_paths'.
1107- added ruby-1.8.5-gdbm_docs.patch and updated ruby-1.8.5-.document.patch:
1108  - added GDBM documents.
1109- added ruby-1.8.5-etc_uid_t.patch:
1110  - etc.c should use uid_t instead of int.  [ruby-core:08897]
1111- added ruby-1.8.5-cgi_empty_content.patch:
1112  - invalid multipart data can make cgi.rb infinite loop and CPU consumption.
1113    (CVE-2006-5467)
1114- added ruby-1.8.5-sandbox.patch:
1115  - added Thread#kill!.  [ruby-core:08768]
1116- added ruby-1.8.5-update_docs.patch:
1117  - small fixes and updates for rdocs.
1118- added ruby-1.8.5-array.patch:
1119  - fixed a potential leaks caused by shift.  [ruby-talk:216055]
1120    [ruby-core:08922] [ruby-list:42907]
1121- added ruby-1.8.5-dir_checkdir.patch:
1122  - internal existence test for "/" fails anytime. [ruby-core:08913]
1123- added ruby-1.8.5-mkmf.patch:
1124  - set default $LDFLAGS.  [ruby-talk:216256]
1125  - check function pointer first and macro next.  [ruby-core:08949]
1126  - fixed the bug of handling COMMON_MACROS.
1127- added ruby-1.8.5-jcode.patch:
1128  - succ! in jcode.rb doesn't work on $KCODE == 'n'.  [ruby-talk:216845]
1129- added ruby-1.8.5-eval.patch:
1130  - check protected visibility based on real self, not ruby_frame->self.
1131    [ruby-talk:217822]
1132- added ruby-1.8.5-include_module.patch:
1133  - remove unnecessary check.  [ruby-talk:218402]
1134- added ruby-1.8.5-bignum_shift.patch:
1135  - a bug in right shift of negative bignums.  [ruby-core:09020]
1136- added ruby-1.8.5-rexml_enc.patch:
1137  - spaces are allowed around equal sign.  [ruby-core:09032]
1138- added ruby-1.8.5-wrong_id_check.patch:
1139  - wrong id check.  [ruby-core:09158]
1140  - typo fixed.  [ruby-core:09168]
1141- added ruby-1.8.5-rb_warning.patch:
1142  - some error message may contain format specifiers.  [ruby-dev:29657]
1143- added ruby-1.8.5-parse.y.patch.patch:
1144  - no need to re-create NODE_SELF() again.  [ruby-core:09177]
1145  - use particular enums.  [ruby-core:09221]
1146- added ruby-1.8.5-signal.patch:
1147  - handle SIGTERM.  [ruby-list:42895]
1148  - don't set SA_RESTART.  a backport from the HEAD.  [ruby-talk:220937]
1149    [ruby-talk:147220]
1150- added ruby-1.8.5-string_tainted.patch:
1151  - should be infected with only original string, but not the shared string.
1152    [ruby-core:09152]
1153  - strnig.c (rb_str_new4): keep shared string untainted when orignal string
1154    is tainted.  [ruby-dev:29672]
1155- added ruby-1.8.5-configure_alloca.patch:
1156  - alloca is broken; use C_ALLOCA instead.  [ruby-dev:29416]
1157- added ruby-1.8.5-openssl.patch:
1158  - ossl_pkcs7_verify, ossl_spki_initialize: should clear error.
1159  - Use digest/md5 instead of obsolete md5.
1160- added ruby-1.8.5-imap_nomodseq.patch:
1161  - net/imap chokes on NOMODSEQ response. [ruby-Bugs#6026]
1162- added ruby-1.8.5-soap.patch:
1163  - huge memory usage with the Ebay API.
1164    <http://dev.ctor.org/soap4r/ticket/224>
1165- applied debian/patches/149_bignum_to_s.patch
1166  - should preserve leading zero information for negative %b and %x.
1167    [ruby-talk:221347]
1168- applied debian/patches/150_time_dup.patch
1169  - duplicate the class of original time.  [ruby-core:09357]
1170- applied debian/patches/151_super.patch
1171  - fixed bug of zsuper with both of opt and rest.  [ruby-list:42928]
1172- applied debian/patches/152_dir_glob.patch
1173  - get rid of possible memory leak.
1174
1175* Tue Sep 12 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.4-0vl5
1176- changed ruby-mode Group to Appliations/Editors/Emacs <BTS:VineLinux:163>
1177- changed ruby-doc Group to Appliations/Documentation  <BTS:VineLinux:163>
1178- changed libruby Group to System Environment/Libraries
1179- rebuilt with openssl-0.9.7k
1180
1181* Sat Jul 29 2006 NAKAMURA Kenta <kenta@vinelinux.org> 1.8.4-0vl4
1182- x86_64 architecture support
1183  - added ruby-1.8.4-multilib.patch
1184  - added ruby-1.8.4-tcltk-multilib.patch
1185  - modified emacsen-common path
1186
1187* Fri Jul 14 2006 akira yamada <akira@vinelinux.org> 1.8.4-0vl3
1188- added ruby-1.8.4-135.patch:
1189  - should check if chars are multibyte for regexp-i option.
1190  [ruby-dev:28598] [ruby-list:42096]
1191- added ruby-1.8.4-136.patch:
1192  - jcode.rb breaks String#tr_s.  [ruby-list:42090]
1193- added ruby-1.8.4-137.patch:
1194  - Array#pack supports CRLF newlines.  [ruby-dev:28601]
1195- added ruby-1.8.4-138.patch:
1196  - should initialize variables first.  [ruby-core:07785] [ruby-core:07810]
1197  - avoid accessing uninitialized array element.  [ruby-core:07809]
1198- added ruby-1.8.4-139.patch:
1199  - Numeric#div should use floor rather than Interger.  [ruby-dev:28589]
1200  - the first element of Float#divmod should be an integer.
1201    [ruby-dev:28589]
1202- added ruby-1.8.4-140.patch:
1203  - avoids memory leak of YAML.  [ruby-core:7808]
1204- added ruby-1.8.4-141.patch:
1205  - fixes out of bounds array access.  [ruby-core:07823]
1206- added ruby-1.8.4-142.patch:
1207  - use AF_INET6 for nameservers containing colons.
1208- added ruby-1.8.4-143.patch:
1209  - should not modify untainted objects in safe levels higher than 3.
1210  - should not allow modifying literal regexps.
1211- added ruby-1.8.4-144.patch:
1212  - should not close untainted dir stream in $SAVE >= 4.
1213  - should not call a vararg function rb_sys_warning() indirectly.
1214    [ruby-core:07886]
1215- added ruby-1.8.4-145.patch:
1216  - should round for usec floating number.  [ruby-core:07896]
1217- added ruby-1.8.4-146.patch:
1218  - constant in Fixnum access with instance_eval dumps core.
1219    [ruby-dev:28327]
1220  - inspect for overriden method.  [ruby-dev:28636]
1221  - set_trace_func dumps core.  [ruby-dev:28632]
1222  - set_trace_func: binding has wrong self value for return events.
1223    [ruby-core:07928]
1224- added ruby-1.8.4-147.patch:
1225  - fixed typo of openssl/ssl.rb.
1226- added ruby-1.8.4-148.patch:
1227  - fixed memory leak and alignment bug of the dl library.  [ruby-dev:28665]
1228- added ruby-1.8.4-149.patch:
1229  - new method: IO#read_nonblock, IO#write_nonblock,
1230    Socket#connect_nonblock, Socket#accept_nonblock and
1231    Socket#recvfrom_nonblock.  [ruby-core:7917]
1232  - use rb_read_pending instead of rb_io_read_pending.  [ruby-dev:28663]
1233  - new method: IPSocket#recvfrom_nonblock, TCPServer#accept_nonblock,
1234    UNIXServer#accept_nonblock.
1235  - reject non-AF_UNIX sockaddr.  [ruby-dev:28691]
1236- added ruby-1.8.4-mkconfig.rb.patch:
1237  - mkconfig.rb should remove "|#_!!_#|" and unquote commas generated by
1238    autoconf > 2.59 (CVS).
1239
1240* Wed May 10 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.4-0vl2
1241- dirty fix to rb_arch macro for ppc
1242  (_target_cpu should be powerpc, but rpm macro will translate to ppc anyhow)
1243  this fix will be removed after rpm-4.4 macro issue is cleared up.
1244
1245* Sun Apr 23 2006 akira yamada <akira@vinelinux.org> 1.8.4-0vl1
1246- new upstream version 1.8.4.
1247- updated ruby-refm-rdp.
1248- applied following bug-fix-patches.
1249- added ruby-1.8.4-100.patch:
1250  - fixed a bug in constant reference during instance_eval for some type of
1251    objects.  [yarv-dev:707]
1252- added ruby-1.8.4-101.patch:
1253  - allow dynamic symbols (:"...") to undef and alias.  [ruby-dev:28105]
1254- added ruby-1.8.4-102.patch:
1255  - (openssl) treat wildcard character in commonName.  [ruby-dev:28121]
1256  - (openssl) should use "rb_str_new(0, 0)" to make empty string.
1257- added ruby-1.8.4-103.patch:
1258  - callcc or thread may leak memory  [ruby-Bugs:1364] [ruby-dev:28154]
1259    [ruby-dev:28172]
1260  - mark objects refered from aborting threads.  [ruby-dev:28190]
1261- added ruby-1.8.4-104.patch:
1262  - avoid a GC problem with RUBY_ALWAYS_GC= ./ruby -e ''.
1263  - declare rb_gc_abort_threads.
1264- added ruby-1.8.4-105.patch:
1265  - should not recycle scope object used in a thread.  [ruby-dev:28177]
1266- added ruby-1.8.4-106.patch (urgency medium):
1267  - get rid of segfault on syntax error.  [ruby-core:07070]
1268- added ruby-1.8.4-107.patch:
1269  - fixed typo in webrick/httpservlet/filehandler.rb: fixed typo.
1270    [ruby-core:7075]
1271- added ruby-1.8.4-108.patch (urgency medium):
1272  - YAML loading of quoted Symbols broken.  [ruby-Bugs:2535]
1273  - YAML could not load Bignum in ruby 1.8.3/1.8.4.  [ruby-core:6115]
1274  - YAML could not dump Subclass of Numeric properly.  [ruby-core:7047]
1275  - should be able to load "!ruby/object:Bignum" syntax 1.8.3 dumped.
1276    [ruby-core:6159]
1277  - workaround for SEGV.  ex: YAML.load("!map:B {}").  [ruby-core:7217]
1278  - fixed a typo in yaml.rb.  [ruby-talk:165285] [ruby-core:6995]
1279  - YAML should output complex key mark even if map's key is empty seq/map.
1280    [ruby-core:7129]
1281- added ruby-1.8.4-109.patch:
1282  - fixed possibility of memmory corruption.
1283- added ruby-1.8.4-111.patch:
1284  - don't clobber %l7 of SPARC if enable-shared.
1285  - workaround for FreeBSD/i386 getcontext/setcontext bug.  [ruby-dev:28263]
1286- added ruby-1.8.4-112.patch:
1287  - FileUtils#mv should remove file after copying.  [ruby-dev:28223]
1288- added ruby-1.8.4-113.patch:
1289  - avoids compile error (use system routine if provided).
1290    [ruby-core:07195]
1291- added ruby-1.8.4-114.patch:
1292  - need not to protect $SAFE value.  [ruby-core:07177]
1293- added ruby-1.8.4-115.patch:
1294  - (2**32).to_s(2) fails with exception where sizeof(int) == 4 <
1295    sizeof(long). [ruby-core:7300] [ruby-Bugs:3438]
1296- added ruby-1.8.4-116.patch:
1297  - PStore#fetch should return default value if name is not found.
1298    [ruby-core:7304]
1299- added ruby-1.8.4-117.patch:
1300  - defined RSTRUCT_LEN and RSTRUCT_PTR for source level compatibility with
1301    ruby 1.9.
1302  - alias RbConfig for Config for compatibility with ruby 1.9.
1303- added ruby-1.8.4-118.patch:
1304  - should not access ruby objects in finalizer of Zlib.  [ruby-dev:28286]
1305- added ruby-1.8.4-119.patch:
1306  - no need to push ruby_class.  [ruby-dev:28176] [ruby-dev:28580]
1307  - check if ruby_cbase is nil (during instance_eval for objects cannot have
1308    singleton classes, e.g. fixnums and symbols).  [ruby-dev:28178]
1309    [ruby-dev:28580] [ruby-dev:28582]
1310  - argument update propagation.  [ruby-dev:28044]
1311  - avoid unnecessary extra argument.  [ruby-core:07366] [ruby-dev:28583]
1312    [ruby-dev:28583]
1313- added ruby-1.8.4-120.patch:
1314  - support non 32bit time_t environments.
1315- added ruby-1.8.4-121.patch:
1316  - zsuper (with define_method) dumps core.  [ruby-dev:28181]
1317- added ruby-1.8.4-122.patch:
1318  - should no singleton classes for true, false, and nil.  [ruby-dev:28186]
1319- added ruby-1.8.4-124.patch:
1320  - sleep should always sleep for specified amount of time.
1321    [ruby-talk:180067]
1322- added ruby-1.8.4-125.patch:
1323  - unpack("l") did not work where sizeof(long) != 4.  [ruby-talk:180024]
1324  - fixed integer overflow on template "w" of pack.  [ruby-talk:180126]
1325- added ruby-1.8.4-126.patch:
1326  - removed unnecessary MY_FILE_NAME constant.  [ruby-core:07376]
1327- added ruby-1.8.4-127.patch:
1328  - odd break behavior.  [ruby-talk:180420]
1329- added ruby-1.8.4-128.patch:
1330  - unexpected syntax error.  [ruby-talk:180648]
1331- added ruby-1.8.4-129.patch:
1332  - fixed that irb can't parse /\^/. [ruby-dev:28404] [ruby-Bugs:3302]
1333  - rdoc could not handle /\^/.  [ruby-talk:181631] [ruby-dev:28404]
1334- added ruby-1.8.4-130.patch:
1335  - symbols overlap ordinary objects.  [ruby-core:07414]
1336  - heap_slots may overflow.
1337  - align VALUE with sizeof(RVALUE) globally.  [ruby-talk:178364]
1338    [ruby-core:7305]
1339- added ruby-1.8.4-131.patch:
1340    - should not re-schedule output from KILLED thread.
1341- added ruby-1.8.4-133.patch:
1342  - reports aliased method names in a generated backtrace.  [ruby-dev:28471]
1343  - insecure calling should be checked for non NODE_SCOPE method invocations
1344    too.
1345  - should preserve the current safe level as well as method definition.
1346- added ruby-1.8.4-134.patch:
1347  - (bignum) second operand may be too big even if it's a Fixnum.
1348    [ruby-talk:187984]
1349- libruby1.8-dbg: applied a patch from Matthew Palmer to provide detached
1350  symbols.
1351
1352* Wed Nov  9 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.1-0vl22
1353- added BuildRequires: zlib-devel
1354
1355* Sat Jul  2 2005 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 1.8.1-0vl21
1356- rebuild for VineSeed
1357- rename BuildRequires: XFree86-devel to XOrg-devel
1358
1359* Thu Jun 23 2005 akira yamada <akira@vinelinux.org> 1.8.1-0vl20.1
1360- added ruby-1.8.2pre2-xmlrpc-util.rb.patch:
1361  - fixed arbitrary command execution on XMLRPC server.
1362    (CAN-2005-1992) [ruby-core:5237]
1363
1364* Wed Nov 03 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl20
1365- increased release number to avoid discrepancy against 3.0/errata package
1366
1367* Wed Nov 03 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl19
1368- updated and enabled ruby-1.8.2pre2-cvs-update-104.patch.
1369- added ruby-1.8.2pre2-io-open.patch:
1370  - (important) additional changes for "open dumps core again^2."
1371    [ruby-dev:24656]
1372- added ruby-1.8.2pre2-array-uniq.patch:
1373  - Array#uniq should not freeze elements.  [ruby-dev:24695]
1374
1375* Wed Nov 03 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl18
1376- added ruby-1.8.2pre2-cvs-update-104.patch:
1377  - (important) Enumerable#grep dumps core.  [ruby-dev:24671]
1378  - (important) open dumps core again^2.  [ruby-dev:24656]
1379- added ruby-1.8.2pre2-ostruct-revert.patch and removed
1380  ruby-1.8.2pre2-ostruct-marshal.patch:
1381  - reverted lib/ostruct.rb.
1382
1383* Sun Oct 31 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl17
1384- added ruby-1.8.2pre2-cvs-updates-103.patch:
1385  - (important) temporarily frozen string causes core dump.  [ruby-dev:24552]
1386- removed ruby-1.8.2pre2-cgi.rb-macie.patch,
1387  ruby-1.8.2pre2-ostruct-marshal.patch,
1388  ruby-1.8.2pre2-zlib-flush_next_in.patch and
1389  ruby-1.8.2pre2-ruby_finalize_1-segv.patch: they ware included into the
1390  above patch.
1391
1392* Sat Oct 30 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl16
1393- added ruby-1.8.2pre2-eval.c-memory-leak.patch:
1394  - (important) another memory leak in ruby_1_8.  [ruby-core:03619]
1395- added ruby-1.8.2pre2-io-path.patch:
1396  - (important) IO#path may cause segv.  [ruby-talk:118234]
1397- added ruby-1.8.2pre2-enum-sort_by.patch:
1398  - (important) Enumerable#sort_by dumps core again^4.  [ruby-dev:24642]
1399
1400* Thu Oct 29 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl15
1401- added ruby-1.8.2pre2-cvs-updates-100.patch:
1402  - minor bug fix.
1403- added ruby-1.8.2pre2-cvs-updates-101.patch:
1404  - (important) "IO.allocate.reopen('/nothing')" on irb causes SEGV.
1405    [ruby-core:03288]
1406  - YAML fails to load/dump non-printable characters.  [ruby-core:03280]
1407    [ruby-core:03286]
1408  - Bug#265429: IO.select() mysteriously hangs [ruby-dev:24072]
1409    [ruby-dev:24075]
1410  - Pathological slowdown in 1.8  [ruby-core:02662]
1411- added ruby-1.8.2pre2-cvs-updates-102.patch:
1412  - (important) fixed some segmentation fault bugs listed in
1413    - <URL:http://jp.rubyist.net/magazine/?0002-RubyCore>.
1414    - raise dumps core.  [ruby-dev:24519]
1415    - unpack("p") dumps core.  [ruby-dev:24594]
1416    - Enumerable#sort_by dumps core again.  [ruby-dev:24386]
1417    - Enumerable#sort_by dumps core again(2).  [ruby-dev:24399]
1418    - A class of return value of Array#*.  [ruby-dev:24526]
1419    - Zlib::Deflate#deflate causes core dump.  [ruby-dev:24530]
1420  - PStore#transaction may raise Errno::ENOENT.  [ruby-dev:24561]
1421  - String#include? ?\x80.  [ruby-dev:24558]
1422  - httpresponse.rb: ensure to close @body.
1423  - (important) fixed memory leak.  [ruby-core:03549]
1424  - Zlib::GzipReader#ungetc does not work correctly.
1425  - (important) core dump with binding, eval, instance_eval and class
1426    variable.  [ruby-dev:24120]
1427- added ruby-1.8.2pre2-cgi.rb-macie.patch:
1428  - cgi.rb: workaround for Mac IE.  [ruby-list:40136]
1429- added ruby-1.8.2pre2-ostruct-marshal.patch:
1430  - ostruct.rb: OpenStruct can't be dumped.  [ruby-dev:24625]
1431- added ruby-1.8.2pre2-zlib-flush_next_in.patch:
1432  - (important) Zlib::Deflate#flush_next_in causes core dump.
1433    [ruby-dev:24621]
1434- added ruby-1.8.2pre2-ruby_finalize_1-segv.patch:
1435  - (important) raising zlib dumps core again.  [ruby-dev:24627]
1436- removed ruby-1.8.2pre2-cgi-session-filename.patch and
1437  ruby-1.8.2pre2-cgi.rb-infinity-loop.patch: they ware included into the
1438  above patch.
1439
1440* Thu Oct 29 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl14
1441- added ruby-1.8.2pre2-cgi-session-filename.patch:
1442  - (important) CGI::Session::FilesStore and CGI::Session::PStore should not
1443    use a session id as a filename.
1444- added ruby-1.8.2pre2-cgi.rb-infinity-loop.patch:
1445  - (security) cgi.rb: avoids infinity loop.
1446
1447* Wed Oct 13 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl13
1448- rebuilt with db4-4.2.25
1449
1450* Fri Jul 30 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl12
1451- new upstream source, ruby-1.8.2-preview2.
1452- removed patches which is included into upstream:
1453  ruby-1.8.2pr1-sleep.patch, ruby-1.8.2pr1-version.h.patch,
1454  ruby-1.8.2pr1-yaml-rubytypes.rb.patch, ruby-1.8.2pr1-ruby-mode.patch,
1455  ruby-1.8.2pr1-yaml-load-exception.patch,
1456  ruby-1.8.2pr1-config.guess-revert.patch, ruby-1.8.2pr1-callcc.patch,
1457  ruby-1.8.2pr1-net-imap.patch, ruby-1.8.2pr1-uri-ldap.patch,
1458  ruby-1.8.2pr1-use-NULL.patch, ruby-1.8.2pr1-cgi-session.patch and
1459  ruby-1.8.2pr1-run-final.patch.
1460- renamed to ruby-1.8.2pre2-delegate.rb.patch from
1461  ruby-1.8.2pr1-delegate.rb.patch.
1462
1463* Wed Jul 28 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl11
1464- enabled Patch811(ruby-1.8.2pr1-cgi-session.patch).
1465- added a patch:
1466  - ruby-1.8.2pr1-run-final.patch: ObjectSpace.define_finalizer may cause
1467    Segmentation falult.  [ruby-dev:23957]
1468
1469* Wed Jul 21 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl10
1470- new upstream source, ruby-1.8.2-preview1.
1471- removed patches which included into upstream:
1472  ruby-1.8.1-{100..108}-cvs-updates.patch,
1473  ruby-1.8.1-ia64-stack-limit-hack.patch,
1474  ruby-1.8.1-zlib_64bit_gzfile_get32.patch,
1475  ruby-1.8.1-rdoc-parse.rb.patch.
1476- updated patches:
1477  - ruby-1.8.1-sleep.patch -> ruby-1.8.2pr1-sleep.patch
1478  - ruby-1.8.1-yaml-rubytypes.rb.patch -> ruby-1.8.2pr1-yaml-rubytypes.rb.patch
1479  - ruby-1.8.1-ruby-mode.patch -> ruby-1.8.2pr1-ruby-mode.patch
1480  - ruby-1.8.1-delegate.rb.patch -> ruby-1.8.2pr1-delegate.rb.patch
1481  - ruby-1.8.1-config.guess-revert.patch -> ruby-1.8.2pr1-config.guess-revert.patch
1482  - ruby-1.8.1-ri-pager.patch -> ruby-1.8-ri-pager.patch
1483- added patches:
1484  - ruby-1.8.2pr1-version.h.patch: added some constans.
1485  - ruby-1.8.2pr1-yaml-load-exception.patch: YAML.load
1486    couldn't load Exception objects.  [ruby-talk:104405]
1487  - ruby-1.8.2pr1-callcc.patch: callcc method may cause unknown data type
1488    bug.  [ruby-talk:106657]
1489  - ruby-1.8.2pr1-net-imap.patch: wait command continuation requests before
1490    sending octet data of literals.
1491  - ruby-1.8.2pr1-uri-ldap.patch: method hierarchical? in uri/ldap.rb should
1492    be in URI::LDAP.
1493  - ruby-1.8.2pr1-use-NULL.patch: use NULL instead of 0.
1494  - ruby-1.8.2pr1-cgi-session.patch: sets the permission of the session data
1495    file to 0600.  [ruby-dev:23952]
1496
1497* Wed Jun 23 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl9
1498- added ruby-1.8.1-rdoc-parse.rb.patch:
1499    - [ruby-talk:104190] %r{...} is a regular expression but RDoc prints it
1500      as %{...}.
1501- added ruby-1.8.1-config.guess-revert.patch:
1502    - [ruby-dev:23753] revert to original config.guess
1503      <URL:ftp://ftp.gnu.org/pub/gnu/config/config.guess>.
1504
1505* Tue Jun 22 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl8
1506- added ruby-1.8.1-yaml-rubytypes.rb.patch:
1507    - backported from CVS HEAD.
1508
1509* Tue Jun 22 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl7
1510- added ruby-1.8.1-106-cvs-updates.patch:
1511    - [ruby-dev:23550] Socket.new(Socket::AF_INET, Socket::SOCK_STREAM, 0)
1512      dumps core.
1513    - [ruby-core:02793] ruby -e 'a[*b]+=c' dups core.
1514    - [ruby-dev:23487] core dump by delete_if on 1.8
1515    - options for Net::Telnet::login can take regexps for login prompt
1516      and/or password prompt.
1517- added ruby-1.8.1-107-cvs-updates.patch:
1518    - upgraded to stable-snapshot (2004-06-05).
1519- added debian/patches/108_cvs_updates.patch:
1520    - [ruby-dev:22631] should not dump singleton class.
1521    - limit safe level.
1522    - [ruby-dev:23713] allow changing $SAFE.
1523- added ruby-1.8.1-820_zlib_64bit_gzfile_get32.patch:
1524    - the value in gzfile_get32 can accidentally be sign extended on 64 bit
1525      systems.  Thanks to Matthew Mueller.  (see Debian Bug#255442)
1526- removed ruby-1.8.1-time.c.patch, ruby-1.8.1-find.rb.patch,
1527  ruby-1.8.1-telnet.rb.patch, ruby-1.8.1-yaml.patch,
1528  ruby-1.8.1-proc_eq.patch, ruby-1.8.1-misc-escape.patch and
1529  ruby-1.8.1-parse.y-reverse.patch.  they ware included into the above
1530  patch.
1531- updated SOURCE2.  [VineSeed:09109]
1532- removed unusable "Prefix:".
1533
1534* Fri Feb 06 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl6
1535- configure with --with-bundled-{sha1,md5,rmd160}.  it free libruby1.8 from
1536  libssl.
1537- added ruby-1.8.1-105-cvs-updates.patch:
1538  - "undef" for methods does not work. [ruby-list:39058]
1539  - blocks in "#{}" makes syntax error. [ruby-list:39061]
1540  - Net::IMAP accepts 8-bit characters in quoted strings for Novell
1541    GroupWise Internet Agent.
1542  - Socket#recvfrom makes an invalid argument error in non-blocking mode.
1543    [ruby-talk:89962]
1544  - util.c (mblen): fix overrun. (DJGPP ONLY)  [ruby-dev:22672]
1545  - delegate.rb should use Kernel::raise for Thread.  [ruby-dev:22681]
1546    [ruby-dev:22684]
1547  - delegate.rb should not delegate singleton_method_added.
1548    [ruby-dev:22685]
1549- added ruby-1.8.1-find.rb.patch:
1550  - Find.find raises SecurityError in $SAFE>=1. [ruby-dev:22641]
1551  - Find.find("xyz") will yield "xyz" even if no such file exists.
1552    [ruby-core:02319]
1553- added ruby-1.8.1-telnet.rb.patch:
1554  - net/telnet.rb accepts "Login" prompt.
1555- added ruby-1.8.1-yaml.patch:
1556  - syck library does not dump tv_usec correctly. [ruby-core:02305]
1557  - syck cannot dump a Range of strings. [ruby-core:02306]
1558- added ruby-1.8.1-ruby-mode.patch:
1559  - font-lock could not treat %"..." correctry. [ruby-dev:22705]
1560- added ruby-1.8.1-proc_eq.patch:
1561  - Proc with empty body may not be equal.  [ruby-dev:22590]
1562    [ruby-dev:22594][ruby-dev:22602]
1563- added ruby-1.8.1-misc-escape.patch:
1564  - Here-document in lib/rexml/encodings/ISO-8859-1.rb requires quotation,
1565    as in US-ASCII.rb.  [ruby-talk:88650]
1566  - avoid warnings in rdoc/parsers/parse_c.rb.
1567
1568* Thu Jan 22 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl5
1569- changed the arguments when generating RI (in the %%install section)
1570  against "ppc vs powerpc" issue (thanks Akira Yamada-san for helping)
1571
1572* Wed Jan 21 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl4
1573- added ruby-1.8.1-104-cvs-updates.patch:
1574  - removed O_NONBLOCK for a socket used by DRb.
1575  - Net::IMAP accepts an NIL-envelope.
1576
1577* Tue Jan 20 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl3
1578- added ruby-1.8.1-103-cvs-updates.patch:
1579  - io.c: initializer of lineno should be "INT2FIX(0)".
1580  - disabled optimization on ia64.  (-O1/2 makes ruby unusable.)
1581- added ruby-1.8.1-ia64-stack-limit-hack.patch:
1582  - disable IA64_MAGIC_STACK_LIMIT trick when optimization is disabled.
1583    [ruby-dev:22650]
1584
1585* Mon Jan 19 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl2
1586- added ruby-1.8.1-101-cvs-updates.patch:
1587  - StringIO.new.sysread should raise EOFError.  [ruby-core:2078]
1588  - don't increment lineno when gzfile_read_all returns "".  [ruby-core:2078]
1589  - ARGF.readline should raise EOFError at EOF.  [ruby-dev:22458]
1590  - both of ARGF.read and ARGF.read(nil) should concatenate input files when
1591    length argument is nil.  [ruby-dev:22450]
1592  - ARGF.lineno should return 0 even if ARGF have not been read.
1593    [ruby-dev:22460]
1594  - ARGF.each_byte should return self.  [ruby-dev:22465]
1595  - ARGF.eof? should not have any side effect.  [ruby-dev:22469]
1596  - should not abort when module_function is called for undefined method.
1597    [ruby-dev:22498]
1598  - ARGF.read(n) makes an error when it gets EOF.  [ruby-bugs-ja:PR#585]
1599  - synchronized with date2 library version 3.5.  it includes fixes for
1600    [ruby-talk:90063].
1601- added ruby-1.8.1-102-cvs-updates.patch:
1602  - documents of methods of IO is missing.
1603- added ruby-1.8.1-sleep.patch:
1604  - sleep is broken with --enable-pthread.  [ruby-core:2133]
1605    [ruby-core:2137]
1606- added ruby-1.8.1-time.c.patch:
1607  - Time#usec should not return neither a negative number nor a number which
1608    is larger than 1000000.  [ruby-dev:22614], [ruby-dev:22617]
1609- added ruby-1.8.1-ri-pager.patch:
1610  - changed pager search order: ENV['PAGER'], pager, ...
1611- put datafiles of ri into rdoc package.
1612
1613* Sat Dec 27 2003 akira yamada <akira@vinelinux.org> 1.8.1-0vl1
1614- new upstream version.
1615- applied bugfix patch.  ruby-1.8.1-100-cvs-updates.patch:
1616  - Kernel::require searches actual file name once when no extension
1617    specified.
1618  - fixes Ruby/Tk crash bug. (but does not fix block bug.) [ruby-talk:88830]
1619  - Array#pack checks sign for "i" and "I".  [ruby-dev:22427]
1620  - IO::readlines should return lines when record-separater is nil.
1621    [ruby-core:02077][ruby-core:02078]
1622  - ARGF.read accepts "nil" for argument.  [ruby-dev:22433]
1623- updated ruby-refm-rdp-1.6.8-ja-html.tar.gz.
1624- added ruby-mode-init.el.
1625- updated ruby-mode-install.sh and ruby-mode-remove.sh.
1626
1627* Mon Dec 08 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl5
1628- updated ruby-1.8.1pr3-cvs-updates.patch.
1629
1630* Sat Dec 06 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl3
1631- updated to Ruby 1.8.1-preview3.
1632- applied patches from the CVS.
1633
1634* Thu Oct 16 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl2
1635- libruby obsoletes drb, erb, ruby-csv, ruby-optparse, ruby-rexml,
1636  ruby-strscan, rubyunit and racc-runtime.
1637
1638* Mon Oct 06 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl1
1639- new upstream version.
1640- applied patches from the CVS.
1641- new sub-package: ruby-openssl.
1642
1643* Mon Mar 31 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.6.8-0vl2
1644- rebuild with tcltk-8.4.2
1645
1646* Tue Jan 21 2003 akira yamada <akira@vinelinux.org> 1.6.8-0vl1
1647- new upstream version.
1648- applied a patch:
1649    - [ruby-dev:18702] [PATCH] .rb/.so with same feature name
1650- build with db4-devel.  (dbm.so is linked with libdb-4.0.so.)
1651
1652* Tue Mar 19 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl5
1653- applied bug fix patch:
1654    - ruby-dev#16462: preserve reference for GC, but link should be cut.
1655      (ruby-dev#16411: block local var.)
1656    - RUBY_RELEASE_DATE "2002-03-19"
1657  (ruby-1.6.7-103.patch)
1658
1659* Sun Mar 17 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl4
1660- applied bug fix patch:
1661    - ruby-dev#16274: patch for 'wm state' (tk.rb)
1662    - PR#206ja: SEGV handle EXIT
1663    - updated NEWS
1664    - RUBY_RELEASE_DATE "2002-03-14"
1665  (ruby-1.6.7-100.patch)
1666    - ruby-list#34313: singleton should not be Marshal.dump'ed
1667    - ruby-dev#16411: block local var
1668    - RUBY_RELEASE_DATE "2001-03-15"
1669  (ruby-1.6.7-101.patch)
1670    - handling multibyte chars is partially broken.
1671    - RUBY_RELEASE_DATE "2002-03-18"
1672  (ruby-1.6.7-102.patch)
1673- removed ruby-1.6.7-500-marshal-proc.patch and
1674  ruby-1.6.7-501-class-var.patch.  they are included (or rewrited) into the
1675  above patch.
1676- updated refm. (ruby-refm-rdp-1.6.7-ja-html.zip)
1677- prefixed %%lang(ja) to %%doc for Japanese documents.
1678
1679* Fri Mar 08 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl3
1680- applied patch501.
1681
1682* Fri Mar 08 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl2
1683- updated refm. (ruby-refm-rdp-1.6.7-jp-html.zip)
1684
1685* Sun Mar 03 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl1
1686- new upstream version.
1687    - uri library is included.
1688    - time.rb is new.
1689    - some bugs are fixed.
1690- added ruby-refm-rdp-1.6.6-jp-html.zip.
1691- applied bug fix patch:
1692    - ruby-dev#16178: Marshal::dump shuld call Proc#call.
1693    (ruby-1.6.7-500-marshal-proc.patch)
1694    - ruby-talk#35157: class vars broken in 1.6.7
1695    (ruby-1.6.7-501-class-var.patch)
1696- removed: ruby-1.6.6-10[12].patch, ruby-1.6.6-502-net_pop.patch.
1697
1698* Mon Feb 04 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl5
1699- applied bug fix patch:
1700    - ruby-dev#15684: reject prefix followed by spaces only.
1701    - PR#183: SEGV on remove_class_variable
1702    (ruby-1.6.6-101.patch)
1703    - PR#184: Net::APOP.auth_only is not usable
1704    (ruby-1.6.6-502-net_pop.patch)
1705- removed ruby-1.6.6-502-net_pop.patch. it is included by
1706  101_ruby-1.6.6.patch.
1707- site_ruby moved to under /usr/local/lib.
1708- added db1-devel to BuildRequires.
1709
1710* Wed Jan 09 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl4
1711- added a bug fix patch: ruby-1.6.6-501-ruby-mode.patch
1712    - ruby-talk#30479: ruby-mode.el disables font-lock coloring
1713
1714* Tue Jan 08 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl3
1715- added a bug fix patch: ruby-1.6.6-100.patch
1716    - ruby-talk#30203: Ruby 1.6.6 bug and fix
1717    - ruby-list#33047: regex bug
1718    - PR#230: problem with -d in 1.6.6
1719- removed patches: ruby-900-XXX-strtod.patch ruby-503-weakref.rb.patch.
1720  included into ruby-1.6.6-100.patch.
1721
1722* Fri Jan 04 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl2
1723- added a patch:
1724    - ruby-1.6.6-901-sparc.patch: PR#225: sparc linux needs different
1725      FLUSH_REGISTER_WINDOWS
1726- renamed to ruby-mode from ruby-mode-el.
1727
1728* Wed Dec 26 2001 akira yamada <akira@vinelinux.org> 1.6.6-0vl1
1729- new upstream version.
1730
1731* Sun Nov 18 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.6.5-0vl3
1732- rebuilt with new tcl/tk packages
1733- added patches: ruby-900-XXX-strtod.patch ruby-503-weakref.rb.patch
1734
1735* Wed Oct 10 2001 akira yamada <akira@vinelinux.org> 1.6.5-0vl2
1736- applied bug fix patch from upstrem cvs repository.
1737    - ruby-dev#14810, ruby-dev#14813 (ruby-1.6.5-100.patch)
1738- applied bug fix patch:
1739    - ruby-list#31570 for net/pop.rb (ruby-1.6.5-501-net-pop.rb.patch)
1740- %%{_mandir} hack.
1741- emacsen_pkg hack. (very dirty for %%_foo() in %%if-%%endif. but it is
1742  wrong of spec-specification... sigh.)
1743
1744* Wed Sep 19 2001 akira yamada <akira@vinelinux.org> 1.6.5-0vl1
1745- new upstream version.
1746- add XFree86-devel to BuildRequires. (tk.h requires X11/Xlib.h.)
1747
1748* Mon Sep 03 2001 akira yamada <akira@vinelinux.org> 1.6.4-0vl8
1749- removed files related on emacsen-common from libruby.
1750- updated upstream URLs.
1751
1752* Tue Aug 07 2001 akira yamada <akira@vinelinux.org>
1753- 1.6.4-0vl7
1754- added ruby-1.6.4-108.patch.
1755    - fixed: causes segv to mod_ruby.
1756    - do not recurse if method_missing is undefined.
1757    - m68k work around.
1758
1759* Fri Aug 03 2001 akira yamada <akira@vinelinux.org>
1760- 1.6.4-0vl5
1761- new sub-package ruby-mode-el. it provides ruby-mode for emacsen.
1762
1763* Thu Aug 01 2001 akira yamada <akira@vinelinux.org>
1764- 1.6.4-0vl4
1765- added ruby-1.6.4-10[67].patch.
1766- remove ruby-1.6.4-501.patch. (fixed on upstream.)
1767    - marshal verbose warning bug.
1768    - ruby-1.6-2001.07.31.
1769- packages except libruby and irb requires libruby = %%{version}-%%{release}.
1770- irb requires ruby = %%{version}-%%{release}.
1771
1772* Thu Jul 26 2001 akira yamada <akira@vinelinux.org>
1773- 1.6.4-0vl3
1774- added ruby-1.6.4-10[345].patch and ruby-1.6.4-501.patch.
1775    - tilde expansion problem and PR#158.
1776- some documents moved to libruby.rpm from ruby.rpm.
1777- stopped using %%configure macros, because it breaks
1778  Config::CONFIG["libdir"] variable: %%configure sets
1779  it to "/usr/lib" but it should be
1780  "$(exec_prefix)/lib" for some packages which uses
1781  ruby.
1782
1783* Tue Jul 17 2001 akira yamada <akira@vinelinux.org>
1784- 1.6.4-0vl2
1785- added ruby-1.6.4-10[12].patch.
1786    - fixed a bug around order of "$:".
1787    - updated config.{guess,sub}.
1788    - eval.c bug.
1789    - marshal version 4.6.
1790
1791* Mon Jun 04 2001 akira yamada <akira@vinelinux.org>
1792- 1.6.4-0vl1
1793- upgrade to nwe upstream version 1.6.4.
1794
1795* Mon Apr 02 2001 akira yamada <akira@vinelinux.org>
1796- applied patch:
1797  - fixed method cache bug. etc. (Patch103, Patch104)
1798
1799* Tue Mar 27 2001 akira yamada <akira@vinelinux.org>
1800- applied patch:
1801  - fixed marshal for bignum bug.
1802  - fixed scope of constant variables bug.
1803
1804* Tue Mar 20 2001 akira yamada <akira@vinelinux.org>
1805- upgraded to new upstream version 1.6.3.
1806
1807* Fri Feb 09 2001 akira yamada <akira@vinelinux.org>
1808- fixed bad group for libruby.
1809- Applied patch: upgraded to cvs version (2001-02-08):
1810  fixed minor bugs.
1811
1812* Thu Jan 18 2001 akira yamada <akira@vinelinux.org>
1813- Applied patch: upgraded to cvs version (2001-01-15):
1814  fixed minor bugs(e.g. ruby makes extention librares too large...).
1815
1816* Wed Jan 10 2001 akira yamada <akira@vinelinux.org>
1817- Applied patch: upgraded to cvs version (2001-01-09):
1818  fixed minor bugs.
1819
1820* Sat Dec 30 2000 akira yamada <akira@vinelinux.org>
1821- Applied bug fix patch.
1822
1823* Mon Dec 25 2000 akira yamada <akira@vinelinux.org>
1824- Updated to new upstream version 1.6.2.
1825
1826* Fri Dec 22 2000 akira yamada <akira@vinelinux.org>
1827- Removed ruby_cvs.2000122019.patch, added ruby_cvs.2000122215.patch
1828  (upgraded ruby to latest cvs version, 1.6.2-preview4).
1829
1830* Wed Dec 20 2000 akira yamada <akira@vinelinux.org>
1831- Removed ruby_cvs.2000121413.patch, added ruby_cvs.2000122019.patch
1832  (upgraded ruby to latest cvs version).
1833- new package: libruby
1834
1835* Thu Dec 14 2000 akira yamada <akira@vinelinux.org>
1836- Removed ruby_cvs.2000101901.patch, added ruby_cvs.2000121413.patch
1837  (upgraded ruby to latest cvs version).
1838- Removed ruby-dev.11262.patch, ruby-dev.11265.patch,
1839  and ruby-dev.11268.patch (included into above patch).
1840
1841* Sun Nov 12 2000 MACHINO, Satoshi <machino@vinelinux.org> 1.6.1-0vl9
1842- build on gcc-2.95.3
1843
1844* Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
1845- Added ruby-dev.11268.patch.
1846
1847* Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
1848- Removed ruby_cvs.2000101117.patch and added ruby_cvs.2000101901.patch
1849  (upgraded ruby to latest cvs version).
1850- Added ruby-dev.11262.patch.
1851- Added ruby-dev.11265.patch.
1852 
1853* Wed Oct 11 2000 akira yamada <akira@vinelinux.org>
1854- Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000101117.patch
1855  (upgraded ruby to latest cvs version).
1856
1857* Mon Oct 09 2000 akira yamada <akira@vinelinux.org>
1858- Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000100313.patch
1859  (upgraded ruby to latest cvs version).
1860
1861* Tue Oct 03 2000 akira yamada <akira@vinelinux.org>
1862- Removed ruby_cvs.2000100218.patch and added ruby_cvs.2000100313.patch
1863  (upgraded ruby to latest cvs version).
1864
1865* Mon Oct 02 2000 akira yamada <akira@vinelinux.org>
1866- Removed ruby_cvs.2000092718.patch and added ruby_cvs.2000100218.patch
1867  (upgraded ruby to latest cvs version).
1868
1869* Thu Sep 27 2000 akira yamada <akira@vinelinux.org>
1870- Updated to upstream version 1.6.1.
1871- Removed ruby_cvs.2000082901.patch and added ruby_cvs.2000092718.patch
1872  (upgraded ruby to latest cvs version).
1873
1874* Tue Aug 29 2000 akira yamada <akira@redhat.com>
1875- Updated to version 1.4.6.
1876- removed ruby-dev.10123.patch(included into ruby-1.4.6).
1877- Added ruby_cvs.2000082901.patch(upgraded ruby to latest cvs version).
1878
1879* Tue Jun 27 2000 akira yamada <akira@redhat.com>
1880- Updated manuals to version 1.4.5.
1881
1882* Sun Jun 25 2000 akira yamada <akira@redhat.com>
1883- Added ruby-dev.10123.patch.
1884
1885* Sat Jun 24 2000 akira yamada <akira@redhat.com>
1886- Updated to version 1.4.5.
1887- Removed ruby_cvs.2000062401.patch(included into ruby-1.4.5).
1888
1889* Thu Jun 22 2000 akira yamada <akira@redhat.com>
1890- Updated to version 1.4.4(06/22/2000 CVS).
1891- Removed ruby-dev.10054.patch(included into ruby_cvs.patch).
1892
1893* Thu Jun 22 2000 akira yamada <akira@redhat.com>
1894- Renamed to ruby_cvs20000620.patch from ruby_cvs.patch.
1895
1896* Tue Jun 20 2000 akira yamada <akira@redhat.com>
1897- Updated to version 1.4.4(06/20/2000 CVS).
1898- Removed ruby-list.23190.patch(included into ruby_cvs.patch).
1899- Added ruby-dev.10054.patch.
1900
1901* Tue Jun 15 2000 akira yamada <akira@redhat.com>
1902- Updated to version 1.4.4(06/12/2000 CVS).
1903- Added manuals and FAQs.
1904- Split into ruby, ruby-devel, ruby-tcltk, ruby-docs, irb.
1905
1906* Tue Jun 13 2000 Mitsuo Hamada <mhamada@redhat.com>
1907- Updated to version 1.4.4
1908
1909* Wed Dec 08 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
1910- Updated to version 1.4.3
1911
1912* Mon Sep 20 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
1913- Updated to version 1.4.2 (Sep 18)
1914
1915* Fri Sep 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
1916- Updated to version 1.4.2
1917
1918* Tue Aug 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
1919- Updated to version 1.4.0
1920
1921* Fri Jul 23 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
1922- 2nd release
1923- Updated to version 1.2.6(15 Jul 1999)
1924- striped %{prefix}/bin/ruby
1925
1926* Mon Jun 28 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
1927- Updated to version 1.2.6(21 Jun 1999)
1928
1929* Wed Apr 14 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
1930- Updated to version 1.2.5
1931
1932* Fri Apr 09 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
1933- Updated to version 1.2.4
1934
1935* Fri Dec 25 1998 Toru Hoshina <hoshina@best.com>
1936- Version up to 1.2 stable.
1937
1938* Fri Nov 27 1998 Toru Hoshina <hoshina@best.com>
1939- Version up to 1.1c9.
1940
1941* Thu Nov 19 1998 Toru Hoshina <hoshina@best.com>
1942- Version up to 1.1c8, however it appear short life :-P
1943
1944* Fri Nov 13 1998 Toru Hoshina <hoshina@best.com>
1945- Version up.
1946
1947* Mon Sep 22 1998 Toru Hoshina <hoshina@best.com>
1948- To make a libruby.so.
1949
1950* Mon Sep 21 1998 Toru Hoshina <hoshina@best.com>
1951- Modified SPEC in order to install libruby.a so that it should be used by
1952  another ruby entention.
1953- 2nd release.
1954
1955* Mon Mar 9 1998 Shoichi OZAWA <shoch@jsdi.or.jp>
1956- Added a powerPC arch part. Thanks, MURATA Nobuhiro <nob@makioka.y-min.or.jp>
Note: See TracBrowser for help on using the repository browser.