Blame SPECS/ruby.spec

d54c42
%{!?scl:%global pkg_name %{name}}
d54c42
%{?scl:%scl_package ruby}
d54c42
d54c42
%global major_version 2
d54c42
%global minor_version 2
d54c42
%global teeny_version 2
d54c42
%global major_minor_version %{major_version}.%{minor_version}
d54c42
d54c42
%global ruby_version %{major_minor_version}.%{teeny_version}
d54c42
%global ruby_release %{ruby_version}
d54c42
d54c42
# Specify the named version. It has precedense to revision.
d54c42
#%%global milestone preview2
d54c42
d54c42
# Keep the revision enabled for pre-releases from SVN.
d54c42
#%%global revision 48936
d54c42
d54c42
%global ruby_archive %{pkg_name}-%{ruby_version}
d54c42
d54c42
# If revision and milestone are removed/commented out, the official release build is expected.
d54c42
%if 0%{?milestone:1}%{?revision:1} != 0
d54c42
%global development_release %{?milestone}%{?!milestone:%{?revision:r%{revision}}}
d54c42
%global ruby_archive %{ruby_archive}-%{?milestone}%{?!milestone:%{?revision:r%{revision}}}
d54c42
%endif
d54c42
d54c42
6e7d33
%global release 15
d54c42
%{!?release_string:%global release_string %{?development_release:0.}%{release}%{?development_release:.%{development_release}}%{?dist}}
d54c42
d54c42
%global rubygems_version 2.4.5
d54c42
d54c42
# The RubyGems library has to stay out of Ruby directory three, since the
d54c42
# RubyGems should be share by all Ruby implementations.
d54c42
%global rubygems_dir %{_datadir}/rubygems
d54c42
d54c42
# TODO: The IRB has strange versioning. Keep the Ruby's versioning ATM.
d54c42
# http://redmine.ruby-lang.org/issues/5313
d54c42
%global irb_version %{ruby_version}
d54c42
d54c42
%global bigdecimal_version 1.2.6
d54c42
%global io_console_version 0.4.3
d54c42
%global json_version 1.8.1
d54c42
%global minitest_version 5.4.3
d54c42
%global power_assert_version 0.2.2
d54c42
%global psych_version 2.0.8
d54c42
%global rake_version 10.4.2
d54c42
%global rdoc_version 4.2.0
d54c42
%global test_unit_version 3.0.8
d54c42
d54c42
# Might not be needed in the future, if we are lucky enough.
d54c42
# https://bugzilla.redhat.com/show_bug.cgi?id=888262
d54c42
%global tapset_root %{_datadir}/systemtap
d54c42
%global tapset_dir %{tapset_root}/tapset
d54c42
%global tapset_libdir %(echo %{_libdir} | sed 's/64//')*
d54c42
d54c42
%global _normalized_cpu %(echo %{_target_cpu} | sed 's/^ppc/powerpc/;s/i.86/i386/;s/sparcv./sparc/')
d54c42
d54c42
%if 0%{?fedora} >= 19
d54c42
%global with_rubypick 1
d54c42
%endif
d54c42
d54c42
Summary: An interpreter of object-oriented scripting language
d54c42
Name: %{?scl_prefix}ruby
d54c42
Version: %{ruby_version}
d54c42
Release: %{release_string}
d54c42
Group: Development/Languages
d54c42
# Public Domain for example for: include/ruby/st.h, strftime.c, missing/*, ...
d54c42
# MIT and CCO: ccan/*
d54c42
# zlib: ext/digest/md5/md5.*, ext/nkf/nkf-utf8/nkf.c
d54c42
# UCD: some of enc/trans/**/*.src
d54c42
License: (Ruby or BSD) and Public Domain and MIT and CC0 and zlib and UCD
d54c42
URL: http://ruby-lang.org/
d54c42
Source0: ftp://ftp.ruby-lang.org/pub/%{pkg_name}/%{major_minor_version}/%{ruby_archive}.tar.xz
d54c42
Source1: operating_system.rb
d54c42
# TODO: Try to push SystemTap support upstream.
d54c42
Source2: libruby.stp
d54c42
Source3: ruby-exercise.stp
d54c42
Source4: macros.ruby
d54c42
Source5: macros.rubygems
d54c42
Source6: abrt_prelude.rb
d54c42
# This wrapper fixes https://bugzilla.redhat.com/show_bug.cgi?id=977941
d54c42
# Hopefully, it will get removed soon:
d54c42
# https://fedorahosted.org/fpc/ticket/312
d54c42
# https://bugzilla.redhat.com/show_bug.cgi?id=977941
d54c42
Source7: config.h
d54c42
# To test Ruby software collection
d54c42
Source8: test_dependent_scls.rb
d54c42
# SystemTap sanity test case.
d54c42
Source11: test_systemtap.rb
d54c42
d54c42
# %%load function should be supported in RPM 4.12+.
d54c42
# http://lists.rpm.org/pipermail/rpm-maint/2014-February/003659.html
d54c42
Source100: load.inc
d54c42
%include %{SOURCE100}
d54c42
d54c42
%{load %{SOURCE4}}
d54c42
%{load %{SOURCE5}}
d54c42
d54c42
# http://bugs.ruby-lang.org/issues/7807
d54c42
Patch0: ruby-2.1.0-Prevent-duplicated-paths-when-empty-version-string-i.patch
d54c42
# Allows to override libruby.so placement. Hopefully we will be able to return
d54c42
# to plain --with-rubyarchprefix.
d54c42
# http://bugs.ruby-lang.org/issues/8973
d54c42
Patch1: ruby-2.1.0-Enable-configuration-of-archlibdir.patch
d54c42
# Force multiarch directories for i.86 to be always named i386. This solves
d54c42
# some differencies in build between Fedora and RHEL.
d54c42
Patch2: ruby-2.1.0-always-use-i386.patch
d54c42
# Allows to install RubyGems into custom directory, outside of Ruby's tree.
d54c42
# http://bugs.ruby-lang.org/issues/5617
d54c42
Patch4: ruby-2.1.0-custom-rubygems-location.patch
d54c42
# Make mkmf verbose by default
d54c42
Patch5: ruby-1.9.3-mkmf-verbose.patch
d54c42
# Adds support for '--with-prelude' configuration option. This allows to built
d54c42
# in support for ABRT.
d54c42
# http://bugs.ruby-lang.org/issues/8566
d54c42
Patch6: ruby-2.1.0-Allow-to-specify-additional-preludes-by-configuratio.patch
d54c42
b54141
# Fix DNS hijacking vulnerability in api_endpoint() (CVE-2015-3900).
b54141
# https://github.com/rubygems/rubygems/commit/6bbee35
b54141
Patch7: rubygems-2.2.4-Limit-API-endpoint-to-original-security-domain.patch
b54141
# Incomplete fix for CVE-2015-3900 (CVE-2015-4020).
b54141
# https://github.com/rubygems/rubygems/commit/5c7bfb5
b54141
Patch8: rubygems-2.2.5-Fix-API-endpoint-domain-clamping.patch
6e7d33
# Fix the bug for object allocation during gc phase.
6e7d33
# https://bugzilla.redhat.com/show_bug.cgi?id=1317076
6e7d33
# https://github.com/ruby/ruby/commit/c4e2e5d.patch
6e7d33
Patch9: ruby-2.2.3-dsym_fstrs-for-object-allocation-gc-phase.patch
6e7d33
# Fix "dh key too small" error of OpenSSL 1.0.2c+.
6e7d33
# https://github.com/rubygems/rubygems/issues/1289
6e7d33
Patch10: ruby-2.3.0-test_gem_remote_fetcher.rb-get-rid-of-errors.patch
b54141
d54c42
Requires: %{?scl_prefix}%{pkg_name}-libs%{?_isa} = %{version}-%{release}
d54c42
Requires: %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
# Make the bigdecimal gem a runtime dependency of Ruby to avoid problems
d54c42
# with user-installed gems, that don't require it in gemspec/Gemfile
d54c42
# See https://bugzilla.redhat.com/show_bug.cgi?id=829209
d54c42
# and http://bugs.ruby-lang.org/issues/6123
d54c42
Requires: %{?scl_prefix}rubygem(bigdecimal) >= %{bigdecimal_version}
d54c42
%{?scl:BuildRequires: %{scl}-runtime}
d54c42
BuildRequires: autoconf
d54c42
BuildRequires: gdbm-devel
d54c42
BuildRequires: libffi-devel
d54c42
BuildRequires: openssl-devel
d54c42
BuildRequires: libyaml-devel
d54c42
BuildRequires: readline-devel
d54c42
BuildRequires: tk-devel
d54c42
# Needed to pass test_set_program_name(TestRubyOptions)
d54c42
BuildRequires: procps
d54c42
BuildRequires: %{?_root_bindir}%{!?_root_bindir:%{_bindir}}/dtrace
d54c42
BuildRequires: %{?_root_bindir}%{!?_root_bindir:%{_bindir}}/git
d54c42
BuildRequires: %{?_root_bindir}%{!?_root_bindir:%{_bindir}}/cmake
d54c42
d54c42
# This package provides %%{_bindir}/ruby-mri therefore it is marked by this
d54c42
# virtual provide. It can be installed as dependency of rubypick.
d54c42
Provides: ruby(runtime_executable) = %{ruby_release}
d54c42
d54c42
%global __provides_exclude_from ^(%{ruby_libarchdir}|%{gem_archdir})/.*\\.so$
d54c42
d54c42
%description
d54c42
Ruby is the interpreted scripting language for quick and easy
d54c42
object-oriented programming.  It has many features to process text
d54c42
files and to do system management tasks (as in Perl).  It is simple,
d54c42
straight-forward, and extensible.
d54c42
d54c42
d54c42
%package devel
d54c42
Summary:    A Ruby development environment
d54c42
Group:      Development/Languages
d54c42
# Requires:   %{pkg_name}-libs = %{version}-%{release}
d54c42
Requires:   %{?scl_prefix}%{pkg_name}%{?_isa} = %{version}-%{release}
d54c42
d54c42
%description devel
d54c42
Header files and libraries for building an extension library for the
d54c42
Ruby or an application embedding Ruby.
d54c42
d54c42
%package libs
d54c42
Summary:    Libraries necessary to run Ruby
d54c42
Group:      Development/Libraries
d54c42
License:    Ruby or BSD
d54c42
# This could be removed once rhbz#1054711 is resolved.
d54c42
%{?scl:Requires: %{scl}-runtime}
d54c42
Provides:   %{?scl_prefix}ruby(release) = %{ruby_release}
d54c42
d54c42
%description libs
d54c42
This package includes the libruby, necessary to run Ruby.
d54c42
d54c42
# TODO: Rename or not rename to ruby-rubygems?
d54c42
%package -n %{?scl_prefix}rubygems
d54c42
Summary:    The Ruby standard for packaging ruby libraries
d54c42
Version:    %{rubygems_version}
d54c42
Group:      Development/Libraries
d54c42
License:    Ruby or MIT
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}rubygem(rdoc) >= %{rdoc_version}
d54c42
# TODO: This seems to be optional now.
d54c42
# https://github.com/rubygems/rubygems/commit/68da16dd7508c5c4010bfe32f99422568d3d582f
d54c42
Requires:   %{?scl_prefix}rubygem(io-console) >= %{io_console_version}
d54c42
Requires:   %{?scl_prefix}rubygem(psych) >= %{psych_version}
d54c42
Provides:   %{?scl_prefix}gem = %{version}-%{release}
d54c42
Provides:   %{?scl_prefix}ruby(rubygems) = %{version}-%{release}
d54c42
d54c42
%description -n %{?scl_prefix}rubygems
d54c42
RubyGems is the Ruby standard for publishing and managing third party
d54c42
libraries.
d54c42
d54c42
d54c42
%package -n %{?scl_prefix}rubygems-devel
d54c42
Summary:    Macros and development tools for packaging RubyGems
d54c42
Version:    %{rubygems_version}
d54c42
Group:      Development/Libraries
d54c42
License:    Ruby or MIT
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) = %{version}-%{release}
d54c42
BuildArch:  noarch
d54c42
d54c42
%description -n %{?scl_prefix}rubygems-devel
d54c42
Macros and development tools for packaging RubyGems.
d54c42
d54c42
d54c42
%package -n %{?scl_prefix}rubygem-rake
d54c42
Summary:    Ruby based make-like utility
d54c42
Version:    %{rake_version}
d54c42
Group:      Development/Libraries
d54c42
License:    MIT
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
Provides:   %{?scl_prefix}rake = %{version}-%{release}
d54c42
Provides:   %{?scl_prefix}rubygem(rake) = %{version}-%{release}
d54c42
BuildArch:  noarch
d54c42
d54c42
%description -n %{?scl_prefix}rubygem-rake
d54c42
Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
d54c42
specified in standard Ruby syntax.
d54c42
d54c42
d54c42
%package irb
d54c42
Summary:    The Interactive Ruby
d54c42
Version:    %{irb_version}
d54c42
Group:      Development/Libraries
d54c42
Requires:   %{?scl_prefix}%{pkg_name}-libs = %{ruby_version}
d54c42
Provides:   %{?scl_prefix}irb = %{version}-%{release}
d54c42
Provides:   %{?scl_prefix}ruby(irb) = %{version}-%{release}
d54c42
BuildArch:  noarch
d54c42
d54c42
%description irb
d54c42
The irb is acronym for Interactive Ruby.  It evaluates ruby expression
d54c42
from the terminal.
d54c42
d54c42
d54c42
%package -n %{?scl_prefix}rubygem-rdoc
d54c42
Summary:    A tool to generate HTML and command-line documentation for Ruby projects
d54c42
Version:    %{rdoc_version}
d54c42
Group:      Development/Libraries
d54c42
# SIL: lib/rdoc/generator/template/darkfish/css/fonts.css
d54c42
License:    GPLv2 and Ruby and MIT and SIL
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
Requires:   %{?scl_prefix}ruby(irb) = %{irb_version}
d54c42
Requires:   %{?scl_prefix}rubygem(json) >= %{json_version}
d54c42
Provides:   %{?scl_prefix}rdoc = %{version}-%{release}
d54c42
Provides:   %{?scl_prefix}ri = %{version}-%{release}
d54c42
Provides:   %{?scl_prefix}rubygem(rdoc) = %{version}-%{release}
d54c42
BuildArch:  noarch
d54c42
d54c42
%description -n %{?scl_prefix}rubygem-rdoc
d54c42
RDoc produces HTML and command-line documentation for Ruby projects.  RDoc
d54c42
includes the 'rdoc' and 'ri' tools for generating and displaying online
d54c42
documentation.
d54c42
d54c42
d54c42
%package doc
d54c42
Summary:    Documentation for %{pkg_name}
d54c42
Group:      Documentation
d54c42
Requires:   %{_bindir}/ri
d54c42
BuildArch:  noarch
d54c42
d54c42
%description doc
d54c42
This package contains documentation for %{pkg_name}.
d54c42
d54c42
d54c42
%package -n %{?scl_prefix}rubygem-bigdecimal
d54c42
Summary:    BigDecimal provides arbitrary-precision floating point decimal arithmetic
d54c42
Version:    %{bigdecimal_version}
d54c42
Group:      Development/Libraries
d54c42
License:    GPL+ or Artistic
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
Provides:   %{?scl_prefix}rubygem(bigdecimal) = %{version}-%{release}
d54c42
d54c42
%description -n %{?scl_prefix}rubygem-bigdecimal
d54c42
Ruby provides built-in support for arbitrary precision integer arithmetic.
d54c42
For example:
d54c42
d54c42
42**13 -> 1265437718438866624512
d54c42
d54c42
BigDecimal provides similar support for very large or very accurate floating
d54c42
point numbers. Decimal arithmetic is also useful for general calculation,
d54c42
because it provides the correct answers people expect–whereas normal binary
d54c42
floating point arithmetic often introduces subtle errors because of the
d54c42
conversion between base 10 and base 2.
d54c42
d54c42
d54c42
%package -n %{?scl_prefix}rubygem-io-console
d54c42
Summary:    IO/Console is a simple console utilizing library
d54c42
Version:    %{io_console_version}
d54c42
Group:      Development/Libraries
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
Provides:   %{?scl_prefix}rubygem(io-console) = %{version}-%{release}
d54c42
d54c42
%description -n %{?scl_prefix}rubygem-io-console
d54c42
IO/Console provides very simple and portable access to console. It doesn't
d54c42
provide higher layer features, such like curses and readline.
d54c42
d54c42
d54c42
%package -n %{?scl_prefix}rubygem-json
d54c42
Summary:    This is a JSON implementation as a Ruby extension in C
d54c42
Version:    %{json_version}
d54c42
Group:      Development/Libraries
d54c42
# UCD: ext/json/generator/generator.c
d54c42
License:    (Ruby or GPLv2) and UCD
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
Provides:   %{?scl_prefix}rubygem(json) = %{version}-%{release}
d54c42
d54c42
%description -n %{?scl_prefix}rubygem-json
d54c42
This is a implementation of the JSON specification according to RFC 4627.
d54c42
You can think of it as a low fat alternative to XML, if you want to store
d54c42
data to disk or transmit it over a network rather than use a verbose
d54c42
markup language.
d54c42
d54c42
d54c42
%package -n %{?scl_prefix}rubygem-minitest
d54c42
Summary:    Minitest provides a complete suite of testing facilities
d54c42
Version:    %{minitest_version}
d54c42
Group:      Development/Libraries
d54c42
License:    MIT
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
Provides:   %{?scl_prefix}rubygem(minitest) = %{version}-%{release}
d54c42
BuildArch:  noarch
d54c42
d54c42
%description -n %{?scl_prefix}rubygem-minitest
d54c42
minitest/unit is a small and incredibly fast unit testing framework.
d54c42
d54c42
minitest/spec is a functionally complete spec engine.
d54c42
d54c42
minitest/benchmark is an awesome way to assert the performance of your
d54c42
algorithms in a repeatable manner.
d54c42
d54c42
minitest/mock by Steven Baker, is a beautifully tiny mock object
d54c42
framework.
d54c42
d54c42
minitest/pride shows pride in testing and adds coloring to your test
d54c42
output.
d54c42
d54c42
d54c42
# The Summary/Description fields are rather poor.
d54c42
# https://github.com/k-tsj/power_assert/issues/3
d54c42
%package -n %{?scl_prefix}rubygem-power_assert
d54c42
Summary:    Power Assert for Ruby
d54c42
Version:    %{power_assert_version}
d54c42
Group:      Development/Libraries
d54c42
License:    Ruby or BSD
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
Provides:   %{?scl_prefix}rubygem(power_assert) = %{version}-%{release}
d54c42
BuildArch:  noarch
d54c42
d54c42
%description -n %{?scl_prefix}rubygem-power_assert
d54c42
Power Assert for Ruby.
d54c42
d54c42
d54c42
%package -n %{?scl_prefix}rubygem-psych
d54c42
Summary:    A libyaml wrapper for Ruby
d54c42
Version:    %{psych_version}
d54c42
Group:      Development/Libraries
d54c42
License:    MIT
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
# Explicitly depend on libyaml, to workaround issues with scl prefixed libyam.
d54c42
# Resolves: rhbz#1071347
d54c42
Requires:   libyaml
d54c42
Provides:   %{?scl_prefix}rubygem(psych) = %{version}-%{release}
d54c42
d54c42
%description -n %{?scl_prefix}rubygem-psych
d54c42
Psych is a YAML parser and emitter. Psych leverages
d54c42
libyaml[http://pyyaml.org/wiki/LibYAML] for its YAML parsing and emitting
d54c42
capabilities. In addition to wrapping libyaml, Psych also knows how to
d54c42
serialize and de-serialize most Ruby objects to and from the YAML format.
d54c42
d54c42
d54c42
# The Summary/Description fields are rather poor.
d54c42
# https://github.com/test-unit/test-unit/issues/73
d54c42
%package -n %{?scl_prefix}rubygem-test-unit
d54c42
Summary:    Improved version of Test::Unit bundled in Ruby 1.8.x
d54c42
Version:    %{test_unit_version}
d54c42
Group:      Development/Libraries
d54c42
# lib/test/unit/diff.rb is a double license of the Ruby license and PSF license.
d54c42
# lib/test-unit.rb is a dual license of the Ruby license and LGPLv2.1 or later.
d54c42
License:    (Ruby or BSD) and (Ruby or BSD or Python) and (Ruby or BSD or LGPLv2+)
d54c42
Requires:   %{?scl_prefix}ruby(release)
d54c42
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
d54c42
Requires:   %{?scl_prefix}rubygem(power_assert)
d54c42
Provides:   %{?scl_prefix}rubygem(test-unit) = %{version}-%{release}
d54c42
BuildArch:  noarch
d54c42
d54c42
%description -n %{?scl_prefix}rubygem-test-unit
d54c42
Ruby 1.9.x bundles minitest not Test::Unit. Test::Unit
d54c42
bundled in Ruby 1.8.x had not been improved but unbundled
d54c42
Test::Unit (test-unit) is improved actively.
d54c42
d54c42
d54c42
%package tcltk
d54c42
Summary:    Tcl/Tk interface for scripting language Ruby
d54c42
Group:      Development/Languages
d54c42
Requires:   %{?scl_prefix}%{pkg_name}-libs%{?_isa} = %{ruby_version}
d54c42
Provides:   %{?scl_prefix}ruby(tcltk) = %{ruby_version}-%{release}
d54c42
d54c42
%description tcltk
d54c42
Tcl/Tk interface for the object-oriented scripting language Ruby.
d54c42
d54c42
%prep
d54c42
%setup -q -n %{ruby_archive}
d54c42
d54c42
# Remove bundled libraries to be sure they are not used.
d54c42
rm -rf ext/psych/yaml
d54c42
rm -rf ext/fiddle/libffi*
d54c42
d54c42
%patch0 -p1
d54c42
%patch1 -p1
d54c42
%patch2 -p1
d54c42
%patch4 -p1
d54c42
%patch5 -p1
d54c42
%patch6 -p1
b54141
%patch7 -p1
b54141
%patch8 -p1
6e7d33
%patch9 -p1
6e7d33
%patch10 -p1
d54c42
d54c42
# Allow to use autoconf 2.63.
d54c42
sed -i '/AC_PREREQ/ s/(.*)/(2.62)/' configure.in
d54c42
d54c42
# Provide an example of usage of the tapset:
d54c42
cp -a %{SOURCE3} .
d54c42
d54c42
# Make abrt_prelude.rb available for compilation process. The prelude must be
d54c42
# available together with Ruby's source due to
d54c42
# https://github.com/ruby/ruby/blob/trunk/tool/compile_prelude.rb#L26
d54c42
cp -a %{SOURCE6} .
d54c42
d54c42
%build
d54c42
autoconf
d54c42
d54c42
%configure \
d54c42
        --with-rubylibprefix='%{ruby_libdir}' \
d54c42
        --with-archlibdir='%{_libdir}' \
d54c42
        --with-rubyarchprefix='%{ruby_libarchdir}' \
d54c42
        --with-sitedir='%{ruby_sitelibdir}' \
d54c42
        --with-sitearchdir='%{ruby_sitearchdir}' \
d54c42
        --with-vendordir='%{ruby_vendorlibdir}' \
d54c42
        --with-vendorarchdir='%{ruby_vendorarchdir}' \
d54c42
        --with-rubyhdrdir='%{_includedir}' \
d54c42
        --with-rubyarchhdrdir='%{_includedir}' \
d54c42
        --with-sitearchhdrdir='$(sitehdrdir)/$(arch)' \
d54c42
        --with-vendorarchhdrdir='$(vendorhdrdir)/$(arch)' \
d54c42
        --with-rubygemsdir='%{rubygems_dir}' \
d54c42
        --with-ruby-pc='%{pkg_name}.pc' \
d54c42
        --disable-rpath \
d54c42
        --enable-shared \
d54c42
        --with-ruby-version='' \
d54c42
        --enable-multiarch \
d54c42
        --with-prelude=./abrt_prelude.rb \
d54c42
d54c42
# Avoid regeneration of prelude.c due to patch6 applied to common.mk.
d54c42
# https://bugs.ruby-lang.org/issues/10554
d54c42
touch prelude.c
d54c42
d54c42
# Q= makes the build output more verbose and allows to check Fedora
d54c42
# compiler options.
d54c42
make %{?_smp_mflags} COPY="cp -p" Q=
d54c42
d54c42
%install
d54c42
rm -rf %{buildroot}
d54c42
make install DESTDIR=%{buildroot}
d54c42
d54c42
# Rename ruby/config.h to ruby/config-<arch>.h to avoid file conflicts on
d54c42
# multilib systems and install config.h wrapper
d54c42
mv %{buildroot}%{_includedir}/%{pkg_name}/config.h %{buildroot}%{_includedir}/%{pkg_name}/config-%{_arch}.h
d54c42
install -m644 %{SOURCE7} %{buildroot}%{_includedir}/%{pkg_name}/config.h
d54c42
d54c42
# Rename the ruby executable. It is replaced by RubyPick.
d54c42
%{?with_rubypick:mv %{buildroot}%{_bindir}/%{pkg_name}{,-mri}}
d54c42
d54c42
# Version is empty if --with-ruby-version is specified.
d54c42
# http://bugs.ruby-lang.org/issues/7807
d54c42
sed -i 's/Version: \${ruby_version}/Version: %{ruby_version}/' %{buildroot}%{_libdir}/pkgconfig/%{pkg_name}.pc
d54c42
d54c42
# Kill bundled certificates, as they should be part of ca-certificates.
d54c42
for cert in \
d54c42
  Class3PublicPrimaryCertificationAuthority.pem \
d54c42
  DigiCertHighAssuranceEVRootCA.pem \
d54c42
  EntrustnetSecureServerCertificationAuthority.pem \
d54c42
  GeoTrustGlobalCA.pem \
d54c42
  AddTrustExternalCARoot.pem \
d54c42
  AddTrustExternalCARoot-2048.pem
d54c42
do
d54c42
  rm %{buildroot}%{rubygems_dir}/rubygems/ssl_certs/$cert
d54c42
done
d54c42
d54c42
# Move macros file into proper place and replace the %%{name} macro, since it
d54c42
# would be wrongly evaluated during build of other packages.
d54c42
mkdir -p %{buildroot}%{_root_sysconfdir}/rpm
d54c42
install -m 644 %{SOURCE4} %{buildroot}%{_root_sysconfdir}/rpm/macros.ruby%{?scl:.%{scl}}
d54c42
sed -i "s/%%{name}/%{name}/" %{buildroot}%{_root_sysconfdir}/rpm/macros.ruby%{?scl:.%{scl}}
d54c42
install -m 644 %{SOURCE5} %{buildroot}%{_root_sysconfdir}/rpm/macros.rubygems%{?scl:.%{scl}}
d54c42
sed -i "s/%%{name}/%{name}/" %{buildroot}%{_root_sysconfdir}/rpm/macros.rubygems%{?scl:.%{scl}}
d54c42
d54c42
# Install custom operating_system.rb.
d54c42
mkdir -p %{buildroot}%{rubygems_dir}/rubygems/defaults
d54c42
sed 's/@SCL@/%{scl}/' %{SOURCE1} > %{buildroot}%{rubygems_dir}/rubygems/defaults/%{basename:%{SOURCE1}}
d54c42
d54c42
# Move gems root into common direcotry, out of Ruby directory structure.
d54c42
mv %{buildroot}%{ruby_libdir}/gems %{buildroot}%{gem_dir}
d54c42
d54c42
# Create folders for gem binary extensions.
d54c42
# TODO: These folders should go into rubygem-filesystem but how to achieve it,
d54c42
# since noarch package cannot provide arch dependent subpackages?
d54c42
# http://rpm.org/ticket/78
d54c42
mkdir -p %{buildroot}%{_exec_prefix}/lib{,64}/gems/%{pkg_name}
d54c42
d54c42
# Move bundled rubygems to %%gem_dir and %%gem_extdir_mri
d54c42
# make symlinks in ruby_stdlib for unbundled Gems, so that everything works as expected
d54c42
# bigdecimal and io-console are not enough for scl
d54c42
mkdir -p %{buildroot}%{gem_dir}/gems/rake-%{rake_version}/lib
d54c42
mv %{buildroot}%{ruby_libdir}/rake* %{buildroot}%{gem_dir}/gems/rake-%{rake_version}/lib
d54c42
mv %{buildroot}%{gem_dir}/specifications/default/rake-%{rake_version}.gemspec %{buildroot}%{gem_dir}/specifications
d54c42
ln -s %{gem_dir}/gems/rake-%{rake_version}/lib/rake.rb %{buildroot}%{ruby_libdir}/rake.rb
d54c42
ln -s %{gem_dir}/gems/rake-%{rake_version}/lib/rake %{buildroot}%{ruby_libdir}/rake
d54c42
d54c42
mkdir -p %{buildroot}%{gem_dir}/gems/rdoc-%{rdoc_version}/lib
d54c42
mv %{buildroot}%{ruby_libdir}/rdoc* %{buildroot}%{gem_dir}/gems/rdoc-%{rdoc_version}/lib
d54c42
mv %{buildroot}%{gem_dir}/specifications/default/rdoc-%{rdoc_version}.gemspec %{buildroot}%{gem_dir}/specifications
d54c42
ln -s %{gem_dir}/gems/rdoc-%{rdoc_version}/lib/rdoc.rb %{buildroot}%{ruby_libdir}/rdoc.rb
d54c42
ln -s %{gem_dir}/gems/rdoc-%{rdoc_version}/lib/rdoc %{buildroot}%{ruby_libdir}/rdoc
d54c42
d54c42
mkdir -p %{buildroot}%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib
d54c42
mkdir -p %{buildroot}%{_libdir}/gems/%{pkg_name}/bigdecimal-%{bigdecimal_version}
d54c42
mv %{buildroot}%{ruby_libdir}/bigdecimal %{buildroot}%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib
d54c42
mv %{buildroot}%{ruby_libarchdir}/bigdecimal.so %{buildroot}%{_libdir}/gems/%{pkg_name}/bigdecimal-%{bigdecimal_version}
d54c42
mv %{buildroot}%{gem_dir}/specifications/default/bigdecimal-%{bigdecimal_version}.gemspec %{buildroot}%{gem_dir}/specifications
d54c42
ln -s %{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib/bigdecimal %{buildroot}%{ruby_libdir}/bigdecimal
d54c42
ln -s %{_libdir}/gems/%{pkg_name}/bigdecimal-%{bigdecimal_version}/bigdecimal.so %{buildroot}%{ruby_libarchdir}/bigdecimal.so
d54c42
d54c42
mkdir -p %{buildroot}%{gem_dir}/gems/io-console-%{io_console_version}/lib
d54c42
mkdir -p %{buildroot}%{_libdir}/gems/%{pkg_name}/io-console-%{io_console_version}/io
d54c42
mv %{buildroot}%{ruby_libdir}/io %{buildroot}%{gem_dir}/gems/io-console-%{io_console_version}/lib
d54c42
mv %{buildroot}%{ruby_libarchdir}/io/console.so %{buildroot}%{_libdir}/gems/%{pkg_name}/io-console-%{io_console_version}/io
d54c42
mv %{buildroot}%{gem_dir}/specifications/default/io-console-%{io_console_version}.gemspec %{buildroot}%{gem_dir}/specifications
d54c42
ln -s %{gem_dir}/gems/io-console-%{io_console_version}/lib/io %{buildroot}%{ruby_libdir}/io
d54c42
ln -s %{_libdir}/gems/%{pkg_name}/io-console-%{io_console_version}/io/console.so %{buildroot}%{ruby_libarchdir}/io/console.so
d54c42
d54c42
mkdir -p %{buildroot}%{gem_dir}/gems/json-%{json_version}/lib
d54c42
mkdir -p %{buildroot}%{_libdir}/gems/%{pkg_name}/json-%{json_version}
d54c42
mv %{buildroot}%{ruby_libdir}/json* %{buildroot}%{gem_dir}/gems/json-%{json_version}/lib
d54c42
mv %{buildroot}%{ruby_libarchdir}/json/ %{buildroot}%{_libdir}/gems/%{pkg_name}/json-%{json_version}/
d54c42
mv %{buildroot}%{gem_dir}/specifications/default/json-%{json_version}.gemspec %{buildroot}%{gem_dir}/specifications
d54c42
ln -s %{gem_dir}/gems/json-%{json_version}/lib/json.rb %{buildroot}%{ruby_libdir}/json.rb
d54c42
ln -s %{gem_dir}/gems/json-%{json_version}/lib/json %{buildroot}%{ruby_libdir}/json
d54c42
ln -s %{_libdir}/gems/%{pkg_name}/json-%{json_version}/json/ %{buildroot}%{ruby_libarchdir}/json
d54c42
d54c42
mkdir -p %{buildroot}%{gem_dir}/gems/psych-%{psych_version}/lib
d54c42
mkdir -p %{buildroot}%{_libdir}/gems/%{pkg_name}/psych-%{psych_version}
d54c42
mv %{buildroot}%{ruby_libdir}/psych* %{buildroot}%{gem_dir}/gems/psych-%{psych_version}/lib
d54c42
mv %{buildroot}%{ruby_libarchdir}/psych.so %{buildroot}%{_libdir}/gems/%{pkg_name}/psych-%{psych_version}
d54c42
mv %{buildroot}%{gem_dir}/specifications/default/psych-%{psych_version}.gemspec %{buildroot}%{gem_dir}/specifications
d54c42
ln -s %{gem_dir}/gems/psych-%{psych_version}/lib/psych %{buildroot}%{ruby_libdir}/psych
d54c42
ln -s %{gem_dir}/gems/psych-%{psych_version}/lib/psych.rb %{buildroot}%{ruby_libdir}/psych.rb
d54c42
ln -s %{_libdir}/gems/%{pkg_name}/psych-%{psych_version}/psych.so %{buildroot}%{ruby_libarchdir}/psych.so
d54c42
d54c42
# Adjust the gemspec files so that the gems will load properly
d54c42
sed -i '/^end$/ i\
d54c42
  s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/specifications/rake-%{rake_version}.gemspec
d54c42
d54c42
sed -i '/^end$/ i\
d54c42
  s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/specifications/rdoc-%{rdoc_version}.gemspec
d54c42
d54c42
sed -i '/^end$/ i\
d54c42
  s.require_paths = ["lib"]\
d54c42
  s.extensions = ["bigdecimal.so"]' %{buildroot}%{gem_dir}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
d54c42
d54c42
sed -i '/^end$/ i\
d54c42
  s.require_paths = ["lib"]\
d54c42
  s.extensions = ["io/console.so"]' %{buildroot}%{gem_dir}/specifications/io-console-%{io_console_version}.gemspec
d54c42
d54c42
sed -i '/^end$/ i\
d54c42
  s.require_paths = ["lib"]\
d54c42
  s.extensions = ["json/ext/parser.so", "json/ext/generator.so"]' %{buildroot}%{gem_dir}/specifications/json-%{json_version}.gemspec
d54c42
d54c42
# Push the .gemspecs through the RubyGems to let them write the stub headers.
d54c42
# This speeds up loading of libraries and avoids warnings in Spring:
d54c42
# https://github.com/rubygems/rubygems/pull/694
d54c42
for s in rake-%{rake_version}.gemspec rdoc-%{rdoc_version}.gemspec json-%{json_version}.gemspec; do
d54c42
  s="%{buildroot}%{gem_dir}/specifications/$s"
d54c42
  make runruby TESTRUN_SCRIPT="-rubygems \
d54c42
   -e \"spec = Gem::Specification.load(%{$s})\" \
d54c42
   -e \"File.write %{$s}, spec.to_ruby\""
d54c42
done
d54c42
d54c42
# Install a tapset and fix up the path to the library.
d54c42
mkdir -p %{buildroot}%{tapset_dir}
d54c42
sed -e "s|@LIBRARY_PATH@|%{tapset_libdir}/libruby.so.%{major_minor_version}|" \
d54c42
  %{SOURCE2} > %{buildroot}%{tapset_dir}/libruby.so.%{major_minor_version}.stp
d54c42
# Escape '*/' in comment.
d54c42
sed -i -r "s|( \*.*\*)\/(.*)|\1\\\/\2|" %{buildroot}%{tapset_dir}/libruby.so.%{major_minor_version}.stp
d54c42
d54c42
%check
d54c42
# Ruby software collection tests
d54c42
%{?scl:scl enable %scl - << \EOF
d54c42
mkdir -p ./lib/rubygems/defaults
d54c42
cp %{SOURCE1} ./lib/rubygems/defaults
d54c42
make test-all TESTS="%{SOURCE8}" || exit 1
d54c42
rm -rf ./lib/rubygems/defaults
d54c42
EOF}
d54c42
d54c42
# Sanity check that SystemTap (dtrace) was detected.
d54c42
make runruby TESTRUN_SCRIPT=%{SOURCE11}
d54c42
d54c42
DISABLE_TESTS=""
d54c42
d54c42
# test_debug(TestRubyOptions) fails due to LoadError reported in debug mode,
d54c42
# when abrt.rb cannot be required (seems to be easier way then customizing
d54c42
# the test suite).
d54c42
touch abrt.rb
d54c42
d54c42
# Test is broken due to SSLv3 disabled in Fedora.
d54c42
# https://bugs.ruby-lang.org/issues/10046
d54c42
sed -i '/def test_ctx_client_session_cb$/,/^  end$/ s/^/#/' test/openssl/test_ssl_session.rb
d54c42
sed -i '/def test_ctx_server_session_cb$/,/^  end$/ s/^/#/' test/openssl/test_ssl_session.rb
d54c42
d54c42
make check TESTS="-v $DISABLE_TESTS"
d54c42
d54c42
%post libs -p /sbin/ldconfig
d54c42
d54c42
%postun libs -p /sbin/ldconfig
d54c42
d54c42
%files
d54c42
%doc BSDL
d54c42
%doc COPYING
d54c42
%lang(ja) %doc COPYING.ja
d54c42
%doc GPL
d54c42
%doc LEGAL
d54c42
%{_bindir}/erb
d54c42
%{_bindir}/%{pkg_name}%{?with_rubypick:-mri}
d54c42
%{_mandir}/man1/erb*
d54c42
%{_mandir}/man1/ruby*
d54c42
d54c42
# http://fedoraproject.org/wiki/Packaging:Guidelines#Packaging_Static_Libraries
d54c42
%exclude %{_libdir}/libruby-static.a
d54c42
d54c42
%files devel
d54c42
%doc BSDL
d54c42
%doc COPYING
d54c42
%lang(ja) %doc COPYING.ja
d54c42
%doc GPL
d54c42
%doc LEGAL
d54c42
%doc README.EXT
d54c42
%lang(ja) %doc README.EXT.ja
d54c42
d54c42
%config(noreplace) %{_root_sysconfdir}/rpm/macros.ruby%{?scl:.%{scl}}
d54c42
d54c42
%{_includedir}/*
d54c42
%{_libdir}/libruby.so
d54c42
%{_libdir}/pkgconfig/%{pkg_name}.pc
d54c42
d54c42
%files libs
d54c42
%doc COPYING
d54c42
%lang(ja) %doc COPYING.ja
d54c42
%doc GPL
d54c42
%doc LEGAL
d54c42
%doc README.md
d54c42
%lang(ja) %doc README.ja.md
d54c42
%doc NEWS
d54c42
%doc doc/NEWS-*
d54c42
# Exclude /usr/local directory since it is supposed to be managed by
d54c42
# local system administrator.
d54c42
%exclude %{ruby_sitelibdir}
d54c42
%exclude %{ruby_sitearchdir}
d54c42
%dir %{ruby_vendorlibdir}
d54c42
%dir %{ruby_vendorarchdir}
d54c42
d54c42
# List all these files explicitly to prevent surprises
d54c42
# Platform independent libraries.
d54c42
%dir %{ruby_libdir}
d54c42
%{ruby_libdir}/*.rb
d54c42
%exclude %{ruby_libdir}/*-tk.rb
d54c42
%exclude %{ruby_libdir}/irb.rb
d54c42
%exclude %{ruby_libdir}/tcltk.rb
d54c42
%exclude %{ruby_libdir}/tk*.rb
d54c42
%exclude %{ruby_libdir}/psych.rb
d54c42
%exclude %{ruby_libdir}/rake.rb
d54c42
%exclude %{ruby_libdir}/rdoc.rb
d54c42
d54c42
%{ruby_libdir}/cgi
d54c42
%{ruby_libdir}/digest
d54c42
%{ruby_libdir}/drb
d54c42
%{ruby_libdir}/fiddle
d54c42
%exclude %{ruby_libdir}/irb
d54c42
%{ruby_libdir}/matrix
d54c42
%{ruby_libdir}/net
d54c42
%{ruby_libdir}/openssl
d54c42
%{ruby_libdir}/optparse
d54c42
%{ruby_libdir}/racc
d54c42
%{ruby_libdir}/rbconfig
d54c42
%{ruby_libdir}/rexml
d54c42
%{ruby_libdir}/rinda
d54c42
%{ruby_libdir}/ripper
d54c42
%{ruby_libdir}/rss
d54c42
%{ruby_libdir}/shell
d54c42
%{ruby_libdir}/syslog
d54c42
%exclude %{ruby_libdir}/tk
d54c42
%exclude %{ruby_libdir}/tkextlib
d54c42
%{ruby_libdir}/unicode_normalize
d54c42
%{ruby_libdir}/uri
d54c42
%{ruby_libdir}/webrick
d54c42
%{ruby_libdir}/xmlrpc
d54c42
%{ruby_libdir}/yaml
d54c42
d54c42
# Platform specific libraries.
d54c42
%{_libdir}/libruby.so.*
d54c42
%dir %{ruby_libarchdir}
d54c42
%{ruby_libarchdir}/continuation.so
d54c42
%{ruby_libarchdir}/coverage.so
d54c42
%{ruby_libarchdir}/date_core.so
d54c42
%{ruby_libarchdir}/dbm.so
d54c42
%dir %{ruby_libarchdir}/digest
d54c42
%{ruby_libarchdir}/digest.so
d54c42
%{ruby_libarchdir}/digest/bubblebabble.so
d54c42
%{ruby_libarchdir}/digest/md5.so
d54c42
%{ruby_libarchdir}/digest/rmd160.so
d54c42
%{ruby_libarchdir}/digest/sha1.so
d54c42
%{ruby_libarchdir}/digest/sha2.so
d54c42
%dir %{ruby_libarchdir}/enc
d54c42
%{ruby_libarchdir}/enc/big5.so
d54c42
%{ruby_libarchdir}/enc/cp949.so
d54c42
%{ruby_libarchdir}/enc/emacs_mule.so
d54c42
%{ruby_libarchdir}/enc/encdb.so
d54c42
%{ruby_libarchdir}/enc/euc_jp.so
d54c42
%{ruby_libarchdir}/enc/euc_kr.so
d54c42
%{ruby_libarchdir}/enc/euc_tw.so
d54c42
%{ruby_libarchdir}/enc/gb18030.so
d54c42
%{ruby_libarchdir}/enc/gb2312.so
d54c42
%{ruby_libarchdir}/enc/gbk.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_1.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_10.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_11.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_13.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_14.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_15.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_16.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_2.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_3.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_4.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_5.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_6.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_7.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_8.so
d54c42
%{ruby_libarchdir}/enc/iso_8859_9.so
d54c42
%{ruby_libarchdir}/enc/koi8_r.so
d54c42
%{ruby_libarchdir}/enc/koi8_u.so
d54c42
%{ruby_libarchdir}/enc/shift_jis.so
d54c42
%dir %{ruby_libarchdir}/enc/trans
d54c42
%{ruby_libarchdir}/enc/trans/big5.so
d54c42
%{ruby_libarchdir}/enc/trans/chinese.so
d54c42
%{ruby_libarchdir}/enc/trans/emoji.so
d54c42
%{ruby_libarchdir}/enc/trans/emoji_iso2022_kddi.so
d54c42
%{ruby_libarchdir}/enc/trans/emoji_sjis_docomo.so
d54c42
%{ruby_libarchdir}/enc/trans/emoji_sjis_kddi.so
d54c42
%{ruby_libarchdir}/enc/trans/emoji_sjis_softbank.so
d54c42
%{ruby_libarchdir}/enc/trans/escape.so
d54c42
%{ruby_libarchdir}/enc/trans/gb18030.so
d54c42
%{ruby_libarchdir}/enc/trans/gbk.so
d54c42
%{ruby_libarchdir}/enc/trans/iso2022.so
d54c42
%{ruby_libarchdir}/enc/trans/japanese.so
d54c42
%{ruby_libarchdir}/enc/trans/japanese_euc.so
d54c42
%{ruby_libarchdir}/enc/trans/japanese_sjis.so
d54c42
%{ruby_libarchdir}/enc/trans/korean.so
d54c42
%{ruby_libarchdir}/enc/trans/single_byte.so
d54c42
%{ruby_libarchdir}/enc/trans/transdb.so
d54c42
%{ruby_libarchdir}/enc/trans/utf8_mac.so
d54c42
%{ruby_libarchdir}/enc/trans/utf_16_32.so
d54c42
%{ruby_libarchdir}/enc/utf_16be.so
d54c42
%{ruby_libarchdir}/enc/utf_16le.so
d54c42
%{ruby_libarchdir}/enc/utf_32be.so
d54c42
%{ruby_libarchdir}/enc/utf_32le.so
d54c42
%{ruby_libarchdir}/enc/windows_1251.so
d54c42
%{ruby_libarchdir}/enc/windows_31j.so
d54c42
%{ruby_libarchdir}/etc.so
d54c42
%{ruby_libarchdir}/fcntl.so
d54c42
%{ruby_libarchdir}/fiber.so
d54c42
%{ruby_libarchdir}/fiddle.so
d54c42
%{ruby_libarchdir}/gdbm.so
d54c42
%dir %{ruby_libarchdir}/io
d54c42
%{ruby_libarchdir}/io/nonblock.so
d54c42
%{ruby_libarchdir}/io/wait.so
d54c42
%dir %{ruby_libarchdir}/mathn
d54c42
%{ruby_libarchdir}/mathn/complex.so
d54c42
%{ruby_libarchdir}/mathn/rational.so
d54c42
%{ruby_libarchdir}/nkf.so
d54c42
%{ruby_libarchdir}/objspace.so
d54c42
%{ruby_libarchdir}/openssl.so
d54c42
%{ruby_libarchdir}/pathname.so
d54c42
%{ruby_libarchdir}/pty.so
d54c42
%dir %{ruby_libarchdir}/racc
d54c42
%{ruby_libarchdir}/racc/cparse.so
d54c42
%dir %{ruby_libarchdir}/rbconfig
d54c42
%{ruby_libarchdir}/rbconfig.rb
d54c42
%{ruby_libarchdir}/rbconfig/sizeof.so
d54c42
%{ruby_libarchdir}/readline.so
d54c42
%{ruby_libarchdir}/ripper.so
d54c42
%{ruby_libarchdir}/sdbm.so
d54c42
%{ruby_libarchdir}/socket.so
d54c42
%{ruby_libarchdir}/stringio.so
d54c42
%{ruby_libarchdir}/strscan.so
d54c42
%{ruby_libarchdir}/syslog.so
d54c42
%exclude %{ruby_libarchdir}/tcltklib.so
d54c42
%{ruby_libarchdir}/thread.so
d54c42
%exclude %{ruby_libarchdir}/tkutil.so
d54c42
%{ruby_libarchdir}/zlib.so
d54c42
d54c42
%{tapset_root}
d54c42
d54c42
%files -n %{?scl_prefix}rubygems
d54c42
%{_bindir}/gem
d54c42
%{rubygems_dir}
d54c42
d54c42
# Explicitly include only RubyGems directory strucure to avoid accidentally
d54c42
# packaged content.
d54c42
%dir %{gem_dir}
d54c42
%dir %{gem_dir}/build_info
d54c42
%dir %{gem_dir}/cache
d54c42
%dir %{gem_dir}/doc
d54c42
%dir %{gem_dir}/extensions
d54c42
%dir %{gem_dir}/gems
d54c42
%dir %{gem_dir}/specifications
d54c42
%dir %{gem_dir}/specifications/default
d54c42
%dir %{_exec_prefix}/lib*/gems
d54c42
%dir %{_exec_prefix}/lib*/gems/ruby
d54c42
d54c42
%exclude %{gem_dir}/cache/*
d54c42
d54c42
%files -n %{?scl_prefix}rubygems-devel
d54c42
%config(noreplace) %{_root_sysconfdir}/rpm/macros.rubygems%{?scl:.%{scl}}
d54c42
d54c42
%files -n %{?scl_prefix}rubygem-rake
d54c42
%{ruby_libdir}/rake*
d54c42
%{_bindir}/rake
d54c42
%{gem_dir}/gems/rake-%{rake_version}
d54c42
%{gem_dir}/specifications/rake-%{rake_version}.gemspec
d54c42
%{_mandir}/man1/rake.1*
d54c42
d54c42
%files irb
d54c42
%{_bindir}/irb
d54c42
%{ruby_libdir}/irb.rb
d54c42
%{ruby_libdir}/irb
d54c42
%{_mandir}/man1/irb.1*
d54c42
d54c42
%files -n %{?scl_prefix}rubygem-rdoc
d54c42
%{ruby_libdir}/rdoc*
d54c42
%{_bindir}/rdoc
d54c42
%{_bindir}/ri
d54c42
%{gem_dir}/gems/rdoc-%{rdoc_version}
d54c42
%{gem_dir}/specifications/rdoc-%{rdoc_version}.gemspec
d54c42
%{_mandir}/man1/ri*
d54c42
d54c42
%files doc
d54c42
%doc README.md
d54c42
%lang(ja) %doc README.ja.md
d54c42
%doc ChangeLog
d54c42
%doc doc/ChangeLog-*
d54c42
%doc ruby-exercise.stp
d54c42
%{_datadir}/ri
d54c42
d54c42
%files -n %{?scl_prefix}rubygem-bigdecimal
d54c42
%{ruby_libdir}/bigdecimal
d54c42
%{ruby_libarchdir}/bigdecimal.so
d54c42
%{_libdir}/gems/%{pkg_name}/bigdecimal-%{bigdecimal_version}
d54c42
%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}
d54c42
%{gem_dir}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
d54c42
d54c42
%files -n %{?scl_prefix}rubygem-io-console
d54c42
%{ruby_libdir}/io
d54c42
%{ruby_libarchdir}/io/console.so
d54c42
%{_libdir}/gems/%{pkg_name}/io-console-%{io_console_version}
d54c42
%{gem_dir}/gems/io-console-%{io_console_version}
d54c42
%{gem_dir}/specifications/io-console-%{io_console_version}.gemspec
d54c42
d54c42
%files -n %{?scl_prefix}rubygem-json
d54c42
%{ruby_libdir}/json*
d54c42
%{ruby_libarchdir}/json*
d54c42
%{_libdir}/gems/%{pkg_name}/json-%{json_version}
d54c42
%{gem_dir}/gems/json-%{json_version}
d54c42
%{gem_dir}/specifications/json-%{json_version}.gemspec
d54c42
d54c42
%files -n %{?scl_prefix}rubygem-minitest
d54c42
%{gem_dir}/gems/minitest-%{minitest_version}
d54c42
%exclude %{gem_dir}/gems/minitest-%{minitest_version}/.*
d54c42
%{gem_dir}/specifications/minitest-%{minitest_version}.gemspec
d54c42
d54c42
%files -n %{?scl_prefix}rubygem-power_assert
d54c42
%{gem_dir}/gems/power_assert-%{power_assert_version}
d54c42
%exclude %{gem_dir}/gems/power_assert-%{power_assert_version}/.*
d54c42
%{gem_dir}/specifications/power_assert-%{power_assert_version}.gemspec
d54c42
d54c42
%files -n %{?scl_prefix}rubygem-psych
d54c42
%{ruby_libdir}/psych
d54c42
%{ruby_libdir}/psych.rb
d54c42
%{ruby_libarchdir}/psych.so
d54c42
%{_libdir}/gems/%{pkg_name}/psych-%{psych_version}
d54c42
%{gem_dir}/gems/psych-%{psych_version}
d54c42
%{gem_dir}/specifications/psych-%{psych_version}.gemspec
d54c42
d54c42
%files -n %{?scl_prefix}rubygem-test-unit
d54c42
%{gem_dir}/gems/test-unit-%{test_unit_version}
d54c42
%{gem_dir}/specifications/test-unit-%{test_unit_version}.gemspec
d54c42
d54c42
%files tcltk
d54c42
%{ruby_libdir}/*-tk.rb
d54c42
%{ruby_libdir}/tcltk.rb
d54c42
%{ruby_libdir}/tk*.rb
d54c42
%{ruby_libarchdir}/tcltklib.so
d54c42
%{ruby_libarchdir}/tkutil.so
d54c42
%{ruby_libdir}/tk
d54c42
%{ruby_libdir}/tkextlib
d54c42
d54c42
%changelog
6e7d33
* Wed Jun 22 2016 Jun Aruga <jaruga@redhat.com> - 2.2.2-15
6e7d33
- Fix for "dh key too small" error of OpenSSL 1.0.2+.
6e7d33
  Resolves: rhbz#1348918
6e7d33
6e7d33
* Tue Jun 14 2016 Jun Aruga <jaruga@redhat.com> - 2.2.2-13
6e7d33
- Fix the bug for object allocation during gc phase.
6e7d33
  Resolves: rhbz#1317076
6e7d33
b54141
* Mon Aug 10 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.2-12
b54141
- Fix DNS hijacking vulnerability in api_endpoint() (CVE-2015-3900,
b54141
  CVE-2015-4020).
6e7d33
  Resolves: rhbz#1251466
b54141
d54c42
* Tue Apr 28 2015 Josef Stribny <jstribny@redhat.com> - 2.2.2-11
d54c42
- Update to Ruby 2.2.2
d54c42
  - Resolves: rhbz#1215958
d54c42
d54c42
* Fri Mar 20 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.1-10
d54c42
- Fix libruby.so versions in SystemTap scripts (rhbz#1202232).
d54c42
d54c42
* Wed Mar 04 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.1-9
d54c42
- Update to Ruby 2.2.1.
d54c42
d54c42
* Thu Feb 05 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-7
d54c42
- Fix directory ownership.
d54c42
d54c42
* Wed Feb 04 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-6
d54c42
- Make operating_system.rb more robust.
d54c42
- Add RubyGems stub headers for bundled gems.
d54c42
d54c42
* Fri Jan 30 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-5
d54c42
- Remove dangling symlinks.
d54c42
d54c42
* Thu Jan 29 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-4
d54c42
- Add missing rubygem-test-unit dependency on rubygem-power_assert.
d54c42
d54c42
* Tue Jan 20 2015 Josef Stribny <jstribny@redhat.com> - 2.2.0-3
d54c42
- Fix JSON ext symlink
d54c42
d54c42
* Thu Jan 15 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-2
d54c42
- Fixed operating_system to properly install binary extensions.
d54c42
- Rebase patches to apply cleanly.
d54c42
- Fix PPC64LE support.
d54c42
- Fix -tcltk requires.
d54c42
d54c42
* Fri Jan 02 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-1
d54c42
- Upgrade to Ruby 2.2.0.
d54c42
d54c42
* Fri Nov 14 2014 Vít Ondruch <vondruch@redhat.com> - 2.0.0.353-24
d54c42
- Fix off-by-one stack-based buffer overflow in the encodes() function
d54c42
  (CVE-2014-4975).
d54c42
  Related: rhbz#1164005
d54c42
- Fix REXML billion laughs attack via parameter entity expansion
d54c42
  (CVE-2014-8080).
d54c42
  Related: rhbz#1164005
d54c42
- REXML incomplete fix for CVE-2014-8080 (CVE-2014-8090).
d54c42
  Related: rhbz#1164005
d54c42
d54c42
* Fri Feb 28 2014 Vít Ondruch <vondruch@redhat.com> - 2.0.0.353-23
d54c42
- Explicitly depend on libyaml, to workaround issues with scl prefixed libyam.
d54c42
  Resolves: rhbz#1071347
d54c42
d54c42
* Mon Feb 24 2014 Vít Ondruch <vondruch@redhat.com> - 2.0.0.353-22
d54c42
- Fix RubyGems test suite.
d54c42
  Resolves: rhbz#1069184
d54c42
- Do not use bundled libyaml.
d54c42
  Resolves: rhbz#1069107
d54c42
d54c42
* Tue Feb 11 2014 Vít Ondruch <vondruch@redhat.com> - 2.0.0.353-21
d54c42
- ruby-libs have to require scl_runtime.
d54c42
  Resolves: rhbz#1054758
d54c42
d54c42
* Mon Feb 10 2014 Josef Stribny <jstribny@redhat.com> - 2.0.0.353-20
d54c42
- Don't link cert.pem explicitely
d54c42
  - Resolves: rhbz#1057069
d54c42
d54c42
* Fri Jan 10 2014 Josef Stribny <jstribny@redhat.com> - 2.0.0.353-19
d54c42
- Fix tk extconf not to include -rpath
d54c42
  - Resolves: rhbz#1051011
d54c42
d54c42
* Mon Jan 06 2014 Vít Ondruch <vondruch@redhat.com> - 2.0.0.353-18
d54c42
- Fix FTBFS due to expired certificate for IMAP test case.
d54c42
  - Resolves: rhbz#1048923
d54c42
d54c42
* Mon Dec 16 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.353-17
d54c42
- Remove rdoc obsoletes
d54c42
  - Resolves: rhbz#1043039
d54c42
d54c42
* Mon Dec 02 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.353-16
d54c42
- Update to Ruby 2.0.0-p353
d54c42
  - Fixes heap overflow in floating point parsing (CVE-2013-4164)
d54c42
  - Resolves: rhbz#1033906
d54c42
d54c42
* Thu Nov 28 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.247-15
d54c42
- Fix depending collections can't point into correct directory
d54c42
  - Resolves: rhbz#1034638
d54c42
- Fix binary extensions cannot be loaded from an scl namespace other than ruby200
d54c42
  - Resolves: rhbz#1034639
d54c42
- Enable OpenSSL MD5 hashes for tests
d54c42
d54c42
* Wed Nov 13 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.247-14
d54c42
- Update to Ruby 2.0.0-p247 (rhbz#979605).
d54c42
- Fix CVE-2013-4073.
d54c42
- Fix for wrong makefiles created by mkmf (rhbz#921650).
d54c42
- Add support for ABRT autoloading.
d54c42
- Better support for build without configuration (rhbz#977941).
d54c42
- Fix RubyGems version.
d54c42
- Fix RubyGems search paths when building gems with native extension
d54c42
  (rhbz#979133).
d54c42
- Fixes multilib conlicts of .gemspec files.
d54c42
- Make symlinks for psych gem to ruby stdlib dirs (rhbz#979133).
d54c42
- Use system-wide cert.pem.
d54c42
d54c42
* Wed Nov 13 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.195-13
d54c42
- Update to Ruby 2.0.0-p195 (rhbz#917374).
d54c42
- Fix object taint bypassing in DL and Fiddle (CVE-2013-2065).
d54c42
- Fix build against OpenSSL with enabled ECC curves.
d54c42
- Add aarch64 support (rhbz#926463).
d54c42
d54c42
* Fri Oct 18 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.0-12
d54c42
- Patch RDoc's unterminated heredoc because of the rails documentation
d54c42
d54c42
* Fri Oct 18 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.0-11
d54c42
- Change macros.ruby to use pkg_name macro instead of name one
d54c42
d54c42
* Thu Oct 03 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.0-10
d54c42
- Fix gem_extdir_mri macro for SCL
d54c42
- Change operating_system.rb to use /ruby instead of /exts for extensions
d54c42
d54c42
* Thu Sep 26 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.0-9
d54c42
- Add patches for CVE-2013-4287 and CVE-2013-4363
d54c42
d54c42
* Fri May 10 2013 Josef Stribny <jstribny@redhat.com> - 2.0.0.0-8
d54c42
- Rebuild for scl
d54c42
- Revert to operating_system.rb from Ruby 1.9.3 package
d54c42
d54c42
* Fri Apr 19 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-7
d54c42
- Macro definition moved into macros.ruby and macros.rubygems files.
d54c42
- Added filtering macros.
d54c42
- Filter automatically generated provides of private libraries (rhbz#947408).
d54c42
d54c42
* Fri Mar 22 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-6
d54c42
- Fix RbConfig::CONFIG['exec_prefix'] returns empty string (rhbz#924851).
d54c42
d54c42
* Thu Mar 21 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-5
d54c42
- Make Ruby buildable without rubypick.
d54c42
- Prevent random test failures.
d54c42
d54c42
* Fri Mar 08 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.0.0.0-4
d54c42
- Don't mark rpm config file as %%config (fpc#259)
d54c42
d54c42
* Tue Mar 05 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-3
d54c42
- Avoid "method redefined;" warnings due to modified operating_system.rb.
d54c42
- Fix strange paths created during build of binary gems.
d54c42
d54c42
* Mon Feb 25 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-2
d54c42
- Prevent squash of %%gem_install with following line.
d54c42
d54c42
* Mon Feb 25 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-1
d54c42
- Update to Ruby 2.0.0-p0.
d54c42
- Change %%{ruby_extdir} to %%{ruby_extdir_mri} in preparation for better
d54c42
  JRuby support.
d54c42
d54c42
* Mon Feb 25 2013 Mamoru TASAKA <mtasaka@fedoraprojec.org> - 2.0.0.0-0.3.r39387
d54c42
- Move test-unit.gemspec to -libs subpackage for now because rubygems
d54c42
  2.0.0 does not create this
d54c42
d54c42
* Fri Feb 22 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-0.2.r39387
d54c42
- Fix issues with wrong value of Rubygem's shebang introduced in r39267.
d54c42
d54c42
* Fri Feb 22 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-0.1.r39387
d54c42
- Upgrade to Ruby 2.0.0 (r39387).
d54c42
- Introduce %%gem_install macro.
d54c42
- Build against libdb instead of libdb4 (rhbz#894022).
d54c42
- Move native extensions from exts to ruby directory.
d54c42
- Enable most of the PPC test suite.
d54c42
- Change ruby(abi) -> ruby(release).
d54c42
- Rename ruby executable to ruby-mri, to be prepared for RubyPick.
d54c42
- Add ruby(runtime_executable) virtual provide, which is later used
d54c42
  by RubyPick.
d54c42
- RDoc now depends on JSON.
d54c42
- Try to make -doc subpackage noarch again, since the new RDoc should resolve
d54c42
  the arch dependent issues (https://github.com/rdoc/rdoc/issues/71).
d54c42
- Enable SystemTap support.
d54c42
- Add TapSet for Ruby.
d54c42
- Split Psych into rubygem-psych subpackage.
d54c42
d54c42
* Mon Feb 11 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.385-28
d54c42
- Update to 1.9.3 p385
d54c42
d54c42
* Sat Jan 19 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.374-27
d54c42
- Update to 1.9.3 p374
d54c42
- Fix provided variables in pkgconfig (bug 789532:
d54c42
  Vít Ondruch <vondruch@redhat.com>)
d54c42
d54c42
* Fri Jan 18 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-26
d54c42
- Provide non-versioned pkgconfig file (bug 789532)
d54c42
- Use db5 on F-19 (bug 894022)
d54c42
 
d54c42
* Wed Jan 16 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-25
d54c42
- Backport fix for the upstream PR7629, save the proc made from the given block
d54c42
  (bug 895173)
d54c42
d54c42
* Wed Jan  2 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-24
d54c42
- Update to 1.9.3.362
d54c42
d54c42
* Mon Dec 03 2012 Jaromir Capik <jcapik@redhat.com> - 1.9.3.327-23
d54c42
- Skipping test_parse.rb (fails on ARM at line 787)
d54c42
- http://bugs.ruby-lang.org/issues/6899
d54c42
d54c42
* Sun Nov 11 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.327-23
d54c42
- Skip test_str_crypt (on rawhide) for now (upstream bug 7312)
d54c42
d54c42
* Sat Nov 10 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.327-22
d54c42
- Ignore some network related tests
d54c42
d54c42
* Sat Nov 10 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.327-21
d54c42
- Update to 1.9.3.327
d54c42
- Fix Hash-flooding DoS vulnerability on MurmurHash function
d54c42
  (CVE-2012-5371)
d54c42
d54c42
* Sat Oct 13 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.286-19
d54c42
- Update to 1.9.3 p286
d54c42
- Don't create files when NUL-containing path name is passed
d54c42
  (bug 865940, CVE-2012-4522)
d54c42
d54c42
* Thu Oct 04 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.9.3.194-18
d54c42
- Patch from trunk for CVE-2012-4464, CVE-2012-4466
d54c42
d54c42
* Thu Sep 06 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-17
d54c42
- Split documentation into -doc subpackage (rhbz#854418).
d54c42
d54c42
* Tue Aug 14 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-16
d54c42
- Revert the dependency of ruby-libs on rubygems (rhbz#845011, rhbz#847482).
d54c42
d54c42
* Wed Aug 01 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-15
d54c42
- ruby-libs must require rubygems (rhbz#845011).
d54c42
d54c42
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.3.194-14
d54c42
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d54c42
d54c42
* Mon Jun 11 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1.9.3.194-13
d54c42
- Make the bigdecimal gem a runtime dependency of Ruby.
d54c42
d54c42
* Mon Jun 11 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1.9.3.194-12
d54c42
- Make symlinks for bigdecimal and io-console gems to ruby stdlib dirs (RHBZ 829209).
d54c42
d54c42
* Tue May 29 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1.9.3.194-11
d54c42
- Fix license to contain Public Domain.
d54c42
- macros.ruby now contains unexpanded macros.
d54c42
d54c42
* Sun Apr 22 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.9.3.194-10.1
d54c42
- Bump release
d54c42
d54c42
* Fri Apr 20 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-1
d54c42
- Update to Ruby 1.9.3-p194.
d54c42
d54c42
* Mon Apr 09 2012 Karsten Hopp <karsten@redhat.com> 1.9.3.125-3
d54c42
- disable check on ppc(64), RH bugzilla 803698
d54c42
d54c42
* Wed Feb 29 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.9.3.125-2
d54c42
- Temporarily disable make check on ARM until it's fixed upstream. Tracked in RHBZ 789410
d54c42
d54c42
* Mon Feb 20 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.125-1
d54c42
- Upgrade to Ruby 1.9.3-p125.
d54c42
d54c42
* Sun Jan 29 2012 Mamoru Tasaka <mtasaka@fedoraprpject.org> - 1.9.3.0-7
d54c42
- Make mkmf.rb verbose by default
d54c42
d54c42
* Thu Jan 26 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-6
d54c42
- Relax dependencies to allow external updates of bundled gems.
d54c42
d54c42
* Wed Jan 18 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-5
d54c42
- Initial release of Ruby 1.9.3.
d54c42
- Add rubygems dependency on io-console for user interactions.
d54c42
- Gems license clarification.
d54c42
d54c42
* Tue Jan 17 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-4
d54c42
- Bundled gems moved into dedicated directories and subpackages.
d54c42
- Create and own RubyGems directories for binary extensions.
d54c42
- Fix build with GCC 4.7.
d54c42
d54c42
* Mon Jan 16 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-3
d54c42
- Fix RHEL build.
d54c42
- Fixed directory ownership.
d54c42
- Verose build output.
d54c42
d54c42
* Sun Jan 15 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-2
d54c42
- Install RubyGems outside of Ruby directory structure.
d54c42
- RubyGems has not its own -devel subpackage.
d54c42
- Enhanced macros.ruby and macros.rubygems.
d54c42
- All tests are green now (bkabrda).
d54c42
d54c42
* Sat Jan 14 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-1
d54c42
- Initial package
d54c42
d54c42
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.7.357-2
d54c42
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d54c42
d54c42
* Thu Dec 29 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.357-1
d54c42
- Update to 1.8.7p357
d54c42
- Randomize hash on process startup (CVE-2011-4815, bug 750564)
d54c42
d54c42
* Fri Dec 23 2011 Dennis Gilmore <dennis@ausil.us> - 1.8.7.352-2
d54c42
- dont normalise arm cpus to arm
d54c42
- there is something weird about how ruby choses where to put bits
d54c42
d54c42
* Thu Nov 17 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.352-3
d54c42
- F-17: kill gdbm support for now due to licensing compatibility issue
d54c42
d54c42
* Sat Oct  1 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.352-2
d54c42
- F-17: rebuild against new gdbm
d54c42
d54c42
* Sat Jul 16 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.352-1
d54c42
- Update to 1.8.7 p352
d54c42
- CVE-2011-2686 is fixed in this version (bug 722415)
d54c42
- Update ext/tk to the latest git
d54c42
- Remove duplicate path entry (bug 718695)
d54c42
d54c42
* Thu Jul 14 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.334-4
d54c42
- Once fix FTBFS (bug 716021)
d54c42
d54c42
* Mon Jul 11 2011 Dennis Gilmore <dennis@ausil.us> - 1.8.7.334-3
d54c42
- normalise arm cpus to arm
d54c42
d54c42
* Mon May 30 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.334-2
d54c42
- Own %%{_normalized_cpu}-%%{_target_os} directory (bug 708816)
d54c42
d54c42
* Sat Feb 19 2011 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.334-1
d54c42
- Update to 1.8.7 p334
d54c42
d54c42
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.7.330-3
d54c42
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d54c42
d54c42
* Sun Jan 02 2011 Dennis Gilmore <dennis@ausil.us> - 1.8.7.330-2
d54c42
- nomalise the 32 bit sparc archs to sparc
d54c42
d54c42
* Sun Dec 26 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.330-1
d54c42
- Update to 1.8.7 p330
d54c42
- ext/tk updated to the newest header
d54c42
d54c42
* Thu Nov  4 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.302-2
d54c42
- Avoid multilib conflict on -libs subpackage (bug 649174)
d54c42
d54c42
* Mon Aug 23 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.302-1
d54c42
- Update to 1.8.7.302
d54c42
- CVE-2010-0541 (bug 587731) is fixed in this version
d54c42
- Update ext/tk to the latest head
d54c42
d54c42
* Mon Aug  2 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.299-5
d54c42
- More cleanup of spec file, expecially for rpmlint issue
d54c42
- build ri files in %%build
d54c42
d54c42
* Mon Jul 26 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.299-4
d54c42
- Cleanup spec file
d54c42
- Make -irb, -rdoc subpackage noarch
d54c42
- Make dependencies between arch-dependent subpackages isa specific
d54c42
- Improve sample documentation gathering
d54c42
d54c42
* Mon Jul 12 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.299-3
d54c42
- updated packaged based on feedback (from mtasaka)
d54c42
- added comments to all patches / sources
d54c42
- obsoleted ruby-mode, as it's now provided by the emacs package itself
d54c42
- readded missing documentation
d54c42
- various small compatability/regression fixes
d54c42
d54c42
* Tue Jul 06 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.299-2
d54c42
- readded bits to pull tk package from upstream source branch
d54c42
- removed unecessary .tk.old dir
d54c42
- renamed macros which may cause confusion, removed unused ones
d54c42
d54c42
* Thu Jun 24 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.299-1
d54c42
- integrate more of jmeyering's and mtaska's feedback
d54c42
- removed emacs bits that are now shipped with the emacs package
d54c42
- various patch and spec cleanup
d54c42
- rebased to ruby 1.8.7 patch 299, removed patches no longer needed:
d54c42
   ruby-1.8.7-openssl-1.0.patch, ruby-1.8.7-rb_gc_guard_ptr-optimization.patch
d54c42
d54c42
* Wed Jun 23 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-5
d54c42
- Various fixes
d54c42
d54c42
* Wed Jun 23 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-4
d54c42
- Fixed incorrect paths in 1.8.7 rpm
d54c42
d54c42
* Tue Jun 22 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-3
d54c42
- Integrated Jim Meyering's feedback and changes in to:
d54c42
- remove trailing blanks
d54c42
- placate rpmlint
d54c42
- ruby_* definitions: do not use trailing slashes in directory names
d54c42
- _normalized_cpu: simplify definition
d54c42
d54c42
* Mon Jun 21 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-2
d54c42
- Integrate mtasaka's feedback and changes
d54c42
- patch101 ruby_1_8_7-rb_gc_guard_ptr-optimization.patch
d54c42
d54c42
* Tue Jun 15 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-1
d54c42
- Initial Ruby 1.8.7 specfile
d54c42
d54c42
* Wed May 19 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-5
d54c42
- Retry for bug 559158, Simplify the OpenSSL::Digest class
d54c42
  pull more change commits from ruby_1_8 branch
d54c42
d54c42
* Mon May 17 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-4
d54c42
- Patch36 (ruby-1.8.x-RHASH_SIZE-rb_hash_lookup-def.patch)
d54c42
  also backport rb_hash_lookup definition (bug 592936)
d54c42
d54c42
* Thu May 13 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-3
d54c42
- ruby-1.8.x-null-class-must-be-Qnil.patch (bug 530407)
d54c42
- Recreate some patches using upstream svn when available, and
d54c42
  add some comments for patches
d54c42
d54c42
* Tue May 11 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-2
d54c42
- tcltk: Give up using potentially unmaintained ruby_1_8_6 branch
d54c42
  and instead completely replace with ruby_1_8 branch head
d54c42
  (at this time, using rev 27738)
d54c42
  (seems to fix 560053, 590503)
d54c42
- Fix Japanese encoding strings under ruby-tcltk/ext/tk/sample/
d54c42
d54c42
* Tue Apr 27 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-1
d54c42
- Update to 1.8.6 p 399 (bug 579675)
d54c42
- Patch to fix gc bug causing open4 crash (bug 580993)
d54c42
d54c42
* Fri Mar 12 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.388-9
d54c42
- F-14: rebuild against new gdbm
d54c42
d54c42
* Thu Jan 28 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
d54c42
- Once revert the previous change (patch34)
d54c42
d54c42
* Wed Jan 27 2010 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 1.8.6.388-8
d54c42
- Backport openssl/digest functions providing digest and hexdigest functions
d54c42
  directly in OpenSSL::Digest.methods
d54c42
- Make sure that Red Hat people version their changelog entries
d54c42
- This is actually release #1, but now needs to be release #7
d54c42
d54c42
* Mon Jan 18 2010 Akira TAGOH <tagoh@redhat.com> - 1.8.6.388-1
d54c42
- Add conditional for RHEL.
d54c42
d54c42
* Wed Jan 13 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-6
d54c42
- CVE-2009-4492 ruby WEBrick log escape sequence (bug 554485)
d54c42
d54c42
* Wed Dec  9 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-5
d54c42
- Change mkmf.rb to use LIBRUBYARG_SHARED so that have_library() works
d54c42
  without libruby-static.a (bug 428384)
d54c42
- And move libruby-static.a to -static subpackage
d54c42
d54c42
* Thu Oct 29 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-4
d54c42
- Use bison to regenerate parse.c to keep the original format of error
d54c42
  messages (bug 530275 comment 4)
d54c42
d54c42
* Sun Oct 25 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-3
d54c42
- Patch so that irb saves its history (bug 518584, ruby issue 1556)
d54c42
d54c42
* Sat Oct 24 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-2
d54c42
- Update to 1.8.6 patchlevel 383 (bug 520063)
d54c42
d54c42
* Wed Oct 14 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.369-5
d54c42
- Much better idea for Patch31 provided by Akira TAGOH <tagoh@redhat.com>
d54c42
d54c42
* Wed Oct 14 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.369-4
d54c42
- Fix the search path of ri command for ri manuals installed with gem
d54c42
  (bug 528787)
d54c42
d54c42
* Wed Aug 26 2009 Tomas Mraz <tmraz@redhat.com> - 1.8.6.369-3
d54c42
- Rebuild against new openssl
d54c42
d54c42
* Thu Jul 23 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.369-2
d54c42
- Make sure that readline.so is linked against readline 5 because
d54c42
  Ruby is under GPLv2
d54c42
d54c42
* Sat Jun 20 2009  Jeroen van Meeuwen <kanarip@fedoraproject.org> - 1.8.6.369-1
d54c42
- New patchlevel fixing CVE-2009-1904
d54c42
- Fix directory on ARM (#506233, Kedar Sovani)
d54c42
d54c42
* Sun May 31 2009 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 1.8.6.368-1
d54c42
- New upstream release (p368)
d54c42
d54c42
* Sat Apr 11 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.287-8
d54c42
- Merge Review fix (#226381)
d54c42
d54c42
* Wed Mar 18 2009 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 1.8.6.287-7
d54c42
- Fix regression in CVE-2008-3790 (#485383)
d54c42
d54c42
* Mon Mar 16 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.287-6
d54c42
- Again use -O2 optimization level
d54c42
- i586 should search i386-linux directory (on <= F-11)
d54c42
d54c42
* Thu Mar 05 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 1.8.6.287-5
d54c42
- Rebuild for gcc4.4
d54c42
d54c42
* Fri Feb 27 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 1.8.6.287-3
d54c42
- CVE-2008-5189: CGI header injection.
d54c42
d54c42
* Wed Oct  8 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.287-2
d54c42
- CVE-2008-3790: DoS vulnerability in the REXML module.
d54c42
d54c42
* Sat Aug 23 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.287-1
d54c42
- New upstream release.
d54c42
- Security fixes.
d54c42
  - CVE-2008-3655: Ruby does not properly restrict access to critical
d54c42
                   variables and methods at various safe levels.
d54c42
  - CVE-2008-3656: DoS vulnerability in WEBrick.
d54c42
  - CVE-2008-3657: Lack of taintness check in dl.
d54c42
  - CVE-2008-1447: DNS spoofing vulnerability in resolv.rb.
d54c42
  - CVE-2008-3443: Memory allocation failure in Ruby regex engine.
d54c42
- Remove the unnecessary backported patches.
d54c42
d54c42
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.8.6.230-5
d54c42
- rebuild against db4-4.7
d54c42
d54c42
* Tue Jul  1 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-4
d54c42
- Backported from upstream SVN to fix a segfault issue with Array#fill.
d54c42
d54c42
* Mon Jun 30 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-3
d54c42
- Backported from upstream SVN to fix a segfault issue. (#452825)
d54c42
- Backported from upstream SVN to fix an integer overflow in rb_ary_fill.
d54c42
d54c42
* Wed Jun 25 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-2
d54c42
- Fix a segfault issue. (#452810)
d54c42
d54c42
* Tue Jun 24 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-1
d54c42
- New upstream release.
d54c42
- Security fixes. (#452295)
d54c42
  - CVE-2008-1891: WEBrick CGI source disclosure.
d54c42
  - CVE-2008-2662: Integer overflow in rb_str_buf_append().
d54c42
  - CVE-2008-2663: Integer overflow in rb_ary_store().
d54c42
  - CVE-2008-2664: Unsafe use of alloca in rb_str_format().
d54c42
  - CVE-2008-2725: Integer overflow in rb_ary_splice().
d54c42
  - CVE-2008-2726: Integer overflow in rb_ary_splice().
d54c42
- ruby-1.8.6.111-CVE-2007-5162.patch: removed.
d54c42
- Build ruby-mode package for all archtectures.
d54c42
d54c42
* Tue Mar  4 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.114-1
d54c42
- Security fix for CVE-2008-1145.
d54c42
- Improve a spec file. (#226381)
d54c42
  - Correct License tag.
d54c42
  - Fix a timestamp issue.
d54c42
  - Own a arch-specific directory.
d54c42
d54c42
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.8.6.111-9
d54c42
- Autorebuild for GCC 4.3
d54c42
d54c42
* Tue Feb 19 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-8
d54c42
- Rebuild for gcc-4.3.
d54c42
d54c42
* Tue Jan 15 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-7
d54c42
- Revert the change of libruby-static.a. (#428384)
d54c42
d54c42
* Fri Jan 11 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-6
d54c42
- Fix an unnecessary replacement for shebang. (#426835)
d54c42
d54c42
* Fri Jan  4 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-5
d54c42
- Rebuild.
d54c42
d54c42
* Fri Dec 28 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-4
d54c42
- Clean up again.
d54c42
d54c42
* Fri Dec 21 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-3
d54c42
- Clean up the spec file.
d54c42
- Remove ruby-man-1.4.6 stuff. this is entirely the out-dated document.
d54c42
  this could be replaced by ri.
d54c42
- Disable the static library building.
d54c42
d54c42
* Tue Dec 04 2007 Release Engineering <rel-eng at fedoraproject dot org> - 1.8.6.111-2
d54c42
 - Rebuild for openssl bump
d54c42
d54c42
* Wed Oct 31 2007 Akira TAGOH <tagoh@redhat.com>
d54c42
- Fix the dead link.
d54c42
d54c42
* Mon Oct 29 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-1
d54c42
- New upstream release.
d54c42
- ruby-1.8.6.111-CVE-2007-5162.patch: Update a bit with backporting the changes
d54c42
   at trunk to enable the fix without any modifications on the users' scripts.
d54c42
   Note that Net::HTTP#enable_post_connection_check isn't available anymore.
d54c42
   If you want to disable this post-check, you should give OpenSSL::SSL::VERIFY_NONE
d54c42
   to Net::HTTP#verify_mode= instead of.
d54c42
d54c42
* Mon Oct 15 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.110-2
d54c42
- Enable pthread support for ppc too. (#201452)
d54c42
- Fix unexpected dependencies appears in ruby-libs. (#253325)
d54c42
d54c42
* Wed Oct 10 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.110-1
d54c42
- New upstream release.
d54c42
  - ruby-r12567.patch: removed.
d54c42
- ruby-1.8.6-CVE-2007-5162.patch: security fix for Net::HTTP that is
d54c42
  insufficient verification of SSL certificate.
d54c42
d54c42
* Thu Aug 23 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.36-4
d54c42
- Rebuild
d54c42
d54c42
* Fri Aug 10 2007 Akira TAGOH <tagoh@redhat.com>
d54c42
- Update License tag.
d54c42
d54c42
* Mon Jun 25 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.36-3
d54c42
- ruby-r12567.patch: backport patch from upstream svn to get rid of
d54c42
  the unnecessary declarations. (#245446)
d54c42
d54c42
* Wed Jun 20 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.36-2
d54c42
- New upstream release.
d54c42
  - Fix Etc::getgrgid to get the correct gid as requested. (#236647)
d54c42
d54c42
* Wed Mar 28 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6-2
d54c42
- Fix search path breakage. (#234029)
d54c42
d54c42
* Thu Mar 15 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6-1
d54c42
- New upstream release.
d54c42
- clean up a spec file.
d54c42
d54c42
* Tue Feb 13 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.5.12-2
d54c42
- Rebuild
d54c42
d54c42
* Mon Feb  5 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.5.12-1
d54c42
- New upstream release.
d54c42
d54c42
* Mon Dec 11 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5.2-1
d54c42
- security fix release.
d54c42
d54c42
* Fri Oct 27 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5-4
d54c42
- security fix release.
d54c42
- ruby-1.8.5-cgi-CVE-2006-5467.patch: fix a CGI multipart parsing bug that
d54c42
  causes the denial of service. (#212396)
d54c42
d54c42
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.8.5-3
d54c42
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
d54c42
d54c42
* Tue Sep 26 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5-2
d54c42
- fixed rbconfig.rb to refer to DESTDIR for sitearchdir. (#207311)
d54c42
d54c42
* Mon Aug 28 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5-1
d54c42
- New upstream release.
d54c42
- removed the unnecessary patches:
d54c42
  - ruby-1.8.4-no-eaccess.patch
d54c42
  - ruby-1.8.4-64bit-pack.patch
d54c42
  - ruby-1.8.4-fix-insecure-dir-operation.patch
d54c42
  - ruby-1.8.4-fix-insecure-regexp-modification.patch
d54c42
  - ruby-1.8.4-fix-alias-safe-level.patch
d54c42
- build with --enable-pthread except on ppc.
d54c42
- ruby-1.8.5-hash-memory-leak.patch: backported from CVS to fix a memory leak
d54c42
  on Hash. [ruby-talk:211233]
d54c42
d54c42
* Mon Aug  7 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-12
d54c42
- owns sitearchdir. (#201208)
d54c42
d54c42
* Thu Jul 20 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-11
d54c42
- security fixes [CVE-2006-3694]
d54c42
  - ruby-1.8.4-fix-insecure-dir-operation.patch:
d54c42
  - ruby-1.8.4-fix-insecure-regexp-modification.patch: fixed the insecure
d54c42
    operations in the certain safe-level restrictions. (#199538)
d54c42
  - ruby-1.8.4-fix-alias-safe-level.patch: fixed to not bypass the certain
d54c42
    safe-level restrictions. (#199543)
d54c42
d54c42
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.8.4-10.fc6.1
d54c42
- rebuild
d54c42
d54c42
* Mon Jun 19 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-10
d54c42
- fixed the wrong file list again. moved tcltk library into ruby-tcltk.
d54c42
  (#195872)
d54c42
d54c42
* Thu Jun  8 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-8
d54c42
- ruby-deprecated-sitelib-search-path.patch: correct the order of search path.
d54c42
d54c42
* Wed Jun  7 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-7
d54c42
- exclude ppc64 to make ruby-mode package. right now emacs.ppc64 isn't provided
d54c42
  and buildsys became much stricter.
d54c42
- ruby-deprecated-sitelib-search-path.patch: applied to add more search path
d54c42
  for backward compatiblity.
d54c42
- added byacc to BuildReq. (#194161)
d54c42
d54c42
* Wed May 17 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-6
d54c42
- ruby-deprecated-search-path.patch: added the deprecated installation paths
d54c42
  to the search path for the backward compatibility.
d54c42
- added a Provides: ruby(abi) to ruby-libs.
d54c42
- ruby-1.8.4-64bit-pack.patch: backport patch from upstream to fix unpack("l")
d54c42
  not working on 64bit arch and integer overflow on template "w". (#189350)
d54c42
- updated License tag to be more comfortable, and with a pointer to get more
d54c42
  details, like Python package does. (#179933)
d54c42
- clean up.
d54c42
d54c42
* Wed Apr 19 2006 Akira TAGOH <tagoh@redhat.com>
d54c42
- ruby-rubyprefix.patch: moved all arch-independent modules under /usr/lib/ruby
d54c42
  and keep arch-dependent modules under /usr/lib64/ruby for 64bit archs.
d54c42
  so 'rubylibdir', 'sitelibdir' and 'sitedir' in Config::CONFIG points to
d54c42
  the kind of /usr/lib/ruby now. (#184199)
d54c42
d54c42
* Mon Apr 17 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-4
d54c42
- correct sitelibdir. (#184198)
d54c42
d54c42
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.8.4-3.2
d54c42
- bump again for double-long bug on ppc(64)
d54c42
d54c42
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.8.4-3.1
d54c42
- rebuilt for new gcc4.1 snapshot and glibc changes
d54c42
d54c42
* Mon Feb  6 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-3
d54c42
- ruby-1.8.4-no-eaccess.patch: backported from ruby CVS to avoid conflict
d54c42
  between newer glibc. (#179835)
d54c42
d54c42
* Wed Jan  4 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-2
d54c42
- ruby-tcltk-multilib.patch: fixed a typo.
d54c42
d54c42
* Tue Dec 27 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-1
d54c42
- New upstream release.
d54c42
  - fixed a missing return statement. (#140833)
d54c42
  - fixed an use of uninitialized variable. (#144890)
d54c42
d54c42
* Fri Dec 16 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.4.preview2
d54c42
- updates to 1.8.4-preview2.
d54c42
- renamed the packages to ruby-* (#175765)
d54c42
  - irb  -> ruby-irb
d54c42
  - rdoc -> ruby-rdoc
d54c42
  - ri   -> ruby-ri
d54c42
- added tcl-devel and tk-devel into BuildRequires.
d54c42
d54c42
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
d54c42
- rebuilt
d54c42
d54c42
* Thu Nov 10 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.3.preview1
d54c42
- rebuilt against the latest openssl.
d54c42
d54c42
* Tue Nov  1 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.2.preview1
d54c42
- build-deps libX11-devel instead of xorg-x11-devel.
d54c42
d54c42
* Mon Oct 31 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.1.preview1
d54c42
- New upstream release.
d54c42
- ruby-1.8.2-strscan-memset.patch: removed because it's no longer needed.
d54c42
d54c42
* Tue Oct  4 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-4
d54c42
- moved the documents from ruby-libs to ruby-docs, which contains the arch
d54c42
  specific thing and to be multilib support. (#168826)
d54c42
d54c42
* Mon Oct  3 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-3
d54c42
- fixed the wrong file list. the external library for tcl/tk was included
d54c42
  in ruby-libs unexpectedly.
d54c42
d54c42
* Mon Sep 26 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-2
d54c42
- ruby-multilib.patch: added another chunk for multilib. (#169127)
d54c42
d54c42
* Wed Sep 21 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-1
d54c42
- New upstream release.
d54c42
- Build-Requires xorg-x11-devel instead of XFree86-devel.
d54c42
- ruby-multilib.patch: applied for only 64-bit archs.
d54c42
- ruby-1.8.2-xmlrpc-CAN-2005-1992.patch: removed. it has already been in upstream.
d54c42
d54c42
* Tue Jun 21 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-9
d54c42
- ruby-1.8.2-xmlrpc-CAN-2005-1992.patch: fixed the arbitrary command execution
d54c42
  on XMLRPC server. (#161096)
d54c42
d54c42
* Thu Jun 16 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-8
d54c42
- ruby-1.8.2-tcltk-multilib.patch: applied to get tcltklib.so built. (#160194)
d54c42
d54c42
* Thu Apr  7 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-7
d54c42
- ruby-1.8.2-deadcode.patch: removed the dead code from the source. (#146108)
d54c42
- make sure that all documentation files in ruby-docs are the world-
d54c42
  readable. (#147279)
d54c42
d54c42
* Tue Mar 22 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-6
d54c42
- ruby-1.8.2-strscan-memset.patch: fixed an wrong usage of memset(3).
d54c42
d54c42
* Tue Mar 15 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-5
d54c42
- rebuilt
d54c42
d54c42
* Tue Jan 25 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-4
d54c42
- fixed the wrong generation of file manifest. (#146055)
d54c42
- spec file clean up.
d54c42
d54c42
* Mon Jan 24 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-3
d54c42
- separated out to rdoc package.
d54c42
- make the dependency of irb for rdoc. (#144708)
d54c42
d54c42
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> - 1.8.2-2
d54c42
- Rebuilt for new readline.
d54c42
d54c42
* Wed Jan  5 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-1
d54c42
- New upstream release.
d54c42
- ruby-1.8.1-ia64-stack-limit.patch: removed - it's no longer needed.
d54c42
- ruby-1.8.1-cgi_session_perms.patch: likewise.
d54c42
- ruby-1.8.1-cgi-dos.patch: likewise.
d54c42
- generated Ruby interactive documentation - senarated package.
d54c42
  it's now provided as ri package. (#141806)
d54c42
d54c42
* Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 1.8.1-10
d54c42
- rebuild against db-4.3.21.
d54c42
d54c42
* Wed Nov 10 2004 Akira TAGOH <tagoh@redhat.com> - 1.8.1-9
d54c42
- ruby-1.8.1-cgi-dos.patch: security fix [CAN-2004-0983]
d54c42
- ruby-1.8.1-cgi_session_perms.patch: security fix [CAN-2004-0755]
d54c42
d54c42
* Fri Oct 29 2004 Akira TAGOH <tagoh@redhat.com> - 1.8.1-8
d54c42
- added openssl-devel and db4-devel into BuildRequires (#137479)
d54c42
d54c42
* Wed Oct  6 2004 Akira TAGOH <tagoh@redhat.com> - 1.8.1-7
d54c42
- require emacs-common instead of emacs.
d54c42
d54c42
* Wed Jun 23 2004 Akira TAGOH <tagoh@redhat.com> 1.8.1-4
d54c42
- updated the documentation.
d54c42
d54c42
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
d54c42
- rebuilt
d54c42
d54c42
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
d54c42
- rebuilt
d54c42
d54c42
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
d54c42
- rebuilt
d54c42
d54c42
* Wed Feb 04 2004 Akira TAGOH <tagoh@redhat.com> 1.8.1-1
d54c42
- New upstream release.
d54c42
- don't use any optimization for ia64 to avoid the build failure.
d54c42
- ruby-1.8.1-ia64-stack-limit.patch: applied to fix SystemStackError when the optimization is disabled.
d54c42
d54c42
* Sat Dec 13 2003 Jeff Johnson <jbj@jbj.org> 1.8.0-3
d54c42
- rebuild against db-4.2.52.
d54c42
d54c42
* Thu Sep 25 2003 Jeff Johnson <jbj@jbj.org> 1.8.0-2
d54c42
- rebuild against db-4.2.42.
d54c42
d54c42
* Tue Aug  5 2003 Akira TAGOH <tagoh@redhat.com> 1.8.0-1
d54c42
- New upstream release.
d54c42
d54c42
* Thu Jul 24 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-9.1
d54c42
- rebuilt
d54c42
d54c42
* Thu Jul 24 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-9
d54c42
- ruby-1.6.8-castnode.patch: handling the nodes with correct cast.
d54c42
  use this patch now instead of ruby-1.6.8-fix-x86_64.patch.
d54c42
d54c42
* Fri Jul 04 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-8
d54c42
- rebuilt
d54c42
d54c42
* Fri Jul 04 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-7
d54c42
- fix the gcc warnings. (#82192)
d54c42
- ruby-1.6.8-fix-x86_64.patch: correct a patch.
d54c42
  NOTE: DON'T USE THIS PATCH FOR BIG ENDIAN ARCHITECTURE.
d54c42
- ruby-1.6.7-long2int.patch: removed.
d54c42
d54c42
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
d54c42
- rebuilt
d54c42
d54c42
* Fri Feb  7 2003 Jens Petersen <petersen@redhat.com> - 1.6.8-5
d54c42
- rebuild against ucs4 tcltk
d54c42
d54c42
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
d54c42
- rebuilt
d54c42
d54c42
* Wed Jan 22 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-3
d54c42
- ruby-1.6.8-multilib.patch: applied to fix the search path issue on x86_64
d54c42
d54c42
* Tue Jan 21 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-2
d54c42
- ruby-1.6.8-require.patch: applied to fix the search bug in require.
d54c42
- don't apply long2int patch to s390 and s390x. it doesn't work.
d54c42
d54c42
* Wed Jan 15 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-1
d54c42
- New upstream release.
d54c42
- removed some patches. it's no longer needed.
d54c42
  - ruby-1.6.7-100.patch
d54c42
  - ruby-1.6.7-101.patch
d54c42
  - ruby-1.6.7-102.patch
d54c42
  - ruby-1.6.7-103.patch
d54c42
  - 801_extmk.rb-shellwords.patch
d54c42
  - 801_mkmf.rb-shellwords.patch
d54c42
  - 804_parse.y-new-bison.patch
d54c42
  - 805_uri-bugfix.patch
d54c42
  - ruby-1.6.6-900_XXX_strtod.patch
d54c42
  - ruby-1.6.7-sux0rs.patch
d54c42
  - ruby-1.6.7-libobj.patch
d54c42
d54c42
* Wed Jan 15 2003 Jens Petersen <petersen@redhat.com> 1.6.7-14
d54c42
- rebuild to update tcltk deps
d54c42
d54c42
* Mon Dec 16 2002 Elliot Lee <sopwith@redhat.com> 1.6.7-13
d54c42
- Remove ExcludeArch: x86_64
d54c42
- Fix x86_64 ruby with long2int.patch (ruby was assuming that sizeof(long)
d54c42
  == sizeof(int). The patch does not fix the source of the problem, just
d54c42
  makes it a non-issue.)
d54c42
- _smp_mflags
d54c42
d54c42
* Tue Dec 10 2002 Tim Powers <timp@redhat.com> 1.6.7-12
d54c42
- rebuild to fix broken tcltk deps
d54c42
d54c42
* Tue Oct 22 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-11
d54c42
- use %%configure macro instead of configure script.
d54c42
- use the latest config.{sub,guess}.
d54c42
- get archname from rbconfig.rb for %%dir
d54c42
- applied some patches from Debian:
d54c42
  - 801_extmk.rb-shellwords.patch: use Shellwords
d54c42
  - 801_mkmf.rb-shellwords.patch: mkmf.rb creates bad Makefile. the Makefile
d54c42
    links libruby.a to the target.
d54c42
  - 803_sample-fix-shbang.patch: all sample codes should be
d54c42
    s|/usr/local/bin|/usr/bin|g
d54c42
  - 804_parse.y-new-bison.patch: fix syntax warning.
d54c42
  - 805_uri-bugfix.patch: uri.rb could not handle correctly broken mailto-uri.
d54c42
- add ExcludeArch x86_64 temporarily to fix Bug#74581. Right now ruby can't be
d54c42
  built on x86_64.
d54c42
d54c42
* Tue Aug 27 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-10
d54c42
- moved sitedir to /usr/lib/ruby/site_ruby again according as our perl and
d54c42
  python.
d54c42
- ruby-1.6.7-resolv1.patch, ruby-1.6.7-resolv2.patch: applied to fix 'Too many
d54c42
  open files - "/etc/resolv.conf"' issue. (Bug#64830)
d54c42
d54c42
* Thu Jul 18 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-9
d54c42
- add the owned directory.
d54c42
d54c42
* Fri Jul 12 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-8
d54c42
- fix typo.
d54c42
d54c42
* Thu Jul 04 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-7
d54c42
- removed the ruby-mode-xemacs because it's merged to the xemacs sumo.
d54c42
d54c42
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
d54c42
- automated rebuild
d54c42
d54c42
* Wed Jun 19 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-5
d54c42
- fix the stripped binary.
d54c42
- use the appropriate macros.
d54c42
d54c42
* Sun May 26 2002 Tim Powers <timp@redhat.com>
d54c42
- automated rebuild
d54c42
d54c42
* Thu May 23 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-3
d54c42
- ruby-1.6.7-libobj.patch: applied to fix autoconf2.53 error.
d54c42
d54c42
* Mon Mar 18 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-2
d54c42
- ruby-man-1.4.6-jp.tar.bz2: removed.
d54c42
- ruby-refm-rdp-1.4.7-ja-html.tar.bz2: uses it instead of.
d54c42
- ruby-1.6.7-500-marshal-proc.patch, ruby-1.6.7-501-class-var.patch:
d54c42
  removed.
d54c42
- ruby-1.6.7-100.patch: applied a bug fix patch.
d54c42
  (ruby-dev#16274: patch for 'wm state')
d54c42
  (PR#206ja: SEGV handle EXIT)
d54c42
- ruby-1.6.7-101.patch: applied a bug fix patch.
d54c42
  (ruby-list#34313: singleton should not be Marshal.dump'ed)
d54c42
  (ruby-dev#16411: block local var)
d54c42
- ruby-1.6.7-102.patch: applied a bug fix patch.
d54c42
  (handling multibyte chars is partially broken)
d54c42
- ruby-1.6.7-103.patch: applied a bug fix patch.
d54c42
  (ruby-dev#16462: preserve reference for GC, but link should be cut)
d54c42
d54c42
* Fri Mar  8 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-1
d54c42
- New upstream release.
d54c42
- ruby-1.6.6-100.patch, ruby-1.6.6-501-ruby-mode.patch:
d54c42
  removed. these patches no longer should be needed.
d54c42
- ruby-1.6.7-500-marshal-proc.patch: applied a fix patch.
d54c42
  (ruby-dev#16178: Marshal::dump should call Proc#call.)
d54c42
- ruby-1.6.7-501-class-var.patch: applied a fix patch.
d54c42
  (ruby-talk#35157: class vars broken in 1.6.7)
d54c42
d54c42
* Wed Feb 27 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-5
d54c42
- Disable alpha because nothing is xemacs for alpha now.
d54c42
d54c42
* Tue Feb  5 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-3
d54c42
- Fixed the duplicate files.
d54c42
d54c42
* Tue Feb  5 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-2
d54c42
- Fixed the missing %%defattr
d54c42
d54c42
* Fri Feb  1 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-1
d54c42
- New upstream release.
d54c42
- Applied bug fix patches:
d54c42
  - ruby-1.6.6-501-ruby-mode.patch: ruby-talk#30479: disables font-lock
d54c42
    coloring.
d54c42
  - ruby-1.6.6-100.patch: ruby-talk#30203: Ruby 1.6.6 bug and fix
d54c42
                          ruby-list#33047: regex bug
d54c42
                          PR#230: problem with -d in 1.6.6
d54c42
- Added ruby-mode and ruby-mode-xemacs packages.
d54c42
- Ruby works fine for ia64. so re-enable to build with ia64.
d54c42
  (probably it should be worked for alpha)
d54c42
d54c42
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
d54c42
- automated rebuild
d54c42
d54c42
* Thu Jul 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.6.4-2
d54c42
- Remove Japanese description and summaries; they belong in specspo and
d54c42
  break rpm
d54c42
- Clean up specfile
d54c42
- Mark language specific files (README.jp) as such
d54c42
- bzip2 sources
d54c42
- rename the libruby package to ruby-libs for consistency
d54c42
- Exclude ia64 (doesn't build - the code doesn't seem to be 64-bit clean
d54c42
  [has been excluded on alpha forever])
d54c42
d54c42
* Tue Jul 17 2001 Akira TAGOH <tagoh@redhat.com> 1.6.4-1
d54c42
- rebuild for Red Hat 7.2
d54c42
d54c42
* Mon Jun 04 2001 akira yamada <akira@vinelinux.org>
d54c42
- upgrade to nwe upstream version 1.6.4.
d54c42
d54c42
* Mon Apr 02 2001 akira yamada <akira@vinelinux.org>
d54c42
- applied patch:
d54c42
  - fixed method cache bug. etc. (Patch103, Patch104)
d54c42
d54c42
* Tue Mar 27 2001 akira yamada <akira@vinelinux.org>
d54c42
- applied patch:
d54c42
  - fixed marshal for bignum bug.
d54c42
  - fixed scope of constant variables bug.
d54c42
d54c42
* Tue Mar 20 2001 akira yamada <akira@vinelinux.org>
d54c42
- upgraded to new upstream version 1.6.3.
d54c42
d54c42
* Fri Feb 09 2001 akira yamada <akira@vinelinux.org>
d54c42
- fixed bad group for libruby.
d54c42
- Applied patch: upgraded to cvs version (2001-02-08):
d54c42
  fixed minor bugs.
d54c42
d54c42
* Thu Jan 18 2001 akira yamada <akira@vinelinux.org>
d54c42
- Applied patch: upgraded to cvs version (2001-01-15):
d54c42
  fixed minor bugs(e.g. ruby makes extention librares too large...).
d54c42
d54c42
* Wed Jan 10 2001 akira yamada <akira@vinelinux.org>
d54c42
- Applied patch: upgraded to cvs version (2001-01-09):
d54c42
  fixed minor bugs.
d54c42
d54c42
* Sat Dec 30 2000 akira yamada <akira@vinelinux.org>
d54c42
- Applied bug fix patch.
d54c42
d54c42
* Mon Dec 25 2000 akira yamada <akira@vinelinux.org>
d54c42
- Updated to new upstream version 1.6.2.
d54c42
d54c42
* Fri Dec 22 2000 akira yamada <akira@vinelinux.org>
d54c42
- Removed ruby_cvs.2000122019.patch, added ruby_cvs.2000122215.patch
d54c42
  (upgraded ruby to latest cvs version, 1.6.2-preview4).
d54c42
d54c42
* Wed Dec 20 2000 akira yamada <akira@vinelinux.org>
d54c42
- Removed ruby_cvs.2000121413.patch, added ruby_cvs.2000122019.patch
d54c42
  (upgraded ruby to latest cvs version).
d54c42
- new package: libruby
d54c42
d54c42
* Thu Dec 14 2000 akira yamada <akira@vinelinux.org>
d54c42
- Removed ruby_cvs.2000101901.patch, added ruby_cvs.2000121413.patch
d54c42
  (upgraded ruby to latest cvs version).
d54c42
- Removed ruby-dev.11262.patch, ruby-dev.11265.patch,
d54c42
  and ruby-dev.11268.patch (included into above patch).
d54c42
d54c42
* Sun Nov 12 2000 MACHINO, Satoshi <machino@vinelinux.org> 1.6.1-0vl9
d54c42
- build on gcc-2.95.3
d54c42
d54c42
* Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
d54c42
- Added ruby-dev.11268.patch.
d54c42
d54c42
* Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
d54c42
- Removed ruby_cvs.2000101117.patch and added ruby_cvs.2000101901.patch
d54c42
  (upgraded ruby to latest cvs version).
d54c42
- Added ruby-dev.11262.patch.
d54c42
- Added ruby-dev.11265.patch.
d54c42
d54c42
* Wed Oct 11 2000 akira yamada <akira@vinelinux.org>
d54c42
- Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000101117.patch
d54c42
  (upgraded ruby to latest cvs version).
d54c42
d54c42
* Mon Oct 09 2000 akira yamada <akira@vinelinux.org>
d54c42
- Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000100313.patch
d54c42
  (upgraded ruby to latest cvs version).
d54c42
d54c42
* Tue Oct 03 2000 akira yamada <akira@vinelinux.org>
d54c42
- Removed ruby_cvs.2000100218.patch and added ruby_cvs.2000100313.patch
d54c42
  (upgraded ruby to latest cvs version).
d54c42
d54c42
* Mon Oct 02 2000 akira yamada <akira@vinelinux.org>
d54c42
- Removed ruby_cvs.2000092718.patch and added ruby_cvs.2000100218.patch
d54c42
  (upgraded ruby to latest cvs version).
d54c42
d54c42
* Wed Sep 27 2000 akira yamada <akira@vinelinux.org>
d54c42
- Updated to upstream version 1.6.1.
d54c42
- Removed ruby_cvs.2000082901.patch and added ruby_cvs.2000092718.patch
d54c42
  (upgraded ruby to latest cvs version).
d54c42
d54c42
* Tue Aug 29 2000 akira yamada <akira@redhat.com>
d54c42
- Updated to version 1.4.6.
d54c42
- removed ruby-dev.10123.patch(included into ruby-1.4.6).
d54c42
- Added ruby_cvs.2000082901.patch(upgraded ruby to latest cvs version).
d54c42
d54c42
* Tue Jun 27 2000 akira yamada <akira@redhat.com>
d54c42
- Updated manuals to version 1.4.5.
d54c42
d54c42
* Sun Jun 25 2000 akira yamada <akira@redhat.com>
d54c42
- Added ruby-dev.10123.patch.
d54c42
d54c42
* Sat Jun 24 2000 akira yamada <akira@redhat.com>
d54c42
- Updated to version 1.4.5.
d54c42
- Removed ruby_cvs.2000062401.patch(included into ruby-1.4.5).
d54c42
d54c42
* Thu Jun 22 2000 akira yamada <akira@redhat.com>
d54c42
- Updated to version 1.4.4(06/22/2000 CVS).
d54c42
- Removed ruby-dev.10054.patch(included into ruby_cvs.patch).
d54c42
d54c42
* Thu Jun 22 2000 akira yamada <akira@redhat.com>
d54c42
- Renamed to ruby_cvs20000620.patch from ruby_cvs.patch.
d54c42
d54c42
* Tue Jun 20 2000 akira yamada <akira@redhat.com>
d54c42
- Updated to version 1.4.4(06/20/2000 CVS).
d54c42
- Removed ruby-list.23190.patch(included into ruby_cvs.patch).
d54c42
- Added ruby-dev.10054.patch.
d54c42
d54c42
* Thu Jun 15 2000 akira yamada <akira@redhat.com>
d54c42
- Updated to version 1.4.4(06/12/2000 CVS).
d54c42
- Added manuals and FAQs.
d54c42
- Split into ruby, ruby-devel, ruby-tcltk, ruby-docs, irb.
d54c42
d54c42
* Tue Jun 13 2000 Mitsuo Hamada <mhamada@redhat.com>
d54c42
- Updated to version 1.4.4
d54c42
d54c42
* Wed Dec 08 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
d54c42
- Updated to version 1.4.3
d54c42
d54c42
* Mon Sep 20 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
d54c42
- Updated to version 1.4.2 (Sep 18)
d54c42
d54c42
* Fri Sep 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
d54c42
- Updated to version 1.4.2
d54c42
d54c42
* Tue Aug 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
d54c42
- Updated to version 1.4.0
d54c42
d54c42
* Fri Jul 23 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
d54c42
- 2nd release
d54c42
- Updated to version 1.2.6(15 Jul 1999)
d54c42
- striped %%{prefix}/bin/ruby
d54c42
d54c42
* Mon Jun 28 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
d54c42
- Updated to version 1.2.6(21 Jun 1999)
d54c42
d54c42
* Wed Apr 14 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
d54c42
- Updated to version 1.2.5
d54c42
d54c42
* Fri Apr 09 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
d54c42
- Updated to version 1.2.4
d54c42
d54c42
* Fri Dec 25 1998 Toru Hoshina <hoshina@best.com>
d54c42
- Version up to 1.2 stable.
d54c42
d54c42
* Fri Nov 27 1998 Toru Hoshina <hoshina@best.com>
d54c42
- Version up to 1.1c9.
d54c42
d54c42
* Thu Nov 19 1998 Toru Hoshina <hoshina@best.com>
d54c42
- Version up to 1.1c8, however it appear short life :-P
d54c42
d54c42
* Fri Nov 13 1998 Toru Hoshina <hoshina@best.com>
d54c42
- Version up.
d54c42
d54c42
* Tue Sep 22 1998 Toru Hoshina <hoshina@best.com>
d54c42
- To make a libruby.so.
d54c42
d54c42
* Mon Sep 21 1998 Toru Hoshina <hoshina@best.com>
d54c42
- Modified SPEC in order to install libruby.a so that it should be used by
d54c42
  another ruby entention.
d54c42
- 2nd release.
d54c42
d54c42
* Mon Mar 9 1998 Shoichi OZAWA <shoch@jsdi.or.jp>
d54c42
- Added a powerPC arch part. Thanks, MURATA Nobuhiro <nob@makioka.y-min.or.jp>