Blame SPECS/ruby.spec

e076ba
%{!?scl:%global pkg_name %{name}}
e076ba
%{?scl:%scl_package ruby}
e076ba
e076ba
%global major_version 2
e076ba
%global minor_version 5
2b14a6
%global teeny_version 5
e076ba
%global major_minor_version %{major_version}.%{minor_version}
e076ba
e076ba
%global ruby_version %{major_minor_version}.%{teeny_version}
e076ba
%global ruby_release %{ruby_version}
e076ba
e076ba
# Specify the named version. It has precedense to revision.
e076ba
#%%global milestone rc1
e076ba
e076ba
# Keep the revision enabled for pre-releases from SVN.
e076ba
#%%global revision 61414
e076ba
e076ba
%global ruby_archive %{pkg_name}-%{ruby_version}
e076ba
e076ba
# If revision and milestone are removed/commented out, the official release build is expected.
e076ba
%if 0%{?milestone:1}%{?revision:1} != 0
e076ba
%global development_release %{?milestone}%{?!milestone:%{?revision:r%{revision}}}
e076ba
%global ruby_archive %{ruby_archive}-%{?milestone}%{?!milestone:%{?revision:r%{revision}}}
e076ba
%endif
e076ba
e076ba
222d09
%global release 8
e076ba
%{!?release_string:%global release_string %{?development_release:0.}%{release}%{?development_release:.%{development_release}}%{?dist}}
e076ba
0455cc
# The RubyGems library has to stay out of Ruby directory tree, since the
e076ba
# RubyGems should be share by all Ruby implementations.
e076ba
%global rubygems_dir %{_datadir}/rubygems
e076ba
e076ba
# Bundled libraries versions
2b14a6
%global rubygems_version 2.7.6.2
e076ba
%global molinillo_version 0.5.7
e076ba
e076ba
# TODO: The IRB has strange versioning. Keep the Ruby's versioning ATM.
e076ba
# http://redmine.ruby-lang.org/issues/5313
e076ba
%global irb_version %{ruby_version}
e076ba
e076ba
%global bigdecimal_version 1.3.4
e076ba
%global did_you_mean_version 1.2.0
e076ba
%global io_console_version 0.4.6
e076ba
%global json_version 2.1.0
e076ba
%global minitest_version 5.10.3
e076ba
%global net_telnet_version 0.1.1
0455cc
%global openssl_version 2.1.2
e076ba
%global power_assert_version 1.1.1
e076ba
%global psych_version 3.0.2
e076ba
%global rake_version 12.3.0
e076ba
%global rdoc_version 6.0.1
e076ba
%global test_unit_version 3.2.7
e076ba
%global xmlrpc_version 0.3.0
e076ba
e076ba
# Might not be needed in the future, if we are lucky enough.
e076ba
# https://bugzilla.redhat.com/show_bug.cgi?id=888262
e076ba
%global tapset_root %{_datadir}/systemtap
e076ba
%global tapset_dir %{tapset_root}/tapset
e076ba
%global tapset_libdir %(echo %{_libdir} | sed 's/64//')*
e076ba
e076ba
%global _normalized_cpu %(echo %{_target_cpu} | sed 's/^ppc/powerpc/;s/i.86/i386/;s/sparcv./sparc/')
e076ba
e076ba
%if 0%{?fedora} >= 19
e076ba
%bcond_without rubypick
e076ba
%endif
e076ba
e076ba
%bcond_without systemtap
e076ba
%bcond_without git
e076ba
%bcond_without cmake
e076ba
e076ba
%if 0%{?fedora}
e076ba
%bcond_without hardening_test
e076ba
%endif
e076ba
e076ba
Summary: An interpreter of object-oriented scripting language
e076ba
Name: %{?scl_prefix}ruby
e076ba
Version: %{ruby_version}
e076ba
Release: %{release_string}
e076ba
Group: Development/Languages
e076ba
# Public Domain for example for: include/ruby/st.h, strftime.c, missing/*, ...
e076ba
# MIT and CCO: ccan/*
e076ba
# zlib: ext/digest/md5/md5.*, ext/nkf/nkf-utf8/nkf.c
e076ba
# UCD: some of enc/trans/**/*.src
e076ba
License: (Ruby or BSD) and Public Domain and MIT and CC0 and zlib and UCD
e076ba
URL: http://ruby-lang.org/
0455cc
Source0: https://cache.ruby-lang.org/pub/%{pkg_name}/%{major_minor_version}/%{ruby_archive}.tar.xz
e076ba
Source1: operating_system.rb
e076ba
# TODO: Try to push SystemTap support upstream.
e076ba
Source2: libruby.stp
e076ba
Source3: ruby-exercise.stp
e076ba
Source4: macros.ruby
e076ba
Source5: macros.rubygems
e076ba
Source6: abrt_prelude.rb
e076ba
# This wrapper fixes https://bugzilla.redhat.com/show_bug.cgi?id=977941
e076ba
# It was fixed by multilib-rpm-config on Fedora.
e076ba
# But multilib-rpm-config is not available on RHEL7.
e076ba
# https://fedorahosted.org/fpc/ticket/312
e076ba
# https://bugzilla.redhat.com/show_bug.cgi?id=977941
e076ba
Source7: config.h
e076ba
# We do not provide RPM dependency generators on SCL that is on Fedora.
e076ba
# ABRT hoook test case.
e076ba
Source12: test_abrt.rb
e076ba
# SystemTap tests.
e076ba
Source13: test_systemtap.rb
e076ba
# To test Ruby software collection
e076ba
Source14: test_dependent_scls.rb
e076ba
e076ba
# %%load function should be supported in RPM 4.12+.
e076ba
# http://lists.rpm.org/pipermail/rpm-maint/2014-February/003659.html
e076ba
Source100: load.inc
e076ba
%include %{SOURCE100}
e076ba
e076ba
%{load %{SOURCE4}}
e076ba
%{load %{SOURCE5}}
e076ba
e076ba
# Fix ruby_version abuse.
e076ba
# https://bugs.ruby-lang.org/issues/11002
e076ba
Patch0: ruby-2.3.0-ruby_version.patch
e076ba
# http://bugs.ruby-lang.org/issues/7807
e076ba
Patch1: ruby-2.1.0-Prevent-duplicated-paths-when-empty-version-string-i.patch
e076ba
# Allows to override libruby.so placement. Hopefully we will be able to return
e076ba
# to plain --with-rubyarchprefix.
e076ba
# http://bugs.ruby-lang.org/issues/8973
e076ba
Patch2: ruby-2.1.0-Enable-configuration-of-archlibdir.patch
e076ba
# Force multiarch directories for i.86 to be always named i386. This solves
e076ba
# some differencies in build between Fedora and RHEL.
e076ba
Patch3: ruby-2.1.0-always-use-i386.patch
e076ba
# Allows to install RubyGems into custom directory, outside of Ruby's tree.
e076ba
# http://bugs.ruby-lang.org/issues/5617
e076ba
Patch4: ruby-2.1.0-custom-rubygems-location.patch
e076ba
# Make mkmf verbose by default
e076ba
Patch5: ruby-1.9.3-mkmf-verbose.patch
e076ba
# Adds support for '--with-prelude' configuration option. This allows to built
e076ba
# in support for ABRT.
e076ba
# http://bugs.ruby-lang.org/issues/8566
e076ba
Patch6: ruby-2.1.0-Allow-to-specify-additional-preludes-by-configuratio.patch
e076ba
# Use miniruby to regenerate prelude.c.
e076ba
# https://bugs.ruby-lang.org/issues/10554
e076ba
Patch7: ruby-2.2.3-Generate-preludes-using-miniruby.patch
e076ba
# Workaround "an invalid stdio handle" error on PPC, due to recently introduced
e076ba
# hardening features of glibc (rhbz#1361037).
e076ba
# https://bugs.ruby-lang.org/issues/12666
e076ba
Patch9: ruby-2.3.1-Rely-on-ldd-to-detect-glibc.patch
e076ba
# Add Gem.operating_system_defaults to allow packagers to override defaults.
e076ba
# https://github.com/rubygems/rubygems/pull/2116
e076ba
Patch10: ruby-2.5.0-Add-Gem.operating_system_defaults.patch
0455cc
# Properly harden package using -fstack-protector-strong.
0455cc
# https://bugs.ruby-lang.org/issues/15053
0455cc
Patch12: ruby-2.6.0-configure-fstack-protector-strong.patch
0455cc
# Fix generated rdoc template issues.
0455cc
# https://github.com/ruby/rdoc/commit/d05e6269d4a4dfd701f5ddb3ae34306cba891511
0455cc
Patch13: ruby-2.6.0-rdoc-6.0.1-fix-template-typo.patch
222d09
# Fix failing test_open_tempfile_path test case (skip on EISDIR exception).
222d09
# https://github.com/ruby/ruby/commit/785ace12f903cfae848ea38d7b8a0cb3439379f3
222d09
Patch14: ruby-2.6.0-rescue-on-EISDIR-in-test_open_tempfile_path.patch
e076ba
e076ba
Requires: %{?scl_prefix}%{pkg_name}-libs%{?_isa} = %{version}-%{release}
e076ba
Requires: %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
# We keep default installed gems that is sub pacakge as Requires.
e076ba
# Make the bigdecimal gem a runtime dependency of Ruby to avoid problems
e076ba
# with user-installed gems, that don't require it in gemspec/Gemfile
e076ba
# See https://bugzilla.redhat.com/show_bug.cgi?id=829209
e076ba
# and http://bugs.ruby-lang.org/issues/6123
e076ba
# TODO: other gems required?
e076ba
Requires: %{?scl_prefix}rubygem(bigdecimal) >= %{bigdecimal_version}
e076ba
Requires: %{?scl_prefix}rubygem(did_you_mean) >= %{did_you_mean_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(bundler) >= %%{bundler_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(cmath) >= %%{cmath_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(csv) >= %%{csv_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(date) >= %%{date_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(dbm) >= %%{dbm_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(digest) >= %%{digest_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(etc) >= %%{etc_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(fcntl) >= %%{fcntl_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(fileutils) >= %%{fileutils_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(gdbm) >= %%{gdbm_version}
e076ba
Requires: %{?scl_prefix}rubygem(io-console) >= %{io_console_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(ipaddr) >= %%{ipaddr_version}
e076ba
Requires: %{?scl_prefix}rubygem(json) >= %{json_version}
e076ba
Requires: %{?scl_prefix}rubygem(openssl) >= %{openssl_version}
e076ba
Requires: %{?scl_prefix}rubygem(psych) >= %{psych_version}
e076ba
Requires: %{?scl_prefix}rubygem(rdoc) >= %{rdoc_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(scanf) >= %%{scanf_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(sdbm) >= %%{sdbm_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(stringio) >= %%{stringio_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(strscan) >= %%{strscan_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(webrick) >= %%{webrick_version}
e076ba
# Requires: %%{?scl_prefix}rubygem(zlib) >= %%{zlib_version}
e076ba
BuildRequires: autoconf
e076ba
BuildRequires: gdbm-devel
e076ba
BuildRequires: libffi-devel
e076ba
BuildRequires: openssl-devel
e076ba
BuildRequires: libyaml-devel
e076ba
BuildRequires: readline-devel
e076ba
# Needed to pass test_set_program_name(TestRubyOptions)
e076ba
BuildRequires: procps
e076ba
%{?with_systemtap:BuildRequires: %{?_root_bindir}%{!?_root_bindir:%{_bindir}}/dtrace}
e076ba
# RubyGems test suite optional dependencies.
e076ba
%{?with_git:BuildRequires: %{?_root_bindir}%{!?_root_bindir:%{_bindir}}/git}
e076ba
%{?with_cmake:BuildRequires: %{?_root_bindir}%{!?_root_bindir:%{_bindir}}/cmake}
e076ba
# Required to test hardening.
e076ba
%{?with_hardening_test:BuildRequires: %{?_root_bindir}%{!?_root_bindir:%{_bindir}}/checksec}
e076ba
e076ba
# This package provides %%{_bindir}/ruby-mri therefore it is marked by this
e076ba
# virtual provide. It can be installed as dependency of rubypick.
e076ba
Provides: ruby(runtime_executable) = %{ruby_release}
e076ba
e076ba
%description
e076ba
Ruby is the interpreted scripting language for quick and easy
e076ba
object-oriented programming.  It has many features to process text
e076ba
files and to do system management tasks (as in Perl).  It is simple,
e076ba
straight-forward, and extensible.
e076ba
e076ba
e076ba
%package devel
e076ba
Summary:    A Ruby development environment
e076ba
Group:      Development/Languages
e076ba
Requires:   %{?scl_prefix}%{pkg_name}%{?_isa} = %{version}-%{release}
e076ba
# This would not be needed if ~50 packages depending on -devel used
e076ba
# --disable-gems
e076ba
Requires:   %{?scl_prefix}rubygems
e076ba
e076ba
%description devel
e076ba
Header files and libraries for building an extension library for the
e076ba
Ruby or an application embedding Ruby.
e076ba
e076ba
%package libs
e076ba
Summary:    Libraries necessary to run Ruby
e076ba
Group:      Development/Libraries
e076ba
License:    Ruby or BSD
e076ba
Provides:   %{?scl_prefix}ruby(release) = %{ruby_release}
e076ba
e076ba
# Virtual provides for CCAN copylibs.
e076ba
# https://fedorahosted.org/fpc/ticket/364
e076ba
Provides: bundled(ccan-build_assert)
e076ba
Provides: bundled(ccan-check_type)
e076ba
Provides: bundled(ccan-container_of)
e076ba
Provides: bundled(ccan-list)
e076ba
e076ba
%description libs
e076ba
This package includes the libruby, necessary to run Ruby.
e076ba
e076ba
e076ba
# TODO: Rename or not rename to ruby-rubygems?
e076ba
%package -n %{?scl_prefix}rubygems
e076ba
Summary:    The Ruby standard for packaging ruby libraries
e076ba
Version:    %{rubygems_version}
e076ba
Group:      Development/Libraries
e076ba
License:    Ruby or MIT
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}rubygem(rdoc) >= %{rdoc_version}
e076ba
Requires:   %{?scl_prefix}rubygem(io-console) >= %{io_console_version}
e076ba
Requires:   %{?scl_prefix}rubygem(openssl) >= %{openssl_version}
e076ba
Requires:   %{?scl_prefix}rubygem(psych) >= %{psych_version}
e076ba
Provides:   %{?scl_prefix}gem = %{version}-%{release}
e076ba
Provides:   %{?scl_prefix}ruby(rubygems) = %{version}-%{release}
e076ba
# https://github.com/rubygems/rubygems/pull/1189#issuecomment-121600910
e076ba
Provides:   bundled(rubygem-molinillo) = %{molinillo_version}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygems
e076ba
RubyGems is the Ruby standard for publishing and managing third party
e076ba
libraries.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygems-devel
e076ba
Summary:    Macros and development tools for packaging RubyGems
e076ba
Version:    %{rubygems_version}
e076ba
Group:      Development/Libraries
e076ba
License:    Ruby or MIT
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) = %{version}-%{release}
e076ba
# Needed for RDoc documentation format generation.
e076ba
Requires:   %{?scl_prefix}rubygem(json) >= %{json_version}
e076ba
Requires:   %{?scl_prefix}rubygem(rdoc) >= %{rdoc_version}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygems-devel
e076ba
Macros and development tools for packaging RubyGems.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-rake
e076ba
Summary:    Ruby based make-like utility
e076ba
Version:    %{rake_version}
e076ba
Group:      Development/Libraries
e076ba
License:    MIT
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rake = %{version}-%{release}
e076ba
Provides:   %{?scl_prefix}rubygem(rake) = %{version}-%{release}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-rake
e076ba
Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
e076ba
specified in standard Ruby syntax.
e076ba
e076ba
e076ba
%package irb
e076ba
Summary:    The Interactive Ruby
e076ba
Version:    %{irb_version}
e076ba
Group:      Development/Libraries
e076ba
Requires:   %{?scl_prefix}%{pkg_name}-libs = %{ruby_version}
e076ba
Provides:   %{?scl_prefix}irb = %{version}-%{release}
e076ba
Provides:   %{?scl_prefix}ruby(irb) = %{version}-%{release}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description irb
e076ba
The irb is acronym for Interactive Ruby.  It evaluates ruby expression
e076ba
from the terminal.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-rdoc
e076ba
Summary:    A tool to generate HTML and command-line documentation for Ruby projects
e076ba
Version:    %{rdoc_version}
e076ba
Group:      Development/Libraries
e076ba
# SIL: lib/rdoc/generator/template/darkfish/css/fonts.css
e076ba
License:    GPLv2 and Ruby and MIT and OFL
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Requires:   %{?scl_prefix}ruby(irb) = %{irb_version}
e076ba
Requires:   %{?scl_prefix}rubygem(io-console) >= %{io_console_version}
e076ba
# Hardcode the dependency to keep it compatible with dependencies of the
e076ba
# official rubygem-rdoc gem.
e076ba
Requires:   %{?scl_prefix}rubygem(json) >= %{json_version}
e076ba
Provides:   %{?scl_prefix}rdoc = %{version}-%{release}
e076ba
Provides:   %{?scl_prefix}ri = %{version}-%{release}
e076ba
Provides:   %{?scl_prefix}rubygem(rdoc) = %{version}-%{release}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-rdoc
e076ba
RDoc produces HTML and command-line documentation for Ruby projects.  RDoc
e076ba
includes the 'rdoc' and 'ri' tools for generating and displaying online
e076ba
documentation.
e076ba
e076ba
e076ba
%package doc
e076ba
Summary:    Documentation for %{pkg_name}
e076ba
Group:      Documentation
e076ba
Requires:   %{_bindir}/ri
e076ba
BuildArch:  noarch
e076ba
e076ba
%description doc
e076ba
This package contains documentation for %{pkg_name}.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-bigdecimal
e076ba
Summary:    BigDecimal provides arbitrary-precision floating point decimal arithmetic
e076ba
Version:    %{bigdecimal_version}
e076ba
Group:      Development/Libraries
e076ba
License:    Ruby or BSD
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(bigdecimal) = %{version}-%{release}
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-bigdecimal
e076ba
Ruby provides built-in support for arbitrary precision integer arithmetic.
e076ba
For example:
e076ba
e076ba
42**13 -> 1265437718438866624512
e076ba
e076ba
BigDecimal provides similar support for very large or very accurate floating
e076ba
point numbers. Decimal arithmetic is also useful for general calculation,
e076ba
because it provides the correct answers people expect–whereas normal binary
e076ba
floating point arithmetic often introduces subtle errors because of the
e076ba
conversion between base 10 and base 2.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-did_you_mean
e076ba
Summary:    "Did you mean?" experience in Ruby
e076ba
Version:    %{did_you_mean_version}
e076ba
Group:      Development/Libraries
e076ba
License:    MIT
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(did_you_mean) = %{version}-%{release}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-did_you_mean
e076ba
"did you mean?" experience in Ruby: the error message will tell you the right
e076ba
one when you misspelled something.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-io-console
e076ba
Summary:    IO/Console is a simple console utilizing library
e076ba
Version:    %{io_console_version}
e076ba
Group:      Development/Libraries
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(io-console) = %{version}-%{release}
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-io-console
e076ba
IO/Console provides very simple and portable access to console. It doesn't
e076ba
provide higher layer features, such like curses and readline.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-json
e076ba
Summary:    This is a JSON implementation as a Ruby extension in C
e076ba
Version:    %{json_version}
e076ba
Group:      Development/Libraries
e076ba
# UCD: ext/json/generator/generator.c
e076ba
License:    (Ruby or GPLv2) and UCD
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(json) = %{version}-%{release}
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-json
e076ba
This is a implementation of the JSON specification according to RFC 4627.
e076ba
You can think of it as a low fat alternative to XML, if you want to store
e076ba
data to disk or transmit it over a network rather than use a verbose
e076ba
markup language.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-minitest
e076ba
Summary:    Minitest provides a complete suite of testing facilities
e076ba
Version:    %{minitest_version}
e076ba
Group:      Development/Libraries
e076ba
License:    MIT
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(minitest) = %{version}-%{release}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-minitest
e076ba
minitest/unit is a small and incredibly fast unit testing framework.
e076ba
e076ba
minitest/spec is a functionally complete spec engine.
e076ba
e076ba
minitest/benchmark is an awesome way to assert the performance of your
e076ba
algorithms in a repeatable manner.
e076ba
e076ba
minitest/mock by Steven Baker, is a beautifully tiny mock object
e076ba
framework.
e076ba
e076ba
minitest/pride shows pride in testing and adds coloring to your test
e076ba
output.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-openssl
e076ba
Summary:    OpenSSL provides SSL, TLS and general purpose cryptography
e076ba
Version:    %{openssl_version}
e076ba
Group:      Development/Libraries
e076ba
License:    Ruby or BSD
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(openssl) = %{version}-%{release}
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-openssl
e076ba
OpenSSL provides SSL, TLS and general purpose cryptography. It wraps the
e076ba
OpenSSL library.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-power_assert
e076ba
Summary:    Power Assert for Ruby
e076ba
Version:    %{power_assert_version}
e076ba
Group:      Development/Libraries
e076ba
License:    Ruby or BSD
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(power_assert) = %{version}-%{release}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-power_assert
e076ba
Power Assert shows each value of variables and method calls in the expression.
e076ba
It is useful for testing, providing which value wasn't correct when the
e076ba
condition is not satisfied.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-psych
e076ba
Summary:    A libyaml wrapper for Ruby
e076ba
Version:    %{psych_version}
e076ba
Group:      Development/Libraries
e076ba
License:    MIT
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(psych) = %{version}-%{release}
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-psych
e076ba
Psych is a YAML parser and emitter. Psych leverages
e076ba
libyaml[http://pyyaml.org/wiki/LibYAML] for its YAML parsing and emitting
e076ba
capabilities. In addition to wrapping libyaml, Psych also knows how to
e076ba
serialize and de-serialize most Ruby objects to and from the YAML format.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-net-telnet
e076ba
Summary:    Provides telnet client functionality
e076ba
Version:    %{net_telnet_version}
e076ba
Group:      Development/Libraries
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(net-telnet) = %{version}-%{release}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-net-telnet
e076ba
Provides telnet client functionality.
e076ba
e076ba
This class also has, through delegation, all the methods of a socket object
e076ba
(by default, a TCPSocket, but can be set by the Proxy option to new()). This
e076ba
provides methods such as close() to end the session and sysread() to read data
e076ba
directly from the host, instead of via the waitfor() mechanism. Note that if
e076ba
you do use sysread() directly when in telnet mode, you should probably pass
e076ba
the output through preprocess() to extract telnet command sequences.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-test-unit
e076ba
Summary:    An xUnit family unit testing framework for Ruby
e076ba
Version:    %{test_unit_version}
e076ba
Group:      Development/Libraries
e076ba
# lib/test/unit/diff.rb is a double license of the Ruby license and PSF license.
e076ba
# lib/test-unit.rb is a dual license of the Ruby license and LGPLv2.1 or later.
e076ba
License:    (Ruby or BSD) and (Ruby or BSD or Python) and (Ruby or BSD or LGPLv2+)
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Requires:   %{?scl_prefix}rubygem(power_assert)
e076ba
Provides:   %{?scl_prefix}rubygem(test-unit) = %{version}-%{release}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-test-unit
e076ba
Test::Unit (test-unit) is unit testing framework for Ruby, based on xUnit
e076ba
principles. These were originally designed by Kent Beck, creator of extreme
e076ba
programming software development methodology, for Smalltalk's SUnit. It allows
e076ba
writing tests, checking results and automated testing in Ruby.
e076ba
e076ba
e076ba
%package -n %{?scl_prefix}rubygem-xmlrpc
e076ba
Summary:    XMLRPC is a lightweight protocol that enables remote procedure calls over HTTP
e076ba
Version:    %{xmlrpc_version}
e076ba
Group:      Development/Libraries
e076ba
License:    Ruby or BSD
e076ba
Requires:   %{?scl_prefix}ruby(release)
e076ba
Requires:   %{?scl_prefix}ruby(rubygems) >= %{rubygems_version}
e076ba
Provides:   %{?scl_prefix}rubygem(xmlrpc) = %{version}-%{release}
e076ba
BuildArch:  noarch
e076ba
e076ba
%description -n %{?scl_prefix}rubygem-xmlrpc
e076ba
XMLRPC is a lightweight protocol that enables remote procedure calls over
e076ba
HTTP.
e076ba
e076ba
e076ba
%prep
e076ba
%setup -q -n %{ruby_archive}
e076ba
e076ba
# Remove bundled libraries to be sure they are not used.
e076ba
rm -rf ext/psych/yaml
e076ba
rm -rf ext/fiddle/libffi*
e076ba
222d09
# Remove file with non-commercial license
222d09
# https://bugzilla.redhat.com/show_bug.cgi?id=1846113
222d09
rm -f gems/did_you_mean-1.2.0/evaluation/incorrect_words.yaml
222d09
sed -i 's/"evaluation\/incorrect_words.yaml", //' \
222d09
  gems/did_you_mean-1.2.0/did_you_mean.gemspec
222d09
222d09
e076ba
%patch0 -p1
e076ba
%patch1 -p1
e076ba
%patch2 -p1
e076ba
%patch3 -p1
e076ba
%patch4 -p1
e076ba
%patch5 -p1
e076ba
%patch6 -p1
e076ba
%patch7 -p1
e076ba
%patch9 -p1
e076ba
%patch10 -p1
e076ba
%patch12 -p1
e076ba
%patch13 -p1
222d09
%patch14 -p1
e076ba
e076ba
# Provide an example of usage of the tapset:
e076ba
cp -a %{SOURCE3} .
e076ba
e076ba
# Make abrt_prelude.rb available for compilation process. The prelude must be
e076ba
# available together with Ruby's source due to
e076ba
# https://github.com/ruby/ruby/blob/trunk/tool/compile_prelude.rb#L26
e076ba
cp -a %{SOURCE6} .
e076ba
e076ba
%build
e076ba
autoconf
e076ba
e076ba
%configure \
e076ba
        --with-rubylibprefix='%{ruby_libdir}' \
e076ba
        --with-archlibdir='%{_libdir}' \
e076ba
        --with-rubyarchprefix='%{ruby_libarchdir}' \
e076ba
        --with-sitedir='%{ruby_sitelibdir}' \
e076ba
        --with-sitearchdir='%{ruby_sitearchdir}' \
e076ba
        --with-vendordir='%{ruby_vendorlibdir}' \
e076ba
        --with-vendorarchdir='%{ruby_vendorarchdir}' \
e076ba
        --with-rubyhdrdir='%{_includedir}' \
e076ba
        --with-rubyarchhdrdir='%{_includedir}' \
e076ba
        --with-sitearchhdrdir='$(sitehdrdir)/$(arch)' \
e076ba
        --with-vendorarchhdrdir='$(vendorhdrdir)/$(arch)' \
e076ba
        --with-rubygemsdir='%{rubygems_dir}' \
e076ba
        --with-ruby-pc='%{pkg_name}.pc' \
e076ba
        --with-compress-debug-sections=no \
e076ba
        --disable-rpath \
e076ba
        --enable-shared \
e076ba
        --with-ruby-version='' \
e076ba
        --enable-multiarch \
e076ba
        --with-prelude=./abrt_prelude.rb \
e076ba
e076ba
# Q= makes the build output more verbose and allows to check Fedora
e076ba
# compiler options.
e076ba
make %{?_smp_mflags} COPY="cp -p" Q=
e076ba
e076ba
%install
e076ba
rm -rf %{buildroot}
e076ba
make install DESTDIR=%{buildroot}
e076ba
e076ba
# Rename ruby/config.h to ruby/config-<arch>.h to avoid file conflicts on
e076ba
# multilib systems and install config.h wrapper
e076ba
mv %{buildroot}%{_includedir}/%{pkg_name}/config.h %{buildroot}%{_includedir}/%{pkg_name}/config-%{_arch}.h
e076ba
install -m644 %{SOURCE7} %{buildroot}%{_includedir}/%{pkg_name}/config.h
e076ba
e076ba
# Rename the ruby executable. It is replaced by RubyPick.
e076ba
%{?with_rubypick:mv %{buildroot}%{_bindir}/%{pkg_name}{,-mri}}
e076ba
e076ba
# Version is empty if --with-ruby-version is specified.
e076ba
# http://bugs.ruby-lang.org/issues/7807
e076ba
sed -i 's/Version: \${ruby_version}/Version: %{ruby_version}/' %{buildroot}%{_libdir}/pkgconfig/%{pkg_name}.pc
e076ba
e076ba
# Kill bundled certificates, as they should be part of ca-certificates.
e076ba
for cert in \
e076ba
  rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem \
e076ba
  rubygems.org/AddTrustExternalCARoot.pem \
e076ba
  index.rubygems.org/GlobalSignRootCA.pem
e076ba
do
e076ba
  rm %{buildroot}%{rubygems_dir}/rubygems/ssl_certs/$cert
e076ba
  rm -r $(dirname %{buildroot}%{rubygems_dir}/rubygems/ssl_certs/$cert)
e076ba
done
e076ba
# Ensure there is not forgotten any certificate.
e076ba
test ! "$(ls -A  %{buildroot}%{rubygems_dir}/rubygems/ssl_certs/ 2>/dev/null)"
e076ba
e076ba
# Move macros file into proper place and replace the %%{pkg_name} macro, since it
e076ba
# would be wrongly evaluated during build of other packages.
e076ba
mkdir -p %{buildroot}%{_root_sysconfdir}/rpm
e076ba
install -m 644 %{SOURCE4} %{buildroot}%{_root_sysconfdir}/rpm/macros.ruby%{?scl:.%{scl}}
e076ba
sed -i "s/%%{pkg_name}/%{pkg_name}/" %{buildroot}%{_root_sysconfdir}/rpm/macros.ruby%{?scl:.%{scl}}
e076ba
install -m 644 %{SOURCE5} %{buildroot}%{_root_sysconfdir}/rpm/macros.rubygems%{?scl:.%{scl}}
e076ba
sed -i "s/%%{pkg_name}/%{pkg_name}/" %{buildroot}%{_root_sysconfdir}/rpm/macros.rubygems%{?scl:.%{scl}}
e076ba
e076ba
# Install custom operating_system.rb.
e076ba
mkdir -p %{buildroot}%{rubygems_dir}/rubygems/defaults
e076ba
sed 's/@SCL@/%{scl}/' %{SOURCE1} > %{buildroot}%{rubygems_dir}/rubygems/defaults/%{basename:%{SOURCE1}}
e076ba
e076ba
# Move gems root into common direcotry, out of Ruby directory structure.
e076ba
mv %{buildroot}%{ruby_libdir}/gems %{buildroot}%{gem_dir}
e076ba
e076ba
# Create folders for gem binary extensions.
e076ba
# TODO: These folders should go into rubygem-filesystem but how to achieve it,
e076ba
# since noarch package cannot provide arch dependent subpackages?
e076ba
# http://rpm.org/ticket/78
e076ba
mkdir -p %{buildroot}%{_exec_prefix}/lib{,64}/gems/%{pkg_name}
e076ba
e076ba
# Move bundled rubygems to %%gem_dir and %%gem_extdir_mri
e076ba
# make symlinks for io-console and bigdecimal, which are considered to be part of stdlib by other Gems
e076ba
mkdir -p %{buildroot}%{gem_dir}/gems/rdoc-%{rdoc_version}/lib
e076ba
mv %{buildroot}%{ruby_libdir}/rdoc* %{buildroot}%{gem_dir}/gems/rdoc-%{rdoc_version}/lib
e076ba
mv %{buildroot}%{gem_dir}/specifications/default/rdoc-%{rdoc_version}.gemspec %{buildroot}%{gem_dir}/specifications
e076ba
# Below rdoc symbolic links' change is only on SCL. Not on Fedora.
e076ba
# http://pkgs.devel.redhat.com/cgit/rpms/ruby/commit/?id=369e65c
e076ba
# https://src.fedoraproject.org/rpms/ruby/pull-request/9
e076ba
ln -s %{gem_dir}/gems/rdoc-%{rdoc_version}/lib/rdoc.rb %{buildroot}%{ruby_libdir}/rdoc.rb
e076ba
ln -s %{gem_dir}/gems/rdoc-%{rdoc_version}/lib/rdoc %{buildroot}%{ruby_libdir}/rdoc
e076ba
e076ba
mkdir -p %{buildroot}%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib
e076ba
mkdir -p %{buildroot}%{_libdir}/gems/%{pkg_name}/bigdecimal-%{bigdecimal_version}
e076ba
mv %{buildroot}%{ruby_libdir}/bigdecimal %{buildroot}%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib
e076ba
mv %{buildroot}%{ruby_libarchdir}/bigdecimal.so %{buildroot}%{_libdir}/gems/%{pkg_name}/bigdecimal-%{bigdecimal_version}
e076ba
mv %{buildroot}%{gem_dir}/specifications/default/bigdecimal-%{bigdecimal_version}.gemspec %{buildroot}%{gem_dir}/specifications
e076ba
ln -s %{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib/bigdecimal %{buildroot}%{ruby_libdir}/bigdecimal
e076ba
ln -s %{_libdir}/gems/%{pkg_name}/bigdecimal-%{bigdecimal_version}/bigdecimal.so %{buildroot}%{ruby_libarchdir}/bigdecimal.so
e076ba
e076ba
mkdir -p %{buildroot}%{gem_dir}/gems/io-console-%{io_console_version}/lib
e076ba
mkdir -p %{buildroot}%{_libdir}/gems/%{pkg_name}/io-console-%{io_console_version}/io
e076ba
mv %{buildroot}%{ruby_libdir}/io %{buildroot}%{gem_dir}/gems/io-console-%{io_console_version}/lib
e076ba
mv %{buildroot}%{ruby_libarchdir}/io/console.so %{buildroot}%{_libdir}/gems/%{pkg_name}/io-console-%{io_console_version}/io
e076ba
mv %{buildroot}%{gem_dir}/specifications/default/io-console-%{io_console_version}.gemspec %{buildroot}%{gem_dir}/specifications
e076ba
ln -s %{gem_dir}/gems/io-console-%{io_console_version}/lib/io %{buildroot}%{ruby_libdir}/io
e076ba
ln -s %{_libdir}/gems/%{pkg_name}/io-console-%{io_console_version}/io/console.so %{buildroot}%{ruby_libarchdir}/io/console.so
e076ba
e076ba
mkdir -p %{buildroot}%{gem_dir}/gems/json-%{json_version}/lib
e076ba
mkdir -p %{buildroot}%{_libdir}/gems/%{pkg_name}/json-%{json_version}
e076ba
mv %{buildroot}%{ruby_libdir}/json* %{buildroot}%{gem_dir}/gems/json-%{json_version}/lib
e076ba
mv %{buildroot}%{ruby_libarchdir}/json/ %{buildroot}%{_libdir}/gems/%{pkg_name}/json-%{json_version}/
e076ba
mv %{buildroot}%{gem_dir}/specifications/default/json-%{json_version}.gemspec %{buildroot}%{gem_dir}/specifications
e076ba
ln -s %{gem_dir}/gems/json-%{json_version}/lib/json.rb %{buildroot}%{ruby_libdir}/json.rb
e076ba
ln -s %{gem_dir}/gems/json-%{json_version}/lib/json %{buildroot}%{ruby_libdir}/json
e076ba
ln -s %{_libdir}/gems/%{pkg_name}/json-%{json_version}/json/ %{buildroot}%{ruby_libarchdir}/json
e076ba
e076ba
mkdir -p %{buildroot}%{gem_dir}/gems/openssl-%{openssl_version}/lib
e076ba
mkdir -p %{buildroot}%{_libdir}/gems/%{pkg_name}/openssl-%{openssl_version}
e076ba
mv %{buildroot}%{ruby_libdir}/openssl* %{buildroot}%{gem_dir}/gems/openssl-%{openssl_version}/lib
e076ba
mv %{buildroot}%{ruby_libarchdir}/openssl.so %{buildroot}%{_libdir}/gems/%{pkg_name}/openssl-%{openssl_version}/
e076ba
mv %{buildroot}%{gem_dir}/specifications/default/openssl-%{openssl_version}.gemspec %{buildroot}%{gem_dir}/specifications
e076ba
# This used to be directory when OpenSSL was integral part of StdLib => Keep
e076ba
# it as directory and link everything in it to prevent directory => symlink
e076ba
# conversion RPM issues.
e076ba
mkdir -p %{buildroot}%{ruby_libdir}/openssl
e076ba
find %{buildroot}%{gem_dir}/gems/openssl-%{openssl_version}/lib/openssl -maxdepth 1 -type f -exec \
e076ba
  sh -c 'ln -s %{gem_dir}/gems/openssl-%{openssl_version}/lib/openssl/`basename {}` %{buildroot}%{ruby_libdir}/openssl' \;
e076ba
ln -s %{gem_dir}/gems/openssl-%{openssl_version}/lib/openssl.rb %{buildroot}%{ruby_libdir}/openssl.rb
e076ba
ln -s %{_libdir}/gems/%{pkg_name}/openssl-%{openssl_version}/openssl.so %{buildroot}%{ruby_libarchdir}/openssl.so
e076ba
e076ba
mkdir -p %{buildroot}%{gem_dir}/gems/psych-%{psych_version}/lib
e076ba
mkdir -p %{buildroot}%{_libdir}/gems/%{pkg_name}/psych-%{psych_version}
e076ba
mv %{buildroot}%{ruby_libdir}/psych* %{buildroot}%{gem_dir}/gems/psych-%{psych_version}/lib
e076ba
mv %{buildroot}%{ruby_libarchdir}/psych.so %{buildroot}%{_libdir}/gems/%{pkg_name}/psych-%{psych_version}/
e076ba
mv %{buildroot}%{gem_dir}/specifications/default/psych-%{psych_version}.gemspec %{buildroot}%{gem_dir}/specifications
e076ba
ln -s %{gem_dir}/gems/psych-%{psych_version}/lib/psych %{buildroot}%{ruby_libdir}/psych
e076ba
ln -s %{gem_dir}/gems/psych-%{psych_version}/lib/psych.rb %{buildroot}%{ruby_libdir}/psych.rb
e076ba
ln -s %{_libdir}/gems/%{pkg_name}/psych-%{psych_version}/psych.so %{buildroot}%{ruby_libarchdir}/psych.so
e076ba
e076ba
# Move the binary extensions into proper place (if no gem has binary extension,
e076ba
# the extensions directory might be empty).
e076ba
find %{buildroot}%{gem_dir}/extensions/*-%{_target_os}/%{ruby_version}/* -maxdepth 0 \
e076ba
  -exec mv '{}' %{buildroot}%{_libdir}/gems/%{name}/ \; \
e076ba
  || echo "No gem binary extensions to move."
e076ba
e076ba
# Adjust the gemspec files so that the gems will load properly
e076ba
sed -i '/^end$/ i\
e076ba
  s.extensions = ["json/ext/parser.so", "json/ext/generator.so"]' %{buildroot}%{gem_dir}/specifications/json-%{json_version}.gemspec
e076ba
e076ba
# Move man pages into proper location
e076ba
mv %{buildroot}%{gem_dir}/gems/rake-%{rake_version}/doc/rake.1 %{buildroot}%{_mandir}/man1
e076ba
e076ba
# Install a tapset and fix up the path to the library.
e076ba
mkdir -p %{buildroot}%{tapset_dir}
e076ba
sed -e "s|@LIBRARY_PATH@|%{tapset_libdir}/libruby.so.%{major_minor_version}|" \
e076ba
  %{SOURCE2} > %{buildroot}%{tapset_dir}/libruby.so.%{major_minor_version}.stp
e076ba
# Escape '*/' in comment.
e076ba
sed -i -r "s|( \*.*\*)\/(.*)|\1\\\/\2|" %{buildroot}%{tapset_dir}/libruby.so.%{major_minor_version}.stp
e076ba
e076ba
# Prepare -doc subpackage file lists.
e076ba
find doc -maxdepth 1 -type f ! -name '.*' ! -name '*.ja*' > .ruby-doc.en
e076ba
echo 'doc/images' >> .ruby-doc.en
e076ba
echo 'doc/syntax' >> .ruby-doc.en
e076ba
e076ba
find doc -maxdepth 1 -type f -name '*.ja*' > .ruby-doc.ja
e076ba
echo 'doc/irb' >> .ruby-doc.ja
e076ba
echo 'doc/pty' >> .ruby-doc.ja
e076ba
e076ba
sed -i 's/^/%doc /' .ruby-doc.*
e076ba
sed -i 's/^/%lang(ja) /' .ruby-doc.ja
e076ba
e076ba
%check
e076ba
# Ruby software collection tests
e076ba
%{?scl:scl enable %scl - << \EOF
e076ba
set -ex
e076ba
mkdir -p ./lib/rubygems/defaults
e076ba
cp %{SOURCE1} ./lib/rubygems/defaults
e076ba
sed 's/@SCL@/%{scl}/' %{SOURCE14} > ./%{basename:%{SOURCE14}}
e076ba
make test-all TESTS="%{basename:%{SOURCE14}}"
e076ba
rm -rf ./lib/rubygems/defaults ./%{basename:%{SOURCE14}}
e076ba
EOF}
e076ba
e076ba
%if 0%{?with_hardening_test}
e076ba
# Check Ruby hardening.
e076ba
checksec -f libruby.so.%{ruby_version} | \
e076ba
  grep "Full RELRO.*Canary found.*NX enabled.*DSO.*No RPATH.*No RUNPATH.*Yes.*\d*.*\d*.*libruby.so.%{ruby_version}"
e076ba
%endif
e076ba
e076ba
# Check RubyGems version.
e076ba
[ "`make runruby TESTRUN_SCRIPT='bin/gem -v' | tail -1`" == '%{rubygems_version}' ]
e076ba
e076ba
# Check Rubygems bundled dependencies versions.
e076ba
e076ba
# Molinillo.
e076ba
[ "`make runruby TESTRUN_SCRIPT=\"-e \\\" \
e076ba
  module Gem; module Resolver; end; end; \
e076ba
  require 'rubygems/resolver/molinillo/lib/molinillo/gem_metadata'; \
e076ba
  puts Gem::Resolver::Molinillo::VERSION\\\"\" | tail -1`" \
e076ba
  == '%{molinillo_version}' ]
e076ba
e076ba
e076ba
# test_debug(TestRubyOptions) fails due to LoadError reported in debug mode,
e076ba
# when abrt.rb cannot be required (seems to be easier way then customizing
e076ba
# the test suite).
e076ba
touch abrt.rb
e076ba
e076ba
# Check if abrt hook is required (RubyGems are disabled by default when using
e076ba
# runruby, so re-enable them).
e076ba
make runruby TESTRUN_SCRIPT="--enable-gems %{SOURCE12}"
e076ba
e076ba
# Check if systemtap is supported.
e076ba
%{?with_systemtap:make runruby TESTRUN_SCRIPT=%{SOURCE13}}
e076ba
e076ba
DISABLE_TESTS=""
e076ba
e076ba
# https://bugs.ruby-lang.org/issues/11480
e076ba
# Once seen: http://koji.fedoraproject.org/koji/taskinfo?taskID=12556650
e076ba
DISABLE_TESTS="$DISABLE_TESTS -x test_fork.rb"
e076ba
e076ba
# Disable failing TestResolvMDNS#test_mdns_each_address test,
e076ba
# which fails on Koji.
e076ba
# https://bugs.ruby-lang.org/issues/14175
e076ba
sed -i '/def test_mdns_each_address$/,/^  end$/ s/^/#/' test/resolv/test_mdns.rb
e076ba
e076ba
make check TESTS="-v $DISABLE_TESTS"
e076ba
e076ba
%post libs -p /sbin/ldconfig
e076ba
e076ba
%postun libs -p /sbin/ldconfig
e076ba
e076ba
%files
e076ba
%license BSDL
e076ba
%license COPYING
e076ba
%lang(ja) %license COPYING.ja
e076ba
%license GPL
e076ba
%license LEGAL
e076ba
%{_bindir}/erb
e076ba
%{_bindir}/%{pkg_name}%{?with_rubypick:-mri}
e076ba
%{_mandir}/man1/erb*
e076ba
%{_mandir}/man1/ruby*
e076ba
e076ba
%files devel
e076ba
%license BSDL
e076ba
%license COPYING
e076ba
%lang(ja) %license COPYING.ja
e076ba
%license GPL
e076ba
%license LEGAL
e076ba
e076ba
%config(noreplace) %{_root_sysconfdir}/rpm/macros.ruby%{?scl:.%{scl}}
e076ba
e076ba
%{_includedir}/*
e076ba
%{_libdir}/libruby.so
e076ba
%{_libdir}/pkgconfig/%{pkg_name}.pc
e076ba
e076ba
%files libs
e076ba
%license COPYING
e076ba
%lang(ja) %license COPYING.ja
e076ba
%license GPL
e076ba
%license LEGAL
e076ba
%doc README.md
e076ba
%doc NEWS
e076ba
# Exclude /usr/local directory since it is supposed to be managed by
e076ba
# local system administrator.
e076ba
%exclude %{ruby_sitelibdir}
e076ba
%exclude %{ruby_sitearchdir}
e076ba
%dir %{ruby_vendorlibdir}
e076ba
%dir %{ruby_vendorarchdir}
e076ba
e076ba
# List all these files explicitly to prevent surprises
e076ba
# Platform independent libraries.
e076ba
%dir %{ruby_libdir}
e076ba
%{ruby_libdir}/*.rb
e076ba
%exclude %{ruby_libdir}/irb.rb
e076ba
%exclude %{ruby_libdir}/json.rb
e076ba
%exclude %{ruby_libdir}/openssl.rb
e076ba
%exclude %{ruby_libdir}/psych.rb
e076ba
%exclude %{ruby_libdir}/rdoc.rb
e076ba
%{ruby_libdir}/cgi
e076ba
%{ruby_libdir}/digest
e076ba
%{ruby_libdir}/drb
e076ba
%{ruby_libdir}/fiddle
e076ba
%{ruby_libdir}/forwardable
e076ba
%exclude %{ruby_libdir}/irb
e076ba
%{ruby_libdir}/matrix
e076ba
%{ruby_libdir}/net
e076ba
%{ruby_libdir}/optparse
e076ba
%{ruby_libdir}/racc
e076ba
%{ruby_libdir}/rexml
e076ba
%{ruby_libdir}/rinda
e076ba
%{ruby_libdir}/ripper
e076ba
%{ruby_libdir}/rss
e076ba
%{ruby_libdir}/shell
e076ba
%{ruby_libdir}/syslog
e076ba
%{ruby_libdir}/unicode_normalize
e076ba
%{ruby_libdir}/uri
e076ba
%{ruby_libdir}/webrick
e076ba
%{ruby_libdir}/yaml
e076ba
e076ba
# Platform specific libraries.
e076ba
%{_libdir}/libruby.so.*
e076ba
%dir %{ruby_libarchdir}
e076ba
%dir %{ruby_libarchdir}/cgi
e076ba
%{ruby_libarchdir}/cgi/escape.so
e076ba
%{ruby_libarchdir}/continuation.so
e076ba
%{ruby_libarchdir}/coverage.so
e076ba
%{ruby_libarchdir}/date_core.so
e076ba
%{ruby_libarchdir}/dbm.so
e076ba
%dir %{ruby_libarchdir}/digest
e076ba
%{ruby_libarchdir}/digest.so
e076ba
%{ruby_libarchdir}/digest/bubblebabble.so
e076ba
%{ruby_libarchdir}/digest/md5.so
e076ba
%{ruby_libarchdir}/digest/rmd160.so
e076ba
%{ruby_libarchdir}/digest/sha1.so
e076ba
%{ruby_libarchdir}/digest/sha2.so
e076ba
%dir %{ruby_libarchdir}/enc
e076ba
%{ruby_libarchdir}/enc/big5.so
e076ba
%{ruby_libarchdir}/enc/cp949.so
e076ba
%{ruby_libarchdir}/enc/emacs_mule.so
e076ba
%{ruby_libarchdir}/enc/encdb.so
e076ba
%{ruby_libarchdir}/enc/euc_jp.so
e076ba
%{ruby_libarchdir}/enc/euc_kr.so
e076ba
%{ruby_libarchdir}/enc/euc_tw.so
e076ba
%{ruby_libarchdir}/enc/gb18030.so
e076ba
%{ruby_libarchdir}/enc/gb2312.so
e076ba
%{ruby_libarchdir}/enc/gbk.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_1.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_10.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_11.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_13.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_14.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_15.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_16.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_2.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_3.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_4.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_5.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_6.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_7.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_8.so
e076ba
%{ruby_libarchdir}/enc/iso_8859_9.so
e076ba
%{ruby_libarchdir}/enc/koi8_r.so
e076ba
%{ruby_libarchdir}/enc/koi8_u.so
e076ba
%{ruby_libarchdir}/enc/shift_jis.so
e076ba
%dir %{ruby_libarchdir}/enc/trans
e076ba
%{ruby_libarchdir}/enc/trans/big5.so
e076ba
%{ruby_libarchdir}/enc/trans/chinese.so
e076ba
%{ruby_libarchdir}/enc/trans/ebcdic.so
e076ba
%{ruby_libarchdir}/enc/trans/emoji.so
e076ba
%{ruby_libarchdir}/enc/trans/emoji_iso2022_kddi.so
e076ba
%{ruby_libarchdir}/enc/trans/emoji_sjis_docomo.so
e076ba
%{ruby_libarchdir}/enc/trans/emoji_sjis_kddi.so
e076ba
%{ruby_libarchdir}/enc/trans/emoji_sjis_softbank.so
e076ba
%{ruby_libarchdir}/enc/trans/escape.so
e076ba
%{ruby_libarchdir}/enc/trans/gb18030.so
e076ba
%{ruby_libarchdir}/enc/trans/gbk.so
e076ba
%{ruby_libarchdir}/enc/trans/iso2022.so
e076ba
%{ruby_libarchdir}/enc/trans/japanese.so
e076ba
%{ruby_libarchdir}/enc/trans/japanese_euc.so
e076ba
%{ruby_libarchdir}/enc/trans/japanese_sjis.so
e076ba
%{ruby_libarchdir}/enc/trans/korean.so
e076ba
%{ruby_libarchdir}/enc/trans/single_byte.so
e076ba
%{ruby_libarchdir}/enc/trans/transdb.so
e076ba
%{ruby_libarchdir}/enc/trans/utf8_mac.so
e076ba
%{ruby_libarchdir}/enc/trans/utf_16_32.so
e076ba
%{ruby_libarchdir}/enc/utf_16be.so
e076ba
%{ruby_libarchdir}/enc/utf_16le.so
e076ba
%{ruby_libarchdir}/enc/utf_32be.so
e076ba
%{ruby_libarchdir}/enc/utf_32le.so
e076ba
%{ruby_libarchdir}/enc/windows_1250.so
e076ba
%{ruby_libarchdir}/enc/windows_1251.so
e076ba
%{ruby_libarchdir}/enc/windows_1252.so
e076ba
%{ruby_libarchdir}/enc/windows_1253.so
e076ba
%{ruby_libarchdir}/enc/windows_1254.so
e076ba
%{ruby_libarchdir}/enc/windows_1257.so
e076ba
%{ruby_libarchdir}/enc/windows_31j.so
e076ba
%{ruby_libarchdir}/etc.so
e076ba
%{ruby_libarchdir}/fcntl.so
e076ba
%{ruby_libarchdir}/fiber.so
e076ba
%{ruby_libarchdir}/fiddle.so
e076ba
%{ruby_libarchdir}/gdbm.so
e076ba
%dir %{ruby_libarchdir}/io
e076ba
%{ruby_libarchdir}/io/nonblock.so
e076ba
%{ruby_libarchdir}/io/wait.so
e076ba
%{ruby_libarchdir}/nkf.so
e076ba
%{ruby_libarchdir}/objspace.so
e076ba
%{ruby_libarchdir}/pathname.so
e076ba
%{ruby_libarchdir}/pty.so
e076ba
%dir %{ruby_libarchdir}/racc
e076ba
%{ruby_libarchdir}/racc/cparse.so
e076ba
%dir %{ruby_libarchdir}/rbconfig
e076ba
%{ruby_libarchdir}/rbconfig.rb
e076ba
%{ruby_libarchdir}/rbconfig/sizeof.so
e076ba
%{ruby_libarchdir}/readline.so
e076ba
%{ruby_libarchdir}/ripper.so
e076ba
%{ruby_libarchdir}/sdbm.so
e076ba
%{ruby_libarchdir}/socket.so
e076ba
%{ruby_libarchdir}/stringio.so
e076ba
%{ruby_libarchdir}/strscan.so
e076ba
%{ruby_libarchdir}/syslog.so
e076ba
%{ruby_libarchdir}/zlib.so
e076ba
e076ba
%{tapset_root}
e076ba
e076ba
%files -n %{?scl_prefix}rubygems
e076ba
%{_bindir}/gem
e076ba
%dir %{rubygems_dir}
e076ba
%{rubygems_dir}/rubygems
e076ba
%{rubygems_dir}/rubygems.rb
e076ba
e076ba
# Explicitly include only RubyGems directory strucure to avoid accidentally
e076ba
# packaged content.
e076ba
%dir %{gem_dir}
e076ba
%dir %{gem_dir}/build_info
e076ba
%dir %{gem_dir}/cache
e076ba
%dir %{gem_dir}/doc
e076ba
%dir %{gem_dir}/extensions
e076ba
%dir %{gem_dir}/gems
e076ba
%dir %{gem_dir}/specifications
e076ba
%dir %{gem_dir}/specifications/default
e076ba
%dir %{_exec_prefix}/lib*/gems
e076ba
%dir %{_exec_prefix}/lib*/gems/ruby
e076ba
e076ba
%exclude %{gem_dir}/cache/*
e076ba
e076ba
# TODO: Gemify these libraries
e076ba
%{gem_dir}/specifications/default/cmath-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/csv-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/date-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/dbm-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/etc-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/fcntl-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/fiddle-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/fileutils-1.0.2.gemspec
e076ba
%{gem_dir}/specifications/default/gdbm-2.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/ipaddr-1.2.0.gemspec
e076ba
%{gem_dir}/specifications/default/scanf-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/sdbm-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/stringio-0.0.1.gemspec
e076ba
%{gem_dir}/specifications/default/strscan-1.0.0.gemspec
e076ba
%{gem_dir}/specifications/default/webrick-1.4.2.gemspec
e076ba
%{gem_dir}/specifications/default/zlib-1.0.0.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygems-devel
e076ba
%config(noreplace) %{_root_sysconfdir}/rpm/macros.rubygems%{?scl:.%{scl}}
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-rake
e076ba
%{_bindir}/rake
e076ba
%{gem_dir}/gems/rake-%{rake_version}
e076ba
%{gem_dir}/specifications/rake-%{rake_version}.gemspec
e076ba
%{_mandir}/man1/rake.1*
e076ba
e076ba
%files irb
e076ba
%{_bindir}/irb
e076ba
%{ruby_libdir}/irb.rb
e076ba
%{ruby_libdir}/irb
e076ba
%{_mandir}/man1/irb.1*
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-rdoc
e076ba
%{ruby_libdir}/rdoc*
e076ba
%{_bindir}/rdoc
e076ba
%{_bindir}/ri
e076ba
%{gem_dir}/gems/rdoc-%{rdoc_version}
e076ba
%{gem_dir}/specifications/rdoc-%{rdoc_version}.gemspec
e076ba
%{_mandir}/man1/ri*
e076ba
e076ba
%files doc -f .ruby-doc.en -f .ruby-doc.ja
e076ba
%doc README.md
e076ba
%doc ChangeLog
e076ba
%doc ruby-exercise.stp
e076ba
%{_datadir}/ri
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-bigdecimal
e076ba
%{ruby_libdir}/bigdecimal
e076ba
%{ruby_libarchdir}/bigdecimal.so
e076ba
%{_libdir}/gems/%{pkg_name}/bigdecimal-%{bigdecimal_version}
e076ba
%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}
e076ba
%{gem_dir}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-did_you_mean
e076ba
%{gem_dir}/gems/did_you_mean-%{did_you_mean_version}
e076ba
%exclude %{gem_dir}/gems/did_you_mean-%{did_you_mean_version}/.*
e076ba
%{gem_dir}/specifications/did_you_mean-%{did_you_mean_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-io-console
e076ba
%{ruby_libdir}/io
e076ba
%{ruby_libarchdir}/io/console.so
e076ba
%{_libdir}/gems/%{pkg_name}/io-console-%{io_console_version}
e076ba
%{gem_dir}/gems/io-console-%{io_console_version}
e076ba
%{gem_dir}/specifications/io-console-%{io_console_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-json
e076ba
%{ruby_libdir}/json*
e076ba
%{ruby_libarchdir}/json*
e076ba
%{_libdir}/gems/%{pkg_name}/json-%{json_version}
e076ba
%{gem_dir}/gems/json-%{json_version}
e076ba
%{gem_dir}/specifications/json-%{json_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-minitest
e076ba
%{gem_dir}/gems/minitest-%{minitest_version}
e076ba
%exclude %{gem_dir}/gems/minitest-%{minitest_version}/.*
e076ba
%{gem_dir}/specifications/minitest-%{minitest_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-openssl
e076ba
%{ruby_libdir}/openssl
e076ba
%{ruby_libdir}/openssl.rb
e076ba
%{ruby_libarchdir}/openssl.so
e076ba
%{_libdir}/gems/%{pkg_name}/openssl-%{openssl_version}
e076ba
%{gem_dir}/gems/openssl-%{openssl_version}
e076ba
%{gem_dir}/specifications/openssl-%{openssl_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-power_assert
e076ba
%{gem_dir}/gems/power_assert-%{power_assert_version}
e076ba
%exclude %{gem_dir}/gems/power_assert-%{power_assert_version}/.*
e076ba
%{gem_dir}/specifications/power_assert-%{power_assert_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-psych
e076ba
%{ruby_libdir}/psych
e076ba
%{ruby_libdir}/psych.rb
e076ba
%{ruby_libarchdir}/psych.so
e076ba
%{_libdir}/gems/%{pkg_name}/psych-%{psych_version}
e076ba
%{gem_dir}/gems/psych-%{psych_version}
e076ba
%{gem_dir}/specifications/psych-%{psych_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-net-telnet
e076ba
%{gem_dir}/gems/net-telnet-%{net_telnet_version}
e076ba
%exclude %{gem_dir}/gems/net-telnet-%{net_telnet_version}/.*
e076ba
%{gem_dir}/specifications/net-telnet-%{net_telnet_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-test-unit
e076ba
%{gem_dir}/gems/test-unit-%{test_unit_version}
e076ba
%{gem_dir}/specifications/test-unit-%{test_unit_version}.gemspec
e076ba
e076ba
%files -n %{?scl_prefix}rubygem-xmlrpc
e076ba
%license %{gem_dir}/gems/xmlrpc-%{xmlrpc_version}/LICENSE.txt
e076ba
%dir %{gem_dir}/gems/xmlrpc-%{xmlrpc_version}
e076ba
%exclude %{gem_dir}/gems/xmlrpc-%{xmlrpc_version}/.*
e076ba
%{gem_dir}/gems/xmlrpc-%{xmlrpc_version}/Gemfile
e076ba
%{gem_dir}/gems/xmlrpc-%{xmlrpc_version}/Rakefile
e076ba
%doc %{gem_dir}/gems/xmlrpc-%{xmlrpc_version}/README.md
e076ba
%{gem_dir}/gems/xmlrpc-%{xmlrpc_version}/bin
e076ba
%{gem_dir}/gems/xmlrpc-%{xmlrpc_version}/lib
e076ba
%{gem_dir}/gems/xmlrpc-%{xmlrpc_version}/xmlrpc.gemspec
e076ba
%{gem_dir}/specifications/xmlrpc-%{xmlrpc_version}.gemspec
e076ba
e076ba
%changelog
222d09
* Fri Aug 21 2020 Pavel Valena <pvalena@redhat.com> - 2.5.5-8
222d09
- Remove file with non-commercial license from did_you_mean gem.
222d09
  Resolves: rhbz#1848915
222d09
2b14a6
* Mon Apr 15 2019 Jun Aruga <jaruga@redhat.com> - 2.5.5-7
2b14a6
- Upgrade to Ruby 2.5.5.
2b14a6
- Delete directory using symlink when decompressing tar
2b14a6
  Resolves: CVE-2019-8320
2b14a6
- Fix escape sequence injection vulnerability in verbose.
2b14a6
  Resolves: CVE-2019-8321
2b14a6
- Fix escape sequence injection vulnerability in gem owner.
2b14a6
  Resolves: CVE-2019-8322
2b14a6
- Fix escape sequence injection vulnerability in API response handling.
2b14a6
  Resolves: CVE-2019-8323
2b14a6
- Prohibit arbitrary code execution when installing a malicious gem.
2b14a6
  Resolves: CVE-2019-8324
2b14a6
- Fix escape sequence injection vulnerability in errors.
2b14a6
  Resolves: CVE-2019-8325
2b14a6
0455cc
* Mon Oct 29 2018 Pavel Valena <pvalena@redhat.com> - 2.5.3-6
0455cc
- Update to Ruby 2.5.3.
0455cc
  Resolves: CVE-2018-16395
0455cc
  Resolves: CVE-2018-16396
0455cc
  Resolves: rhbz#1563076
0455cc
  Removed Patch11: ruby-2.5.0-parse.y-assignable_error.patch; subsumed
0455cc
  Removed Patch12: ruby-2.5.0-Disable-Tokyo-TZ-tests.patch; subsumed
0455cc
  Removed Patch13: ruby-2.5.0-st.c-retry-operations-if-rebuilt.patch; subsumed
0455cc
- Properly harden package using -fstack-protector-strong.
0455cc
- Fix: return default path with nonexistent home dir
0455cc
  Resolves: rhbz#1602877
0455cc
e076ba
* Wed Feb 21 2018 Jun Aruga <jaruga@redhat.com> - 2.5.0-5
e076ba
- They are broken by recen tzdata update.
e076ba
- Fix thread_safe test suite segfaults.
e076ba
- Fix invalid licenses.
e076ba
e076ba
* Mon Jan 15 2018 Jun Aruga <jaruga@redhat.com> - 2.5.0-4
e076ba
- Fix segfaults during generating of documentation.
e076ba
  Resolves: rhbz#1532585
e076ba
e076ba
* Mon Jan 15 2018 Jun Aruga <jaruga@redhat.com> - 2.5.0-3
e076ba
- Update for did_you_mean required by ruby
e076ba
  Resolves: rhbz#1533920
e076ba
e076ba
* Tue Jan 02 2018 Jun Aruga <jaruga@redhat.com> - 2.5.0-2
e076ba
- Upgrade to Ruby 2.5.0.
e076ba
e076ba
* Mon Oct 30 2017 Vít Ondruch <vondruch@redhat.com> - 2.4.2-86
e076ba
- Upgrade to Ruby 2.4.2.
e076ba
  * Remove Patch10: ruby-2.4.0-vm_insnhelper.c-block-argument-at-tailcall.patch;
e076ba
      subsumed
e076ba
  Resolves: rhbz#1506785
e076ba
- Fix unsafe object deserialization in RubyGems (CVE-2017-0903).
e076ba
  * ruby-2.4.3-CVE-2017-0903-Fix-unsafe-object-deserialization
e076ba
      -vulnerability.patch
e076ba
  Resolves: CVE-2017-0903
e076ba
e076ba
* Tue Jan 17 2017 Vít Ondruch <vondruch@redhat.com> - 2.4.0-75
e076ba
- Apply patch fixing rubygem-mongo build failures.
e076ba
e076ba
* Mon Jan 09 2017 Vít Ondruch <vondruch@redhat.com> - 2.4.0-73
e076ba
- Reshuffle the %%license macro to avoid %%postun scriptlet issues.
e076ba
  Resolves: rhbz#1411233
e076ba
e076ba
* Mon Jan 09 2017 Vít Ondruch <vondruch@redhat.com> - 2.4.0-72
e076ba
- Add rubygem-io-console dependency for rubygem-rdoc.
e076ba
e076ba
* Mon Jan 02 2017 Vít Ondruch <vondruch@redhat.com> - 2.4.0-71
e076ba
- ruby-libs should not own links to unbundled gems.
e076ba
e076ba
* Mon Jan 02 2017 Vít Ondruch <vondruch@redhat.com> - 2.4.0-70
e076ba
- Upgrade to Ruby 2.4.0.
e076ba
- Workaround "an invalid stdio handle" error on PPC (rhbz#1361037).
e076ba
- Add gemspec_add_dep and gemspec_remove_dep macros.
e076ba
- Move gemified xmlrpc into subpackage.
e076ba
- Move gemified openssl into subpackage.
e076ba
- Make symlinks for json gem.
e076ba
- Tk is removed from stdlib.
e076ba
- Harden package.
e076ba
- Extend 'gem_' macros for pre-release version support.
e076ba
e076ba
* Wed Oct 26 2016 Pavel Valena <pvalena@redhat.com> - 2.3.1-64
e076ba
- Fix: do not fail in operating_system.rb when X_SCLS is empty
e076ba
  Resolves: rhbz#1387139
e076ba
e076ba
* Mon Oct 17 2016 Pavel Valena <pvalena@redhat.com> - 2.3.1-63
e076ba
- Support in no_proxy for domain names with whitespaces and leading dots
e076ba
  Resolves: rhbz#1384810
e076ba
e076ba
* Fri Aug 12 2016 Pavel Valena <pvalena@redhat.com> - 2.3.1-62
e076ba
- Fix support for dependent^2 SCLs
e076ba
- Update to Ruby 2.3.1
e076ba
  * Remove Patch8:
e076ba
      ruby-2.3.0-undef-BUILTIN_CHOOSE_EXPR_CONSTANT_P.patch; subsumed
e076ba
  * Remove Patch10:
e076ba
      ruby-2.3.1-remove-tests-depending-on-europe-moscow.patch; subsumed
e076ba
      also removed "UTC=TZ " tests prefix
e076ba
e076ba
* Mon Jul 25 2016 Pavel Valena <pvalena@redhat.com> - 2.3.0-61
e076ba
- Add %%{scl}-runtime to Requires in libs subpackage
e076ba
e076ba
* Tue Jul 19 2016 Pavel Valena <pvalena@redhat.com> - 2.3.0-60
e076ba
- Fix and enhance systemtap tests
e076ba
- Remove tests depending on Europe/Moscow to avoid failures due to tzdata change
e076ba
e076ba
* Wed Apr 13 2016 Pavel Valena <pvalena@redhat.com> - 2.3.0-60
e076ba
- Fix ruby lib path in macros.ruby.rh-ruby23
e076ba
  - Resolves: rhbz#1255753
e076ba
- Manually set UTC timezone for tests
e076ba
e076ba
* Mon Feb 22 2016 Vít Ondruch <vondruch@redhat.com> - 2.3.0-59
e076ba
- Don't prefix bundling provides.
e076ba
- Don't enable collections for build.
e076ba
- Optimize operating_system.rb a bit.
e076ba
e076ba
* Fri Feb 19 2016 Pavel Valena <pvalena@redhat.com> - 2.3.0-58
e076ba
- Fix default_dir and default_bindir
e076ba
e076ba
* Fri Feb 19 2016 Pavel Valena <pvalena@redhat.com> - 2.3.0-57
e076ba
- Fix dependent scls's paths
e076ba
e076ba
* Thu Feb 18 2016 Pavel Valena <pvalena@redhat.com> - 2.3.0-56
e076ba
- Fix macros.ruby and macros.rubygems
e076ba
e076ba
* Wed Feb 17 2016 Pavel Valena <pvalena@redhat.com> - 2.3.0-55
e076ba
- Add scl macros
e076ba
e076ba
* Wed Feb  3 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2.3.0-54
e076ba
- Add rubypick and rubygems requires to ruby-devel to deal with BuildRequires
e076ba
e076ba
* Fri Jan 15 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.3.0-53
e076ba
- Backport trunk@53455 to make ruby-qt build
e076ba
e076ba
* Wed Jan 06 2016 Vít Ondruch <vondruch@redhat.com> - 2.3.0-52
e076ba
- Explicitly require RDoc, since weak dependencies are ignored by default.
e076ba
e076ba
* Wed Jan 06 2016 Vít Ondruch <vondruch@redhat.com> - 2.3.0-51
e076ba
- Load RubyGems prior ABRT hook to properly rescue RubyGems exceptions.
e076ba
e076ba
* Mon Jan 04 2016 Vít Ondruch <vondruch@redhat.com> - 2.3.0-50
e076ba
- Upgrade to Ruby 2.3.0.
e076ba
- Move gemified net-telnet into subpackage.
e076ba
- Add did_you_mean subpackage.
e076ba
- Add virtual provides for CCAN copylibs.
e076ba
- Use weak dependencies.
e076ba
e076ba
* Tue Dec 22 2015 Pavel Valena <pvalena@redhat.com> - 2.3.0-0.7.preview2
e076ba
- Add systemtap tests.
e076ba
e076ba
* Mon Dec 21 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.4-47
e076ba
- Update to Ruby 2.2.4.
e076ba
e076ba
* Thu Dec 10 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.3-46
e076ba
- Fix ABRT hook autoloading.
e076ba
e076ba
* Fri Sep 04 2015 Michal Toman <mtoman@fedoraproject.org> - 2.2.3-45
e076ba
- Add support for MIPS architecture to config.h
e076ba
e076ba
* Tue Sep 01 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.3-44
e076ba
- Update to Ruby 2.2.3.
e076ba
e076ba
* Tue Jun 23 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.2-43
e076ba
- Fix for "dh key too small" error of OpenSSL 1.0.2+.
e076ba
e076ba
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.2-42
e076ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e076ba
e076ba
* Wed Jun 10 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.2-41
e076ba
- Fix the git BR following the git package split.
e076ba
e076ba
* Mon May 04 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.2-40
e076ba
- Fix upgrade path (rubygem-io-console's version was recently bumped in F21
e076ba
  and makes the higher release to win).
e076ba
e076ba
* Tue Apr 14 2015 Josef Stribny <jstribny@redhat.com> - 2.2.2-11
e076ba
- Bump release because of gems
e076ba
e076ba
* Tue Apr 14 2015 Josef Stribny <jstribny@redhat.com> - 2.2.2-1
e076ba
- Update to Ruby 2.2.2
e076ba
e076ba
* Fri Mar 20 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.1-10
e076ba
- Fix libruby.so versions in SystemTap scripts (rhbz#1202232).
e076ba
e076ba
* Wed Mar 04 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.1-9
e076ba
- Update to Ruby 2.2.1.
e076ba
e076ba
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.2.0-8
e076ba
- Rebuilt for Fedora 23 Change
e076ba
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
e076ba
e076ba
* Thu Feb 05 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-7
e076ba
- Fix directory ownership.
e076ba
e076ba
* Wed Feb 04 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-6
e076ba
- Initialize all load paths in operating_system.rb.
e076ba
e076ba
* Tue Feb 03 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-5
e076ba
- Make operating_system.rb more robust.
e076ba
- Add RubyGems stub headers for bundled gems.
e076ba
e076ba
* Thu Jan 29 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-4
e076ba
- Add missing rubygem-test-unit dependency on rubygem-power_assert.
e076ba
e076ba
* Thu Jan 15 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.2.0-3
e076ba
- Bump release to avoid EVR issue on rubygem-test-unit
e076ba
e076ba
* Fri Jan 02 2015 Vít Ondruch <vondruch@redhat.com> - 2.2.0-1
e076ba
- Upgrade to Ruby 2.2.0.
e076ba
- Explicitly list RubyGems directories to avoid accidentaly packaged content.
e076ba
- Split test-unit and power_assert gems into separate sub-packages.
e076ba
- Drop libdb dependency in favor of gdbm.
e076ba
e076ba
* Fri Dec 26 2014 Orion Poplwski <orion@cora.nwra.com> - 2.1.5-26
e076ba
- Disbable sse2 on i668 (bug #1101811)
e076ba
e076ba
* Thu Nov 20 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.5-25
e076ba
- Update to Ruby 2.1.5.
e076ba
e076ba
* Fri Oct 31 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.4-24
e076ba
- Update to Ruby 2.1.4.
e076ba
- Include only vendor directories, not their content (rhbz#1114071).
e076ba
- Fix "invalid regex" warning for non-rubygem packages (rhbz#1154067).
e076ba
- Use load macro introduced in RPM 4.12.
e076ba
e076ba
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
e076ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e076ba
e076ba
* Tue Jun 24 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2.1.2-23
e076ba
- Fix FTBFS 
e076ba
- Specify tcl/tk 8.6
e076ba
- Add upstream patch to build with libffi 3.1
e076ba
e076ba
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
e076ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e076ba
e076ba
* Wed May 21 2014 Jaroslav Å karvada <jskarvad@redhat.com>
e076ba
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
e076ba
e076ba
* Tue May 20 2014 Josef Stribny <jstribny@redhat.com> - 2.1.2-21
e076ba
- Update to Ruby 2.1.2
e076ba
e076ba
* Tue May 06 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.1-20
e076ba
- Remove useless exclude (rhbz#1065897).
e076ba
- Extract load macro into external file and include it.
e076ba
- Kill bundled certificates.
e076ba
e076ba
* Wed Apr 23 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.1-19
e076ba
- Correctly expand $(prefix) in some Makefiles, e.g. eruby.
e076ba
e076ba
* Tue Apr 08 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.1-18
e076ba
- Update to Ruby 2.1.1.
e076ba
- Revert regression of Hash#reject.
e076ba
e076ba
* Mon Mar 03 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.0-19
e076ba
- Add RPM dependency generators for RubyGems.
e076ba
e076ba
* Mon Feb 10 2014 Josef Stribny <jstribny@redhat.com> - 2.1.0-19
e076ba
- Don't link cert.pem explicitely
e076ba
e076ba
* Wed Jan 15 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.0-18
e076ba
- Don't generate documentation on unexpected places.
e076ba
- Detect if rubygems are running under rpmbuild and install gem binary
e076ba
  extensions into appropriate place.
e076ba
- Add support for ppc64le arch (rhbz#1053263).
e076ba
- Re-enable some test cases, which are passing now with Kernel 3.12.8+.
e076ba
- Backport fix for floating point issues on i686.
e076ba
e076ba
* Thu Jan 02 2014 Vít Ondruch <vondruch@redhat.com> - 2.1.0-17
e076ba
- Upgrade to Ruby 2.1.0.
e076ba
- Move RPM macros into /usr/lib/rpm/macros.d directory.
e076ba
- Allow MD5 in OpenSSL for tests.
e076ba
e076ba
* Tue Jul 30 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-15
e076ba
- Move Psych symlinks to vendor dir, to prevent F18 -> F19 upgrade issues
e076ba
  (rhbz#988490).
e076ba
e076ba
* Mon Jul 15 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-14
e076ba
- Add forgotten psych.rb link into rubygem-psych to fix "private method `load'
e076ba
  called for Psych:Moduler" error (rhbz#979133).
e076ba
e076ba
* Thu Jul 11 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-13
e076ba
- Fixes multilib conlicts of .gemspec files.
e076ba
- Make symlinks for psych gem to ruby stdlib dirs (rhbz#979133).
e076ba
- Use system-wide cert.pem.
e076ba
e076ba
* Thu Jul 04 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-12
e076ba
- Fix RubyGems search paths when building gems with native extension
e076ba
  (rhbz#979133).
e076ba
e076ba
* Tue Jul 02 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-11
e076ba
- Fix RubyGems version.
e076ba
e076ba
* Tue Jul 02 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-10
e076ba
- Better support for build without configuration (rhbz#977941).
e076ba
e076ba
* Mon Jul 01 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-9
e076ba
- Update to Ruby 2.0.0-p247 (rhbz#979605).
e076ba
- Fix CVE-2013-4073.
e076ba
- Fix for wrong makefiles created by mkmf (rhbz#921650).
e076ba
- Add support for ABRT autoloading.
e076ba
e076ba
* Fri May 17 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.195-8
e076ba
- Update to Ruby 2.0.0-p195 (rhbz#917374).
e076ba
- Fix object taint bypassing in DL and Fiddle (CVE-2013-2065).
e076ba
- Fix build against OpenSSL with enabled ECC curves.
e076ba
- Add aarch64 support (rhbz#926463).
e076ba
e076ba
* Fri Apr 19 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-7
e076ba
- Macro definition moved into macros.ruby and macros.rubygems files.
e076ba
- Added filtering macros.
e076ba
- Filter automatically generated provides of private libraries (rhbz#947408).
e076ba
e076ba
* Fri Mar 22 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-6
e076ba
- Fix RbConfig::CONFIG['exec_prefix'] returns empty string (rhbz#924851).
e076ba
e076ba
* Thu Mar 21 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-5
e076ba
- Make Ruby buildable without rubypick.
e076ba
- Prevent random test failures.
e076ba
e076ba
* Fri Mar 08 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.0.0.0-4
e076ba
- Don't mark rpm config file as %%config (fpc#259)
e076ba
e076ba
* Tue Mar 05 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-3
e076ba
- Avoid "method redefined;" warnings due to modified operating_system.rb.
e076ba
- Fix strange paths created during build of binary gems.
e076ba
e076ba
* Mon Feb 25 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-2
e076ba
- Prevent squash of %%gem_install with following line.
e076ba
e076ba
* Mon Feb 25 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-1
e076ba
- Update to Ruby 2.0.0-p0.
e076ba
- Change %%{ruby_extdir} to %%{ruby_extdir_mri} in preparation for better
e076ba
  JRuby support.
e076ba
e076ba
* Mon Feb 25 2013 Mamoru TASAKA <mtasaka@fedoraprojec.org> - 2.0.0.0-0.3.r39387
e076ba
- Move test-unit.gemspec to -libs subpackage for now because rubygems
e076ba
  2.0.0 does not create this
e076ba
e076ba
* Fri Feb 22 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-0.2.r39387
e076ba
- Fix issues with wrong value of Rubygem's shebang introduced in r39267.
e076ba
e076ba
* Fri Feb 22 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-0.1.r39387
e076ba
- Upgrade to Ruby 2.0.0 (r39387).
e076ba
- Introduce %%gem_install macro.
e076ba
- Build against libdb instead of libdb4 (rhbz#894022).
e076ba
- Move native extensions from exts to ruby directory.
e076ba
- Enable most of the PPC test suite.
e076ba
- Change ruby(abi) -> ruby(release).
e076ba
- Rename ruby executable to ruby-mri, to be prepared for RubyPick.
e076ba
- Add ruby(runtime_executable) virtual provide, which is later used
e076ba
  by RubyPick.
e076ba
- RDoc now depends on JSON.
e076ba
- Try to make -doc subpackage noarch again, since the new RDoc should resolve
e076ba
  the arch dependent issues (https://github.com/rdoc/rdoc/issues/71).
e076ba
- Enable SystemTap support.
e076ba
- Add TapSet for Ruby.
e076ba
- Split Psych into rubygem-psych subpackage.
e076ba
e076ba
* Mon Feb 11 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.385-28
e076ba
- Update to 1.9.3 p385
e076ba
e076ba
* Sat Jan 19 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.374-27
e076ba
- Update to 1.9.3 p374
e076ba
- Fix provided variables in pkgconfig (bug 789532:
e076ba
  Vít Ondruch <vondruch@redhat.com>)
e076ba
e076ba
* Fri Jan 18 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-26
e076ba
- Provide non-versioned pkgconfig file (bug 789532)
e076ba
- Use db5 on F-19 (bug 894022)
e076ba
 
e076ba
* Wed Jan 16 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-25
e076ba
- Backport fix for the upstream PR7629, save the proc made from the given block
e076ba
  (bug 895173)
e076ba
e076ba
* Wed Jan  2 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-24
e076ba
- Update to 1.9.3.362
e076ba
e076ba
* Mon Dec 03 2012 Jaromir Capik <jcapik@redhat.com> - 1.9.3.327-23
e076ba
- Skipping test_parse.rb (fails on ARM at line 787)
e076ba
- http://bugs.ruby-lang.org/issues/6899
e076ba
e076ba
* Sun Nov 11 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.327-23
e076ba
- Skip test_str_crypt (on rawhide) for now (upstream bug 7312)
e076ba
e076ba
* Sat Nov 10 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.327-22
e076ba
- Ignore some network related tests
e076ba
e076ba
* Sat Nov 10 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.327-21
e076ba
- Update to 1.9.3.327
e076ba
- Fix Hash-flooding DoS vulnerability on MurmurHash function
e076ba
  (CVE-2012-5371)
e076ba
e076ba
* Sat Oct 13 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.286-19
e076ba
- Update to 1.9.3 p286
e076ba
- Don't create files when NUL-containing path name is passed
e076ba
  (bug 865940, CVE-2012-4522)
e076ba
e076ba
* Thu Oct 04 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.9.3.194-18
e076ba
- Patch from trunk for CVE-2012-4464, CVE-2012-4466
e076ba
e076ba
* Thu Sep 06 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-17
e076ba
- Split documentation into -doc subpackage (rhbz#854418).
e076ba
e076ba
* Tue Aug 14 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-16
e076ba
- Revert the dependency of ruby-libs on rubygems (rhbz#845011, rhbz#847482).
e076ba
e076ba
* Wed Aug 01 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-15
e076ba
- ruby-libs must require rubygems (rhbz#845011).
e076ba
e076ba
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.3.194-14
e076ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e076ba
e076ba
* Mon Jun 11 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1.9.3.194-13
e076ba
- Make the bigdecimal gem a runtime dependency of Ruby.
e076ba
e076ba
* Mon Jun 11 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1.9.3.194-12
e076ba
- Make symlinks for bigdecimal and io-console gems to ruby stdlib dirs (RHBZ 829209).
e076ba
e076ba
* Tue May 29 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1.9.3.194-11
e076ba
- Fix license to contain Public Domain.
e076ba
- macros.ruby now contains unexpanded macros.
e076ba
e076ba
* Sun Apr 22 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.9.3.194-10.1
e076ba
- Bump release
e076ba
e076ba
* Fri Apr 20 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-1
e076ba
- Update to Ruby 1.9.3-p194.
e076ba
e076ba
* Mon Apr 09 2012 Karsten Hopp <karsten@redhat.com> 1.9.3.125-3
e076ba
- disable check on ppc(64), RH bugzilla 803698
e076ba
e076ba
* Wed Feb 29 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.9.3.125-2
e076ba
- Temporarily disable make check on ARM until it's fixed upstream. Tracked in RHBZ 789410
e076ba
e076ba
* Mon Feb 20 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.125-1
e076ba
- Upgrade to Ruby 1.9.3-p125.
e076ba
e076ba
* Sun Jan 29 2012 Mamoru Tasaka <mtasaka@fedoraprpject.org> - 1.9.3.0-7
e076ba
- Make mkmf.rb verbose by default
e076ba
e076ba
* Thu Jan 26 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-6
e076ba
- Relax dependencies to allow external updates of bundled gems.
e076ba
e076ba
* Wed Jan 18 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-5
e076ba
- Initial release of Ruby 1.9.3.
e076ba
- Add rubygems dependency on io-console for user interactions.
e076ba
- Gems license clarification.
e076ba
e076ba
* Tue Jan 17 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-4
e076ba
- Bundled gems moved into dedicated directories and subpackages.
e076ba
- Create and own RubyGems directories for binary extensions.
e076ba
- Fix build with GCC 4.7.
e076ba
e076ba
* Mon Jan 16 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-3
e076ba
- Fix RHEL build.
e076ba
- Fixed directory ownership.
e076ba
- Verose build output.
e076ba
e076ba
* Sun Jan 15 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-2
e076ba
- Install RubyGems outside of Ruby directory structure.
e076ba
- RubyGems has not its own -devel subpackage.
e076ba
- Enhanced macros.ruby and macros.rubygems.
e076ba
- All tests are green now (bkabrda).
e076ba
e076ba
* Sat Jan 14 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-1
e076ba
- Initial package
e076ba
e076ba
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.7.357-2
e076ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e076ba
e076ba
* Thu Dec 29 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.357-1
e076ba
- Update to 1.8.7p357
e076ba
- Randomize hash on process startup (CVE-2011-4815, bug 750564)
e076ba
e076ba
* Fri Dec 23 2011 Dennis Gilmore <dennis@ausil.us> - 1.8.7.352-2
e076ba
- dont normalise arm cpus to arm
e076ba
- there is something weird about how ruby choses where to put bits
e076ba
e076ba
* Thu Nov 17 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.352-3
e076ba
- F-17: kill gdbm support for now due to licensing compatibility issue
e076ba
e076ba
* Sat Oct  1 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.352-2
e076ba
- F-17: rebuild against new gdbm
e076ba
e076ba
* Sat Jul 16 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.352-1
e076ba
- Update to 1.8.7 p352
e076ba
- CVE-2011-2686 is fixed in this version (bug 722415)
e076ba
- Update ext/tk to the latest git
e076ba
- Remove duplicate path entry (bug 718695)
e076ba
e076ba
* Thu Jul 14 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.334-4
e076ba
- Once fix FTBFS (bug 716021)
e076ba
e076ba
* Mon Jul 11 2011 Dennis Gilmore <dennis@ausil.us> - 1.8.7.334-3
e076ba
- normalise arm cpus to arm
e076ba
e076ba
* Mon May 30 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.334-2
e076ba
- Own %%{_normalized_cpu}-%%{_target_os} directory (bug 708816)
e076ba
e076ba
* Sat Feb 19 2011 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.334-1
e076ba
- Update to 1.8.7 p334
e076ba
e076ba
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.7.330-3
e076ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e076ba
e076ba
* Sun Jan 02 2011 Dennis Gilmore <dennis@ausil.us> - 1.8.7.330-2
e076ba
- nomalise the 32 bit sparc archs to sparc
e076ba
e076ba
* Sun Dec 26 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.330-1
e076ba
- Update to 1.8.7 p330
e076ba
- ext/tk updated to the newest header
e076ba
e076ba
* Thu Nov  4 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.302-2
e076ba
- Avoid multilib conflict on -libs subpackage (bug 649174)
e076ba
e076ba
* Mon Aug 23 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.302-1
e076ba
- Update to 1.8.7.302
e076ba
- CVE-2010-0541 (bug 587731) is fixed in this version
e076ba
- Update ext/tk to the latest head
e076ba
e076ba
* Mon Aug  2 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.299-5
e076ba
- More cleanup of spec file, expecially for rpmlint issue
e076ba
- build ri files in %%build
e076ba
e076ba
* Mon Jul 26 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.299-4
e076ba
- Cleanup spec file
e076ba
- Make -irb, -rdoc subpackage noarch
e076ba
- Make dependencies between arch-dependent subpackages isa specific
e076ba
- Improve sample documentation gathering
e076ba
e076ba
* Mon Jul 12 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.299-3
e076ba
- updated packaged based on feedback (from mtasaka)
e076ba
- added comments to all patches / sources
e076ba
- obsoleted ruby-mode, as it's now provided by the emacs package itself
e076ba
- readded missing documentation
e076ba
- various small compatability/regression fixes
e076ba
e076ba
* Tue Jul 06 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.299-2
e076ba
- readded bits to pull tk package from upstream source branch
e076ba
- removed unecessary .tk.old dir
e076ba
- renamed macros which may cause confusion, removed unused ones
e076ba
e076ba
* Thu Jun 24 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.299-1
e076ba
- integrate more of jmeyering's and mtaska's feedback
e076ba
- removed emacs bits that are now shipped with the emacs package
e076ba
- various patch and spec cleanup
e076ba
- rebased to ruby 1.8.7 patch 299, removed patches no longer needed:
e076ba
   ruby-1.8.7-openssl-1.0.patch, ruby-1.8.7-rb_gc_guard_ptr-optimization.patch
e076ba
e076ba
* Wed Jun 23 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-5
e076ba
- Various fixes
e076ba
e076ba
* Wed Jun 23 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-4
e076ba
- Fixed incorrect paths in 1.8.7 rpm
e076ba
e076ba
* Tue Jun 22 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-3
e076ba
- Integrated Jim Meyering's feedback and changes in to:
e076ba
- remove trailing blanks
e076ba
- placate rpmlint
e076ba
- ruby_* definitions: do not use trailing slashes in directory names
e076ba
- _normalized_cpu: simplify definition
e076ba
e076ba
* Mon Jun 21 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-2
e076ba
- Integrate mtasaka's feedback and changes
e076ba
- patch101 ruby_1_8_7-rb_gc_guard_ptr-optimization.patch
e076ba
e076ba
* Tue Jun 15 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-1
e076ba
- Initial Ruby 1.8.7 specfile
e076ba
e076ba
* Wed May 19 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-5
e076ba
- Retry for bug 559158, Simplify the OpenSSL::Digest class
e076ba
  pull more change commits from ruby_1_8 branch
e076ba
e076ba
* Mon May 17 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-4
e076ba
- Patch36 (ruby-1.8.x-RHASH_SIZE-rb_hash_lookup-def.patch)
e076ba
  also backport rb_hash_lookup definition (bug 592936)
e076ba
e076ba
* Thu May 13 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-3
e076ba
- ruby-1.8.x-null-class-must-be-Qnil.patch (bug 530407)
e076ba
- Recreate some patches using upstream svn when available, and
e076ba
  add some comments for patches
e076ba
e076ba
* Tue May 11 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-2
e076ba
- tcltk: Give up using potentially unmaintained ruby_1_8_6 branch
e076ba
  and instead completely replace with ruby_1_8 branch head
e076ba
  (at this time, using rev 27738)
e076ba
  (seems to fix 560053, 590503)
e076ba
- Fix Japanese encoding strings under ruby-tcltk/ext/tk/sample/
e076ba
e076ba
* Tue Apr 27 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-1
e076ba
- Update to 1.8.6 p 399 (bug 579675)
e076ba
- Patch to fix gc bug causing open4 crash (bug 580993)
e076ba
e076ba
* Fri Mar 12 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.388-9
e076ba
- F-14: rebuild against new gdbm
e076ba
e076ba
* Thu Jan 28 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
e076ba
- Once revert the previous change (patch34)
e076ba
e076ba
* Wed Jan 27 2010 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 1.8.6.388-8
e076ba
- Backport openssl/digest functions providing digest and hexdigest functions
e076ba
  directly in OpenSSL::Digest.methods
e076ba
- Make sure that Red Hat people version their changelog entries
e076ba
- This is actually release #1, but now needs to be release #7
e076ba
e076ba
* Mon Jan 18 2010 Akira TAGOH <tagoh@redhat.com> - 1.8.6.388-1
e076ba
- Add conditional for RHEL.
e076ba
e076ba
* Wed Jan 13 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-6
e076ba
- CVE-2009-4492 ruby WEBrick log escape sequence (bug 554485)
e076ba
e076ba
* Wed Dec  9 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-5
e076ba
- Change mkmf.rb to use LIBRUBYARG_SHARED so that have_library() works
e076ba
  without libruby-static.a (bug 428384)
e076ba
- And move libruby-static.a to -static subpackage
e076ba
e076ba
* Thu Oct 29 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-4
e076ba
- Use bison to regenerate parse.c to keep the original format of error
e076ba
  messages (bug 530275 comment 4)
e076ba
e076ba
* Sun Oct 25 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-3
e076ba
- Patch so that irb saves its history (bug 518584, ruby issue 1556)
e076ba
e076ba
* Sat Oct 24 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-2
e076ba
- Update to 1.8.6 patchlevel 383 (bug 520063)
e076ba
e076ba
* Wed Oct 14 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.369-5
e076ba
- Much better idea for Patch31 provided by Akira TAGOH <tagoh@redhat.com>
e076ba
e076ba
* Wed Oct 14 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.369-4
e076ba
- Fix the search path of ri command for ri manuals installed with gem
e076ba
  (bug 528787)
e076ba
e076ba
* Wed Aug 26 2009 Tomas Mraz <tmraz@redhat.com> - 1.8.6.369-3
e076ba
- Rebuild against new openssl
e076ba
e076ba
* Thu Jul 23 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.369-2
e076ba
- Make sure that readline.so is linked against readline 5 because
e076ba
  Ruby is under GPLv2
e076ba
e076ba
* Sat Jun 20 2009  Jeroen van Meeuwen <kanarip@fedoraproject.org> - 1.8.6.369-1
e076ba
- New patchlevel fixing CVE-2009-1904
e076ba
- Fix directory on ARM (#506233, Kedar Sovani)
e076ba
e076ba
* Sun May 31 2009 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 1.8.6.368-1
e076ba
- New upstream release (p368)
e076ba
e076ba
* Sat Apr 11 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.287-8
e076ba
- Merge Review fix (#226381)
e076ba
e076ba
* Wed Mar 18 2009 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 1.8.6.287-7
e076ba
- Fix regression in CVE-2008-3790 (#485383)
e076ba
e076ba
* Mon Mar 16 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.287-6
e076ba
- Again use -O2 optimization level
e076ba
- i586 should search i386-linux directory (on <= F-11)
e076ba
e076ba
* Thu Mar 05 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 1.8.6.287-5
e076ba
- Rebuild for gcc4.4
e076ba
e076ba
* Fri Feb 27 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 1.8.6.287-3
e076ba
- CVE-2008-5189: CGI header injection.
e076ba
e076ba
* Wed Oct  8 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.287-2
e076ba
- CVE-2008-3790: DoS vulnerability in the REXML module.
e076ba
e076ba
* Sat Aug 23 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.287-1
e076ba
- New upstream release.
e076ba
- Security fixes.
e076ba
  - CVE-2008-3655: Ruby does not properly restrict access to critical
e076ba
                   variables and methods at various safe levels.
e076ba
  - CVE-2008-3656: DoS vulnerability in WEBrick.
e076ba
  - CVE-2008-3657: Lack of taintness check in dl.
e076ba
  - CVE-2008-1447: DNS spoofing vulnerability in resolv.rb.
e076ba
  - CVE-2008-3443: Memory allocation failure in Ruby regex engine.
e076ba
- Remove the unnecessary backported patches.
e076ba
e076ba
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.8.6.230-5
e076ba
- rebuild against db4-4.7
e076ba
e076ba
* Tue Jul  1 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-4
e076ba
- Backported from upstream SVN to fix a segfault issue with Array#fill.
e076ba
e076ba
* Mon Jun 30 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-3
e076ba
- Backported from upstream SVN to fix a segfault issue. (#452825)
e076ba
- Backported from upstream SVN to fix an integer overflow in rb_ary_fill.
e076ba
e076ba
* Wed Jun 25 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-2
e076ba
- Fix a segfault issue. (#452810)
e076ba
e076ba
* Tue Jun 24 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-1
e076ba
- New upstream release.
e076ba
- Security fixes. (#452295)
e076ba
  - CVE-2008-1891: WEBrick CGI source disclosure.
e076ba
  - CVE-2008-2662: Integer overflow in rb_str_buf_append().
e076ba
  - CVE-2008-2663: Integer overflow in rb_ary_store().
e076ba
  - CVE-2008-2664: Unsafe use of alloca in rb_str_format().
e076ba
  - CVE-2008-2725: Integer overflow in rb_ary_splice().
e076ba
  - CVE-2008-2726: Integer overflow in rb_ary_splice().
e076ba
- ruby-1.8.6.111-CVE-2007-5162.patch: removed.
e076ba
- Build ruby-mode package for all archtectures.
e076ba
e076ba
* Tue Mar  4 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.114-1
e076ba
- Security fix for CVE-2008-1145.
e076ba
- Improve a spec file. (#226381)
e076ba
  - Correct License tag.
e076ba
  - Fix a timestamp issue.
e076ba
  - Own a arch-specific directory.
e076ba
e076ba
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.8.6.111-9
e076ba
- Autorebuild for GCC 4.3
e076ba
e076ba
* Tue Feb 19 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-8
e076ba
- Rebuild for gcc-4.3.
e076ba
e076ba
* Tue Jan 15 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-7
e076ba
- Revert the change of libruby-static.a. (#428384)
e076ba
e076ba
* Fri Jan 11 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-6
e076ba
- Fix an unnecessary replacement for shebang. (#426835)
e076ba
e076ba
* Fri Jan  4 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-5
e076ba
- Rebuild.
e076ba
e076ba
* Fri Dec 28 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-4
e076ba
- Clean up again.
e076ba
e076ba
* Fri Dec 21 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-3
e076ba
- Clean up the spec file.
e076ba
- Remove ruby-man-1.4.6 stuff. this is entirely the out-dated document.
e076ba
  this could be replaced by ri.
e076ba
- Disable the static library building.
e076ba
e076ba
* Tue Dec 04 2007 Release Engineering <rel-eng at fedoraproject dot org> - 1.8.6.111-2
e076ba
 - Rebuild for openssl bump
e076ba
e076ba
* Wed Oct 31 2007 Akira TAGOH <tagoh@redhat.com>
e076ba
- Fix the dead link.
e076ba
e076ba
* Mon Oct 29 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-1
e076ba
- New upstream release.
e076ba
- ruby-1.8.6.111-CVE-2007-5162.patch: Update a bit with backporting the changes
e076ba
   at trunk to enable the fix without any modifications on the users' scripts.
e076ba
   Note that Net::HTTP#enable_post_connection_check isn't available anymore.
e076ba
   If you want to disable this post-check, you should give OpenSSL::SSL::VERIFY_NONE
e076ba
   to Net::HTTP#verify_mode= instead of.
e076ba
e076ba
* Mon Oct 15 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.110-2
e076ba
- Enable pthread support for ppc too. (#201452)
e076ba
- Fix unexpected dependencies appears in ruby-libs. (#253325)
e076ba
e076ba
* Wed Oct 10 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.110-1
e076ba
- New upstream release.
e076ba
  - ruby-r12567.patch: removed.
e076ba
- ruby-1.8.6-CVE-2007-5162.patch: security fix for Net::HTTP that is
e076ba
  insufficient verification of SSL certificate.
e076ba
e076ba
* Thu Aug 23 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.36-4
e076ba
- Rebuild
e076ba
e076ba
* Fri Aug 10 2007 Akira TAGOH <tagoh@redhat.com>
e076ba
- Update License tag.
e076ba
e076ba
* Mon Jun 25 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.36-3
e076ba
- ruby-r12567.patch: backport patch from upstream svn to get rid of
e076ba
  the unnecessary declarations. (#245446)
e076ba
e076ba
* Wed Jun 20 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.36-2
e076ba
- New upstream release.
e076ba
  - Fix Etc::getgrgid to get the correct gid as requested. (#236647)
e076ba
e076ba
* Wed Mar 28 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6-2
e076ba
- Fix search path breakage. (#234029)
e076ba
e076ba
* Thu Mar 15 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6-1
e076ba
- New upstream release.
e076ba
- clean up a spec file.
e076ba
e076ba
* Tue Feb 13 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.5.12-2
e076ba
- Rebuild
e076ba
e076ba
* Mon Feb  5 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.5.12-1
e076ba
- New upstream release.
e076ba
e076ba
* Mon Dec 11 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5.2-1
e076ba
- security fix release.
e076ba
e076ba
* Fri Oct 27 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5-4
e076ba
- security fix release.
e076ba
- ruby-1.8.5-cgi-CVE-2006-5467.patch: fix a CGI multipart parsing bug that
e076ba
  causes the denial of service. (#212396)
e076ba
e076ba
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.8.5-3
e076ba
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
e076ba
e076ba
* Tue Sep 26 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5-2
e076ba
- fixed rbconfig.rb to refer to DESTDIR for sitearchdir. (#207311)
e076ba
e076ba
* Mon Aug 28 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5-1
e076ba
- New upstream release.
e076ba
- removed the unnecessary patches:
e076ba
  - ruby-1.8.4-no-eaccess.patch
e076ba
  - ruby-1.8.4-64bit-pack.patch
e076ba
  - ruby-1.8.4-fix-insecure-dir-operation.patch
e076ba
  - ruby-1.8.4-fix-insecure-regexp-modification.patch
e076ba
  - ruby-1.8.4-fix-alias-safe-level.patch
e076ba
- build with --enable-pthread except on ppc.
e076ba
- ruby-1.8.5-hash-memory-leak.patch: backported from CVS to fix a memory leak
e076ba
  on Hash. [ruby-talk:211233]
e076ba
e076ba
* Mon Aug  7 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-12
e076ba
- owns sitearchdir. (#201208)
e076ba
e076ba
* Thu Jul 20 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-11
e076ba
- security fixes [CVE-2006-3694]
e076ba
  - ruby-1.8.4-fix-insecure-dir-operation.patch:
e076ba
  - ruby-1.8.4-fix-insecure-regexp-modification.patch: fixed the insecure
e076ba
    operations in the certain safe-level restrictions. (#199538)
e076ba
  - ruby-1.8.4-fix-alias-safe-level.patch: fixed to not bypass the certain
e076ba
    safe-level restrictions. (#199543)
e076ba
e076ba
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.8.4-10.fc6.1
e076ba
- rebuild
e076ba
e076ba
* Mon Jun 19 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-10
e076ba
- fixed the wrong file list again. moved tcltk library into ruby-tcltk.
e076ba
  (#195872)
e076ba
e076ba
* Thu Jun  8 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-8
e076ba
- ruby-deprecated-sitelib-search-path.patch: correct the order of search path.
e076ba
e076ba
* Wed Jun  7 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-7
e076ba
- exclude ppc64 to make ruby-mode package. right now emacs.ppc64 isn't provided
e076ba
  and buildsys became much stricter.
e076ba
- ruby-deprecated-sitelib-search-path.patch: applied to add more search path
e076ba
  for backward compatiblity.
e076ba
- added byacc to BuildReq. (#194161)
e076ba
e076ba
* Wed May 17 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-6
e076ba
- ruby-deprecated-search-path.patch: added the deprecated installation paths
e076ba
  to the search path for the backward compatibility.
e076ba
- added a Provides: ruby(abi) to ruby-libs.
e076ba
- ruby-1.8.4-64bit-pack.patch: backport patch from upstream to fix unpack("l")
e076ba
  not working on 64bit arch and integer overflow on template "w". (#189350)
e076ba
- updated License tag to be more comfortable, and with a pointer to get more
e076ba
  details, like Python package does. (#179933)
e076ba
- clean up.
e076ba
e076ba
* Wed Apr 19 2006 Akira TAGOH <tagoh@redhat.com>
e076ba
- ruby-rubyprefix.patch: moved all arch-independent modules under /usr/lib/ruby
e076ba
  and keep arch-dependent modules under /usr/lib64/ruby for 64bit archs.
e076ba
  so 'rubylibdir', 'sitelibdir' and 'sitedir' in Config::CONFIG points to
e076ba
  the kind of /usr/lib/ruby now. (#184199)
e076ba
e076ba
* Mon Apr 17 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-4
e076ba
- correct sitelibdir. (#184198)
e076ba
e076ba
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.8.4-3.2
e076ba
- bump again for double-long bug on ppc(64)
e076ba
e076ba
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.8.4-3.1
e076ba
- rebuilt for new gcc4.1 snapshot and glibc changes
e076ba
e076ba
* Mon Feb  6 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-3
e076ba
- ruby-1.8.4-no-eaccess.patch: backported from ruby CVS to avoid conflict
e076ba
  between newer glibc. (#179835)
e076ba
e076ba
* Wed Jan  4 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-2
e076ba
- ruby-tcltk-multilib.patch: fixed a typo.
e076ba
e076ba
* Tue Dec 27 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-1
e076ba
- New upstream release.
e076ba
  - fixed a missing return statement. (#140833)
e076ba
  - fixed an use of uninitialized variable. (#144890)
e076ba
e076ba
* Fri Dec 16 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.4.preview2
e076ba
- updates to 1.8.4-preview2.
e076ba
- renamed the packages to ruby-* (#175765)
e076ba
  - irb  -> ruby-irb
e076ba
  - rdoc -> ruby-rdoc
e076ba
  - ri   -> ruby-ri
e076ba
- added tcl-devel and tk-devel into BuildRequires.
e076ba
e076ba
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
e076ba
- rebuilt
e076ba
e076ba
* Thu Nov 10 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.3.preview1
e076ba
- rebuilt against the latest openssl.
e076ba
e076ba
* Tue Nov  1 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.2.preview1
e076ba
- build-deps libX11-devel instead of xorg-x11-devel.
e076ba
e076ba
* Mon Oct 31 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.1.preview1
e076ba
- New upstream release.
e076ba
- ruby-1.8.2-strscan-memset.patch: removed because it's no longer needed.
e076ba
e076ba
* Tue Oct  4 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-4
e076ba
- moved the documents from ruby-libs to ruby-docs, which contains the arch
e076ba
  specific thing and to be multilib support. (#168826)
e076ba
e076ba
* Mon Oct  3 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-3
e076ba
- fixed the wrong file list. the external library for tcl/tk was included
e076ba
  in ruby-libs unexpectedly.
e076ba
e076ba
* Mon Sep 26 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-2
e076ba
- ruby-multilib.patch: added another chunk for multilib. (#169127)
e076ba
e076ba
* Wed Sep 21 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-1
e076ba
- New upstream release.
e076ba
- Build-Requires xorg-x11-devel instead of XFree86-devel.
e076ba
- ruby-multilib.patch: applied for only 64-bit archs.
e076ba
- ruby-1.8.2-xmlrpc-CAN-2005-1992.patch: removed. it has already been in upstream.
e076ba
e076ba
* Tue Jun 21 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-9
e076ba
- ruby-1.8.2-xmlrpc-CAN-2005-1992.patch: fixed the arbitrary command execution
e076ba
  on XMLRPC server. (#161096)
e076ba
e076ba
* Thu Jun 16 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-8
e076ba
- ruby-1.8.2-tcltk-multilib.patch: applied to get tcltklib.so built. (#160194)
e076ba
e076ba
* Thu Apr  7 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-7
e076ba
- ruby-1.8.2-deadcode.patch: removed the dead code from the source. (#146108)
e076ba
- make sure that all documentation files in ruby-docs are the world-
e076ba
  readable. (#147279)
e076ba
e076ba
* Tue Mar 22 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-6
e076ba
- ruby-1.8.2-strscan-memset.patch: fixed an wrong usage of memset(3).
e076ba
e076ba
* Tue Mar 15 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-5
e076ba
- rebuilt
e076ba
e076ba
* Tue Jan 25 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-4
e076ba
- fixed the wrong generation of file manifest. (#146055)
e076ba
- spec file clean up.
e076ba
e076ba
* Mon Jan 24 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-3
e076ba
- separated out to rdoc package.
e076ba
- make the dependency of irb for rdoc. (#144708)
e076ba
e076ba
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> - 1.8.2-2
e076ba
- Rebuilt for new readline.
e076ba
e076ba
* Wed Jan  5 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-1
e076ba
- New upstream release.
e076ba
- ruby-1.8.1-ia64-stack-limit.patch: removed - it's no longer needed.
e076ba
- ruby-1.8.1-cgi_session_perms.patch: likewise.
e076ba
- ruby-1.8.1-cgi-dos.patch: likewise.
e076ba
- generated Ruby interactive documentation - senarated package.
e076ba
  it's now provided as ri package. (#141806)
e076ba
e076ba
* Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 1.8.1-10
e076ba
- rebuild against db-4.3.21.
e076ba
e076ba
* Wed Nov 10 2004 Akira TAGOH <tagoh@redhat.com> - 1.8.1-9
e076ba
- ruby-1.8.1-cgi-dos.patch: security fix [CAN-2004-0983]
e076ba
- ruby-1.8.1-cgi_session_perms.patch: security fix [CAN-2004-0755]
e076ba
e076ba
* Fri Oct 29 2004 Akira TAGOH <tagoh@redhat.com> - 1.8.1-8
e076ba
- added openssl-devel and db4-devel into BuildRequires (#137479)
e076ba
e076ba
* Wed Oct  6 2004 Akira TAGOH <tagoh@redhat.com> - 1.8.1-7
e076ba
- require emacs-common instead of emacs.
e076ba
e076ba
* Wed Jun 23 2004 Akira TAGOH <tagoh@redhat.com> 1.8.1-4
e076ba
- updated the documentation.
e076ba
e076ba
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
e076ba
- rebuilt
e076ba
e076ba
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
e076ba
- rebuilt
e076ba
e076ba
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
e076ba
- rebuilt
e076ba
e076ba
* Wed Feb 04 2004 Akira TAGOH <tagoh@redhat.com> 1.8.1-1
e076ba
- New upstream release.
e076ba
- don't use any optimization for ia64 to avoid the build failure.
e076ba
- ruby-1.8.1-ia64-stack-limit.patch: applied to fix SystemStackError when the optimization is disabled.
e076ba
e076ba
* Sat Dec 13 2003 Jeff Johnson <jbj@jbj.org> 1.8.0-3
e076ba
- rebuild against db-4.2.52.
e076ba
e076ba
* Thu Sep 25 2003 Jeff Johnson <jbj@jbj.org> 1.8.0-2
e076ba
- rebuild against db-4.2.42.
e076ba
e076ba
* Tue Aug  5 2003 Akira TAGOH <tagoh@redhat.com> 1.8.0-1
e076ba
- New upstream release.
e076ba
e076ba
* Thu Jul 24 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-9.1
e076ba
- rebuilt
e076ba
e076ba
* Thu Jul 24 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-9
e076ba
- ruby-1.6.8-castnode.patch: handling the nodes with correct cast.
e076ba
  use this patch now instead of ruby-1.6.8-fix-x86_64.patch.
e076ba
e076ba
* Fri Jul 04 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-8
e076ba
- rebuilt
e076ba
e076ba
* Fri Jul 04 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-7
e076ba
- fix the gcc warnings. (#82192)
e076ba
- ruby-1.6.8-fix-x86_64.patch: correct a patch.
e076ba
  NOTE: DON'T USE THIS PATCH FOR BIG ENDIAN ARCHITECTURE.
e076ba
- ruby-1.6.7-long2int.patch: removed.
e076ba
e076ba
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
e076ba
- rebuilt
e076ba
e076ba
* Fri Feb  7 2003 Jens Petersen <petersen@redhat.com> - 1.6.8-5
e076ba
- rebuild against ucs4 tcltk
e076ba
e076ba
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
e076ba
- rebuilt
e076ba
e076ba
* Wed Jan 22 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-3
e076ba
- ruby-1.6.8-multilib.patch: applied to fix the search path issue on x86_64
e076ba
e076ba
* Tue Jan 21 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-2
e076ba
- ruby-1.6.8-require.patch: applied to fix the search bug in require.
e076ba
- don't apply long2int patch to s390 and s390x. it doesn't work.
e076ba
e076ba
* Wed Jan 15 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-1
e076ba
- New upstream release.
e076ba
- removed some patches. it's no longer needed.
e076ba
  - ruby-1.6.7-100.patch
e076ba
  - ruby-1.6.7-101.patch
e076ba
  - ruby-1.6.7-102.patch
e076ba
  - ruby-1.6.7-103.patch
e076ba
  - 801_extmk.rb-shellwords.patch
e076ba
  - 801_mkmf.rb-shellwords.patch
e076ba
  - 804_parse.y-new-bison.patch
e076ba
  - 805_uri-bugfix.patch
e076ba
  - ruby-1.6.6-900_XXX_strtod.patch
e076ba
  - ruby-1.6.7-sux0rs.patch
e076ba
  - ruby-1.6.7-libobj.patch
e076ba
e076ba
* Wed Jan 15 2003 Jens Petersen <petersen@redhat.com> 1.6.7-14
e076ba
- rebuild to update tcltk deps
e076ba
e076ba
* Mon Dec 16 2002 Elliot Lee <sopwith@redhat.com> 1.6.7-13
e076ba
- Remove ExcludeArch: x86_64
e076ba
- Fix x86_64 ruby with long2int.patch (ruby was assuming that sizeof(long)
e076ba
  == sizeof(int). The patch does not fix the source of the problem, just
e076ba
  makes it a non-issue.)
e076ba
- _smp_mflags
e076ba
e076ba
* Tue Dec 10 2002 Tim Powers <timp@redhat.com> 1.6.7-12
e076ba
- rebuild to fix broken tcltk deps
e076ba
e076ba
* Tue Oct 22 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-11
e076ba
- use %%configure macro instead of configure script.
e076ba
- use the latest config.{sub,guess}.
e076ba
- get archname from rbconfig.rb for %%dir
e076ba
- applied some patches from Debian:
e076ba
  - 801_extmk.rb-shellwords.patch: use Shellwords
e076ba
  - 801_mkmf.rb-shellwords.patch: mkmf.rb creates bad Makefile. the Makefile
e076ba
    links libruby.a to the target.
e076ba
  - 803_sample-fix-shbang.patch: all sample codes should be
e076ba
    s|/usr/local/bin|/usr/bin|g
e076ba
  - 804_parse.y-new-bison.patch: fix syntax warning.
e076ba
  - 805_uri-bugfix.patch: uri.rb could not handle correctly broken mailto-uri.
e076ba
- add ExcludeArch x86_64 temporarily to fix Bug#74581. Right now ruby can't be
e076ba
  built on x86_64.
e076ba
e076ba
* Tue Aug 27 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-10
e076ba
- moved sitedir to /usr/lib/ruby/site_ruby again according as our perl and
e076ba
  python.
e076ba
- ruby-1.6.7-resolv1.patch, ruby-1.6.7-resolv2.patch: applied to fix 'Too many
e076ba
  open files - "/etc/resolv.conf"' issue. (Bug#64830)
e076ba
e076ba
* Thu Jul 18 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-9
e076ba
- add the owned directory.
e076ba
e076ba
* Fri Jul 12 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-8
e076ba
- fix typo.
e076ba
e076ba
* Thu Jul 04 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-7
e076ba
- removed the ruby-mode-xemacs because it's merged to the xemacs sumo.
e076ba
e076ba
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
e076ba
- automated rebuild
e076ba
e076ba
* Wed Jun 19 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-5
e076ba
- fix the stripped binary.
e076ba
- use the appropriate macros.
e076ba
e076ba
* Sun May 26 2002 Tim Powers <timp@redhat.com>
e076ba
- automated rebuild
e076ba
e076ba
* Thu May 23 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-3
e076ba
- ruby-1.6.7-libobj.patch: applied to fix autoconf2.53 error.
e076ba
e076ba
* Mon Mar 18 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-2
e076ba
- ruby-man-1.4.6-jp.tar.bz2: removed.
e076ba
- ruby-refm-rdp-1.4.7-ja-html.tar.bz2: uses it instead of.
e076ba
- ruby-1.6.7-500-marshal-proc.patch, ruby-1.6.7-501-class-var.patch:
e076ba
  removed.
e076ba
- ruby-1.6.7-100.patch: applied a bug fix patch.
e076ba
  (ruby-dev#16274: patch for 'wm state')
e076ba
  (PR#206ja: SEGV handle EXIT)
e076ba
- ruby-1.6.7-101.patch: applied a bug fix patch.
e076ba
  (ruby-list#34313: singleton should not be Marshal.dump'ed)
e076ba
  (ruby-dev#16411: block local var)
e076ba
- ruby-1.6.7-102.patch: applied a bug fix patch.
e076ba
  (handling multibyte chars is partially broken)
e076ba
- ruby-1.6.7-103.patch: applied a bug fix patch.
e076ba
  (ruby-dev#16462: preserve reference for GC, but link should be cut)
e076ba
e076ba
* Fri Mar  8 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-1
e076ba
- New upstream release.
e076ba
- ruby-1.6.6-100.patch, ruby-1.6.6-501-ruby-mode.patch:
e076ba
  removed. these patches no longer should be needed.
e076ba
- ruby-1.6.7-500-marshal-proc.patch: applied a fix patch.
e076ba
  (ruby-dev#16178: Marshal::dump should call Proc#call.)
e076ba
- ruby-1.6.7-501-class-var.patch: applied a fix patch.
e076ba
  (ruby-talk#35157: class vars broken in 1.6.7)
e076ba
e076ba
* Wed Feb 27 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-5
e076ba
- Disable alpha because nothing is xemacs for alpha now.
e076ba
e076ba
* Tue Feb  5 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-3
e076ba
- Fixed the duplicate files.
e076ba
e076ba
* Tue Feb  5 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-2
e076ba
- Fixed the missing %%defattr
e076ba
e076ba
* Fri Feb  1 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-1
e076ba
- New upstream release.
e076ba
- Applied bug fix patches:
e076ba
  - ruby-1.6.6-501-ruby-mode.patch: ruby-talk#30479: disables font-lock
e076ba
    coloring.
e076ba
  - ruby-1.6.6-100.patch: ruby-talk#30203: Ruby 1.6.6 bug and fix
e076ba
                          ruby-list#33047: regex bug
e076ba
                          PR#230: problem with -d in 1.6.6
e076ba
- Added ruby-mode and ruby-mode-xemacs packages.
e076ba
- Ruby works fine for ia64. so re-enable to build with ia64.
e076ba
  (probably it should be worked for alpha)
e076ba
e076ba
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
e076ba
- automated rebuild
e076ba
e076ba
* Thu Jul 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.6.4-2
e076ba
- Remove Japanese description and summaries; they belong in specspo and
e076ba
  break rpm
e076ba
- Clean up specfile
e076ba
- Mark language specific files (README.jp) as such
e076ba
- bzip2 sources
e076ba
- rename the libruby package to ruby-libs for consistency
e076ba
- Exclude ia64 (doesn't build - the code doesn't seem to be 64-bit clean
e076ba
  [has been excluded on alpha forever])
e076ba
e076ba
* Tue Jul 17 2001 Akira TAGOH <tagoh@redhat.com> 1.6.4-1
e076ba
- rebuild for Red Hat 7.2
e076ba
e076ba
* Mon Jun 04 2001 akira yamada <akira@vinelinux.org>
e076ba
- upgrade to nwe upstream version 1.6.4.
e076ba
e076ba
* Mon Apr 02 2001 akira yamada <akira@vinelinux.org>
e076ba
- applied patch:
e076ba
  - fixed method cache bug. etc. (Patch103, Patch104)
e076ba
e076ba
* Tue Mar 27 2001 akira yamada <akira@vinelinux.org>
e076ba
- applied patch:
e076ba
  - fixed marshal for bignum bug.
e076ba
  - fixed scope of constant variables bug.
e076ba
e076ba
* Tue Mar 20 2001 akira yamada <akira@vinelinux.org>
e076ba
- upgraded to new upstream version 1.6.3.
e076ba
e076ba
* Fri Feb 09 2001 akira yamada <akira@vinelinux.org>
e076ba
- fixed bad group for libruby.
e076ba
- Applied patch: upgraded to cvs version (2001-02-08):
e076ba
  fixed minor bugs.
e076ba
e076ba
* Thu Jan 18 2001 akira yamada <akira@vinelinux.org>
e076ba
- Applied patch: upgraded to cvs version (2001-01-15):
e076ba
  fixed minor bugs(e.g. ruby makes extention librares too large...).
e076ba
e076ba
* Wed Jan 10 2001 akira yamada <akira@vinelinux.org>
e076ba
- Applied patch: upgraded to cvs version (2001-01-09):
e076ba
  fixed minor bugs.
e076ba
e076ba
* Sat Dec 30 2000 akira yamada <akira@vinelinux.org>
e076ba
- Applied bug fix patch.
e076ba
e076ba
* Mon Dec 25 2000 akira yamada <akira@vinelinux.org>
e076ba
- Updated to new upstream version 1.6.2.
e076ba
e076ba
* Fri Dec 22 2000 akira yamada <akira@vinelinux.org>
e076ba
- Removed ruby_cvs.2000122019.patch, added ruby_cvs.2000122215.patch
e076ba
  (upgraded ruby to latest cvs version, 1.6.2-preview4).
e076ba
e076ba
* Wed Dec 20 2000 akira yamada <akira@vinelinux.org>
e076ba
- Removed ruby_cvs.2000121413.patch, added ruby_cvs.2000122019.patch
e076ba
  (upgraded ruby to latest cvs version).
e076ba
- new package: libruby
e076ba
e076ba
* Thu Dec 14 2000 akira yamada <akira@vinelinux.org>
e076ba
- Removed ruby_cvs.2000101901.patch, added ruby_cvs.2000121413.patch
e076ba
  (upgraded ruby to latest cvs version).
e076ba
- Removed ruby-dev.11262.patch, ruby-dev.11265.patch,
e076ba
  and ruby-dev.11268.patch (included into above patch).
e076ba
e076ba
* Sun Nov 12 2000 MACHINO, Satoshi <machino@vinelinux.org> 1.6.1-0vl9
e076ba
- build on gcc-2.95.3
e076ba
e076ba
* Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
e076ba
- Added ruby-dev.11268.patch.
e076ba
e076ba
* Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
e076ba
- Removed ruby_cvs.2000101117.patch and added ruby_cvs.2000101901.patch
e076ba
  (upgraded ruby to latest cvs version).
e076ba
- Added ruby-dev.11262.patch.
e076ba
- Added ruby-dev.11265.patch.
e076ba
e076ba
* Wed Oct 11 2000 akira yamada <akira@vinelinux.org>
e076ba
- Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000101117.patch
e076ba
  (upgraded ruby to latest cvs version).
e076ba
e076ba
* Mon Oct 09 2000 akira yamada <akira@vinelinux.org>
e076ba
- Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000100313.patch
e076ba
  (upgraded ruby to latest cvs version).
e076ba
e076ba
* Tue Oct 03 2000 akira yamada <akira@vinelinux.org>
e076ba
- Removed ruby_cvs.2000100218.patch and added ruby_cvs.2000100313.patch
e076ba
  (upgraded ruby to latest cvs version).
e076ba
e076ba
* Mon Oct 02 2000 akira yamada <akira@vinelinux.org>
e076ba
- Removed ruby_cvs.2000092718.patch and added ruby_cvs.2000100218.patch
e076ba
  (upgraded ruby to latest cvs version).
e076ba
e076ba
* Wed Sep 27 2000 akira yamada <akira@vinelinux.org>
e076ba
- Updated to upstream version 1.6.1.
e076ba
- Removed ruby_cvs.2000082901.patch and added ruby_cvs.2000092718.patch
e076ba
  (upgraded ruby to latest cvs version).
e076ba
e076ba
* Tue Aug 29 2000 akira yamada <akira@redhat.com>
e076ba
- Updated to version 1.4.6.
e076ba
- removed ruby-dev.10123.patch(included into ruby-1.4.6).
e076ba
- Added ruby_cvs.2000082901.patch(upgraded ruby to latest cvs version).
e076ba
e076ba
* Tue Jun 27 2000 akira yamada <akira@redhat.com>
e076ba
- Updated manuals to version 1.4.5.
e076ba
e076ba
* Sun Jun 25 2000 akira yamada <akira@redhat.com>
e076ba
- Added ruby-dev.10123.patch.
e076ba
e076ba
* Sat Jun 24 2000 akira yamada <akira@redhat.com>
e076ba
- Updated to version 1.4.5.
e076ba
- Removed ruby_cvs.2000062401.patch(included into ruby-1.4.5).
e076ba
e076ba
* Thu Jun 22 2000 akira yamada <akira@redhat.com>
e076ba
- Updated to version 1.4.4(06/22/2000 CVS).
e076ba
- Removed ruby-dev.10054.patch(included into ruby_cvs.patch).
e076ba
e076ba
* Thu Jun 22 2000 akira yamada <akira@redhat.com>
e076ba
- Renamed to ruby_cvs20000620.patch from ruby_cvs.patch.
e076ba
e076ba
* Tue Jun 20 2000 akira yamada <akira@redhat.com>
e076ba
- Updated to version 1.4.4(06/20/2000 CVS).
e076ba
- Removed ruby-list.23190.patch(included into ruby_cvs.patch).
e076ba
- Added ruby-dev.10054.patch.
e076ba
e076ba
* Thu Jun 15 2000 akira yamada <akira@redhat.com>
e076ba
- Updated to version 1.4.4(06/12/2000 CVS).
e076ba
- Added manuals and FAQs.
e076ba
- Split into ruby, ruby-devel, ruby-tcltk, ruby-docs, irb.
e076ba
e076ba
* Tue Jun 13 2000 Mitsuo Hamada <mhamada@redhat.com>
e076ba
- Updated to version 1.4.4
e076ba
e076ba
* Wed Dec 08 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
e076ba
- Updated to version 1.4.3
e076ba
e076ba
* Mon Sep 20 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
e076ba
- Updated to version 1.4.2 (Sep 18)
e076ba
e076ba
* Fri Sep 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
e076ba
- Updated to version 1.4.2
e076ba
e076ba
* Tue Aug 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
e076ba
- Updated to version 1.4.0
e076ba
e076ba
* Fri Jul 23 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
e076ba
- 2nd release
e076ba
- Updated to version 1.2.6(15 Jul 1999)
e076ba
- striped %%{prefix}/bin/ruby
e076ba
e076ba
* Mon Jun 28 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
e076ba
- Updated to version 1.2.6(21 Jun 1999)
e076ba
e076ba
* Wed Apr 14 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
e076ba
- Updated to version 1.2.5
e076ba
e076ba
* Fri Apr 09 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
e076ba
- Updated to version 1.2.4
e076ba
e076ba
* Fri Dec 25 1998 Toru Hoshina <hoshina@best.com>
e076ba
- Version up to 1.2 stable.
e076ba
e076ba
* Fri Nov 27 1998 Toru Hoshina <hoshina@best.com>
e076ba
- Version up to 1.1c9.
e076ba
e076ba
* Thu Nov 19 1998 Toru Hoshina <hoshina@best.com>
e076ba
- Version up to 1.1c8, however it appear short life :-P
e076ba
e076ba
* Fri Nov 13 1998 Toru Hoshina <hoshina@best.com>
e076ba
- Version up.
e076ba
e076ba
* Tue Sep 22 1998 Toru Hoshina <hoshina@best.com>
e076ba
- To make a libruby.so.
e076ba
e076ba
* Mon Sep 21 1998 Toru Hoshina <hoshina@best.com>
e076ba
- Modified SPEC in order to install libruby.a so that it should be used by
e076ba
  another ruby entention.
e076ba
- 2nd release.
e076ba
e076ba
* Mon Mar 9 1998 Shoichi OZAWA <shoch@jsdi.or.jp>
e076ba
- Added a powerPC arch part. Thanks, MURATA Nobuhiro <nob@makioka.y-min.or.jp>