121925
%global major_version 2
121925
%global minor_version 0
121925
%global teeny_version 0
121925
%global patch_level 648
121925
121925
%global major_minor_version %{major_version}.%{minor_version}
121925
121925
%global ruby_version %{major_minor_version}.%{teeny_version}
121925
%global ruby_version_patch_level %{major_minor_version}.%{teeny_version}.%{patch_level}
121925
%global ruby_release %{ruby_version}
121925
121925
# Specify the named version. It has precedense to revision.
121925
#%%global milestone preview2
121925
121925
# Keep the revision enabled for pre-releases from SVN.
121925
#%%global revision 39387
121925
121925
%global ruby_archive %{name}-%{ruby_version}
121925
121925
# If revision and milestone are removed/commented out, the official release build is expected.
121925
%if 0%{?milestone:1}%{?revision:1} != 0
121925
%global development_release %{?milestone}%{?!milestone:%{?revision:r%{revision}}}
121925
%global ruby_archive %{ruby_archive}-%{?milestone}%{?!milestone:%{?revision:r%{revision}}}
121925
%else
121925
%global ruby_archive %{ruby_archive}-p%{patch_level}
121925
%endif
121925
121925
121925
%global release 36
121925
%{!?release_string:%global release_string %{?development_release:0.}%{release}%{?development_release:.%{development_release}}%{?dist}}
121925
121925
%global rubygems_version 2.0.14.1
121925
121925
# The RubyGems library has to stay out of Ruby directory three, since the
121925
# RubyGems should be share by all Ruby implementations.
121925
%global rubygems_dir %{_datadir}/rubygems
121925
121925
%global rake_version 0.9.6
121925
# TODO: The IRB has strange versioning. Keep the Ruby's versioning ATM.
121925
# http://redmine.ruby-lang.org/issues/5313
121925
%global irb_version %{ruby_version_patch_level}
121925
%global rdoc_version 4.0.0
121925
%global bigdecimal_version 1.2.0
121925
%global io_console_version 0.4.2
121925
%global json_version 1.7.7
121925
%global minitest_version 4.3.2
121925
%global psych_version 2.0.0
121925
121925
# Might not be needed in the future, if we are lucky enough.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=888262
121925
%global tapset_root %{_datadir}/systemtap
121925
%global tapset_dir %{tapset_root}/tapset
121925
%global tapset_libdir %(echo %{_libdir} | sed 's/64//')*
121925
121925
%global _normalized_cpu %(echo %{_target_cpu} | sed 's/^ppc/powerpc/;s/i.86/i386/;s/sparcv./sparc/')
121925
121925
%if 0%{?fedora} >= 19
121925
%global with_rubypick 1
121925
%endif
121925
121925
Summary: An interpreter of object-oriented scripting language
121925
Name: ruby
121925
Version: %{ruby_version_patch_level}
121925
Release: %{release_string}
121925
Group: Development/Languages
121925
# Public Domain for example for: include/ruby/st.h, strftime.c, ...
121925
License: (Ruby or BSD) and Public Domain
121925
URL: http://ruby-lang.org/
121925
Source0: ftp://ftp.ruby-lang.org/pub/%{name}/%{major_minor_version}/%{ruby_archive}.tar.bz2
121925
Source1: operating_system.rb
121925
# TODO: Try to push SystemTap support upstream.
121925
Source2: libruby.stp
121925
Source3: ruby-exercise.stp
121925
Source4: macros.ruby
121925
Source5: macros.rubygems
121925
Source6: abrt_prelude.rb
121925
# This wrapper fixes https://bugzilla.redhat.com/show_bug.cgi?id=977941
121925
# Hopefully, it will get removed soon:
121925
# https://fedorahosted.org/fpc/ticket/312
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=977941
121925
Source7: config.h
121925
# ABRT hoook test case.
121925
Source8: test_abrt.rb
121925
# SystemTap tests.
121925
Source9: test_systemtap.rb
121925
121925
121925
# Include the constants defined in macros files.
121925
# http://rpm.org/ticket/866
121925
%{lua:
121925
121925
function source_macros(file)
121925
  local macro = nil
121925
121925
  for line in io.lines(file) do
121925
    if not macro and line:match("^%%") then
121925
      macro = line:match("^%%(.*)$")
121925
      line = nil
121925
    end
121925
121925
    if macro then
121925
      if line and macro:match("^.-%s*\\%s*$") then
121925
        macro = macro .. '\n' .. line
121925
      end
121925
121925
      if not macro:match("^.-%s*\\%s*$") then
121925
        rpm.define(macro)
121925
        macro = nil
121925
      end
121925
    end
121925
  end
121925
end
121925
121925
source_macros(rpm.expand("%{SOURCE4}"))
121925
source_macros(rpm.expand("%{SOURCE5}"))
121925
121925
}
121925
121925
# http://bugs.ruby-lang.org/issues/7807
121925
Patch0: ruby-2.0.0-Prevent-duplicated-paths-when-empty-version-string-i.patch
121925
# Force multiarch directories for i.86 to be always named i386. This solves
121925
# some differencies in build between Fedora and RHEL.
121925
Patch3: ruby-1.9.3-always-use-i386.patch
121925
# Fixes random WEBRick test failures.
121925
# https://bugs.ruby-lang.org/issues/6573.
121925
Patch5: ruby-1.9.3.p195-fix-webrick-tests.patch
121925
# Allows to install RubyGems into custom directory, outside of Ruby's tree.
121925
# http://redmine.ruby-lang.org/issues/5617
121925
Patch8: ruby-1.9.3-custom-rubygems-location.patch
121925
# Add support for installing binary extensions according to FHS.
121925
# https://github.com/rubygems/rubygems/issues/210
121925
# Note that 8th patch might be resolved by
121925
# https://bugs.ruby-lang.org/issues/7897
121925
Patch9: rubygems-2.0.0-binary-extensions.patch
121925
# Make mkmf verbose by default
121925
Patch12: ruby-1.9.3-mkmf-verbose.patch
121925
# This slightly changes behavior of "gem install --install-dir" behavior.
121925
# Without this patch, Specifications.dirs is modified and gems installed on
121925
# the system cannot be required anymore. This causes later issues when RDoc
121925
# documentation should be generated, since json gem is sudenly not accessible.
121925
# https://github.com/rubygems/rubygems/pull/452
121925
Patch13: rubygems-2.0.0-Do-not-modify-global-Specification.dirs-during-insta.patch
121925
# This prevents issues, when ruby configuration specifies --with-ruby-version=''.
121925
# https://github.com/rubygems/rubygems/pull/455
121925
Patch14: rubygems-2.0.0-Fixes-for-empty-ruby-version.patch
121925
# Adds aarch64 support.
121925
# http://bugs.ruby-lang.org/issues/8331
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=926463
121925
# Please note that this is the BZ patch, it might be good idea to update it
121925
# with its upstream version when available.
121925
Patch16: ruby-2.0.0-p195-aarch64.patch
121925
# Adds support for '--with-prelude' configuration option. This allows to built
121925
# in support for ABRT.
121925
# http://bugs.ruby-lang.org/issues/8566
121925
Patch17: ruby-2.1.0-Allow-to-specify-additional-preludes-by-configuratio.patch
121925
# CVE-2014-4975: Fix off-by-one stack-based buffer overflow in the encodes() function
121925
# https://bugs.ruby-lang.org/issues/10019
121925
Patch24: ruby-2.1.0-CVE-2014-4975-fix-buffer-overru-by-tail_lf.patch
121925
# Remove tests depending on europe/moscow to avoid failures due to tzdata change
121925
# https://github.com/eggert/tz/commit/8ee11a301cf173afb0c76e0315b9f9ec8ebb9d95
121925
Patch26: ruby-2.3.1-remove-tests-depending-on-europe-moscow.patch
121925
# Raise an Error on a unterminated heredoc
121925
# https://github.com/rdoc/rdoc/commit/f4f5b94285aa9b20cacf78bda61450e17be63a22
121925
Patch27: rubygem-rdoc-4.0.1-unterminated-heredoc.patch
121925
# Fix tk extconf not to include -rpath
121925
# - p24 is upstream revision
121925
# - p25 is my fix for the revision (otherwise tcl/tk won't build)
121925
# https://bugs.ruby-lang.org/issues/9386
121925
Patch28: ruby-trunk-tk-rpath-fix.patch
121925
Patch29: ruby-trunk-tk-extconf-fix.patch
121925
# Fix test_execute_default_gem(TestGemCommandsContentsCommand) test error.
121925
# https://github.com/rubygems/rubygems/commit/6b8681421b516be1244e17618507811923b1bb3b
121925
Patch30: rubygems-2.1.0-Fix-test-failure-when-ruby-is-not-yet-installed.patch
121925
# Fix "dh key too small" error of OpenSSL 1.0.2c+.
121925
# https://github.com/rubygems/rubygems/issues/1289
121925
# https://github.com/ruby/ruby/commit/6398515adfc86813686605019a3e22d49cd95517
121925
Patch31: ruby-2.3.0-test_gem_remote_fetcher.rb-get-rid-of-errors.patch
121925
# Fix significant hash table performance slowdown on ppc64le
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1163032
121925
# https://github.com/ruby/ruby/commit/59ed302965c5e38526ad33b13d8361859c5e7726
121925
Patch32: ruby-2.1.0-fix-hash-table-performance-slowdown-on-ppc64le.patch
121925
# Support in no_proxy for domain names with whitespaces and leading dots
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1300433
121925
# https://github.com/ruby/ruby/commit/423d042371d0402071c309dc403ea2701600a98b
121925
Patch33: ruby-2.4.0-no_proxy-with-whitespaces-and-leading-dots.patch
121925
# Fix missing declaration of 'rb_frame_last_func'
121925
# https://github.com/ruby/ruby/commit/428791543be9e13af9426970f5796f3157dd30a0
121925
Patch34: ruby-2.2.0-fix-missing-declaration-of-rb_frame_last_func.patch
121925
# Fix hostname size limit
121925
# https://bugs.ruby-lang.org/issues/11877
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1343945
121925
Patch35: ruby-2.1.0-fix-hostname-size-limit.patch
121925
# Fix test_npn_protocol_selection_ary and test_npn_protocol_selection_enum
121925
# failures with newest openssl.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1416123
121925
# https://bugs.ruby-lang.org/issues/11369
121925
Patch36: ruby-2.2.4-check-length-of-selected-NPN-protocol.patch
121925
# https://bugs.ruby-lang.org/issues/11810
121925
Patch37: ruby-2.2.6-fix-parsing-protocol-list.patch
121925
# CVE-2017-0903: Fix unsafe object deserialization through YAML formatted gem
121925
# specifications.
121925
# https://bugs.ruby-lang.org/issues/14003
121925
Patch38: ruby-2.4.3-CVE-2017-0903-Fix-unsafe-object-deserialization-vulnerability.patch
121925
# CVE-2017-0899 - Fix an ANSI escape sequence vulnerability.
121925
# CVE-2017-0900 - Fix a DOS vulernerability in the query command.
121925
# CVE-2017-0901 - Fix a vulnerability in the gem installer that allowed
121925
#   a malicious gem to overwrite arbitrary files.
121925
# CVE-2017-0902 - Fix a DNS request hijacking vulnerability.
121925
# https://bugs.ruby-lang.org/issues/13842
121925
Patch39: ruby-2.2.8-lib-rubygems-fix-several-vulnerabilities-in-RubyGems.patch
121925
# CVE-2017-0898 - Buffer underrun vulnerability in Kernel.sprintf
121925
# https://bugs.ruby-lang.org/issues/13499
121925
Patch40: ruby-2.2.8-Buffer-underrun-vulnerability-in-Kernel.sprintf.patch
121925
# CVE-2017-10784 - Escape sequence injection vulnerability in the Basic
121925
#   authentication of WEBrick
121925
# https://github.com/ruby/ruby/commit/8a81d04d2588d9c7a898473b431a0dabcab39fbd
121925
Patch41: ruby-2.2.8-sanitize-any-type-of-logs.patch
121925
# CVE-2017-14064 - Arbitrary heap exposure during a JSON.generate call
121925
# https://bugs.ruby-lang.org/issues/13853
121925
Patch42: ruby-2.2.8-Fix-arbitrary-heap-exposure-during-a-JSON.generate-call.patch
121925
# CVE-2017-17405 - Command injection vulnerability in Net::FTP
121925
# https://bugs.ruby-lang.org/issues/14185
121925
Patch43: ruby-2.2.9-Fix-a-command-injection-vulnerability-in-Net-FTP.patch
121925
# CVE-2017-14033 - Buffer underrun in OpenSSL ASN1 decode.
121925
# https://github.com/ruby/ruby/commit/5450329ad1778d72f117b68e5edb97ae1bf4d438
121925
Patch44: ruby-2.2.8-asn1-fix-out-of-bounds-read-in-decoding-constructed-objects.patch
121925
# CVE-2017-17790 - Command injection in lib/resolv.rb:lazy_initialize() allows
121925
# arbitrary code execution
121925
# https://bugs.ruby-lang.org/issues/14205
121925
Patch45: ruby-2.5.0-Fixed-command-Injection.patch
121925
# Patch for CVE-2017-0903 depends on Psych.safe_load method, which should be
121925
# available in Psych 2.0.0, which is being part of Ruby 2.0.0, but that is
121925
# apparently not true :/
121925
# https://github.com/ruby/ruby/commit/476a62fbbec0c8b7dafb74827447cfb4ebd7dd06
121925
Patch46: ruby-2.1.0-there-should-be-only-one-exception.patch
121925
# https://github.com/ruby/ruby/commit/7ceafcbdf5bd2155704839f97b869e689f66feeb
121925
Patch47: ruby-2.1.0-Adding-Psych.safe_load.patch
121925
# Recent tzdata change breaks Ruby test suite.
121925
# https://bugs.ruby-lang.org/issues/14438
121925
Patch48: ruby-2.5.0-Disable-Tokyo-TZ-tests.patch
121925
# TestTimeTZ test failures Kiritimati and Lisbon
121925
# https://bugs.ruby-lang.org/issues/14655
121925
Patch49: ruby-2.5.1-TestTimeTZ-test-failures-Kiritimati-and-Lisbon.patch
121925
# CVE-2018-16395: Fix OpenSSL::X509::Name equality check does not work.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1643086
121925
# https://github.com/ruby/openssl/commit/f653cfa43f0f20e8c440122ea982382b6228e7f5
121925
# https://github.com/ruby/ruby/commit/93bc10272734cbbb9197470ca629cc4ea019f6f0
121925
Patch50: ruby-2.5.3-fix-openssl-x509-name.patch
121925
# CVE-2018-8778: Fix buffer under-read in String#unpack
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1561953
121925
# https://github.com/ruby/ruby/commit/b9121fe7602a560c4fee9ab353a7f57a3988ec73
121925
Patch51: ruby-2.3.8-pack.c-fix-underflow.patch
121925
# CVE-2017-17742: Fix HTTP response splitting in WEBrick
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1561952
121925
# https://github.com/ruby/ruby/commit/bbda1a027475bf7ce5e1a9583a7b55d0be71c8fe
121925
Patch52: ruby-2.2.10-webrick-prevent-response.patch
121925
# CVE-2018-8777: Fix DoS by large request in WEBrick
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1561950
121925
# https://github.com/ruby/ruby/commit/a45622669bb1ff18d3ee9b411128acd839c4263e
121925
Patch53: ruby-2-2.10-webrick-avoid-large-request.patch
121925
# Fix tests for Ruby 2.0 compatibility.
121925
Patch54: ruby-2-2.10-webrick-avoid-large-request-fix-tests.patch
121925
# CVE-2018-8780: Fix directory traversal by poisoned NULL byte in Dir.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1561949
121925
# https://github.com/ruby/ruby/commit/143eb22f1877815dd802f7928959c5f93d4c7bb3
121925
Patch55: ruby-2.2.10-fix-dir.c-check-nul-bytes.patch
121925
# CVE-2018-6914: Fix file and directory creation with directory traversal.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1561947
121925
# https://github.com/ruby/ruby/commit/e9ddf2ba41a0bffe1047e33576affd48808c5d0b
121925
Patch56: ruby-2.2.10-ignore-file-separator-from-tmp-file-dir-name.patch
121925
# Fix tests for Ruby 2.0 compatibility.
121925
Patch57: ruby-2.2.10-ignore-file-separator-from-tmp-file-dir-name-tests.patch
121925
# CVE-2018-8779: Fix socket creation by poisoned NULL byte.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1561948
121925
# https://github.com/ruby/ruby/commit/47165eed264d357e78e27371cfef20d5c2bde5d9
121925
Patch58: ruby-2.2.10-fix-socket-creation-by_null-byte.patch
121925
# CVE-2018-16396: Fix flags not propagated in Array#pack and String#unpack.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1643089
121925
# https://github.com/ruby/ruby/commit/b18c513e24dad5f464701a4ad49ac699f435bbbe
121925
Patch59: ruby-2.3.8-fix-flags-not-propagated-in-array-pack-and-string-unpack.patch
121925
# CVE-2018-1000075: Strictly interpret octal fields in tar headers.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1547420
121925
# CVE-2018-1000076: Raise a security error for duplicate files in a package.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1547421
121925
# CVE-2018-1000077: Enforce URL validation on spec homepage attribute.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1547422
121925
# CVE-2018-1000078: Mitigate XSS vulnerability in homepage attribute.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1547425
121925
# CVE-2018-1000079: Prevent Path Traversal issue during gem installation.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1547426
121925
# https://github.com/ruby/ruby/commit/664b94fd2b4b19edd7d75c6bbcd3154905b2624e
121925
Patch60: ruby-2.2.10-rubygems-2.7.6-multiple-vulnerabilities.patch
121925
# Fix test modified by ruby-2.2.10-rubygems-2.7.6-multiple-vulnerabilities.patch
121925
# Change testing digest class from Digest to OpenSSL::Digest::SHA512,
121925
# because when for current logic, the digest class does not have name method,
121925
# lib/rubygems/package/tar_writer.rb#add_file_digest raises an error.
121925
# Upstream changed the logic on Ruby 2.1.0 by
121925
# https://github.com/ruby/ruby/commit/269503b544247b5b3e30dbe60a0bab4f2ca00e4e
121925
Patch61: ruby-2.2.10-rubygems-2.7.6-multiple-vulnerabilities-tests.patch
121925
# CVE-2018-1000074: Fix Unsafe Object Deserialization Vulnerability in gem owner.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1547419
121925
# https://github.com/ruby/ruby/commit/08fb5c2153deaee53e481ebe3602fe1d59e256c7
121925
# https://github.com/rubygems/rubygems/commit/254e3d0ee873c008c0b74e8b8abcbdab4caa0a6d
121925
Patch62: ruby-2.3.8-rubygems-2.7.6-fix-unsafe-object-deserialization.patch
121925
# Refresh expired certificates.
121925
# https://bugs.ruby-lang.org/issues/15502
121925
Patch63: ruby-2.6.0-Try-to-update-cert.patch
121925
# CVE-2018-1000073: Path traversal when writing to a symlinked basedir outside
121925
# of the root
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1547418
121925
# https://github.com/rubygems/rubygems/commit/1b931fc03b819b9a0214be3eaca844ef534175e2
121925
Patch64: ruby-2.3.8-rubygems-2.7.6-install-location-deducing-symlinked-base-dirs.patch
121925
# https://github.com/rubygems/rubygems/commit/666ef793cad42eed96f7aee1cdf77865db921099
121925
Patch65: ruby-2.3.8-rubygems-2.7.6-a-safe-mkdir-to-verify-inside-destination-dir.patch
121925
# Introduce `Gem::UserInteraction#verbose` method as precondition
121925
# to fix CVE-2019-8321.
121925
# https://github.com/rubygems/rubygems/commit/75821c744f0bfda185eac35b91810254bf9e2367
121925
Patch66: rubygems-2.3.0-refactor-checking-really_verbose.patch
121925
# CVE-2019-8321: Escape sequence injection vulnerability in verbose
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1692514
121925
# CVE-2019-8322: Escape sequence injection vulnerability in gem owner
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1692516
121925
# CVE-2019-8323: Escape sequence injection vulnerability in API response handling
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1692519
121925
# CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1692520
121925
# CVE-2019-8325: Escape sequence injection vulnerability in errors
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1692522
121925
# https://github.com/ruby/ruby/commit/f86e5daee790ee509cb17f4f51f95cc76ca89a4e
121925
Patch67: ruby-2.4.6-Applied-security-patches-for-RubyGems.patch
121925
121925
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
121925
Requires: ruby(rubygems) >= %{rubygems_version}
121925
# Make the bigdecimal gem a runtime dependency of Ruby to avoid problems
121925
# with user-installed gems, that don't require it in gemspec/Gemfile
121925
# See https://bugzilla.redhat.com/show_bug.cgi?id=829209
121925
# and http://bugs.ruby-lang.org/issues/6123
121925
Requires: rubygem(bigdecimal) >= %{bigdecimal_version}
121925
121925
BuildRequires: autoconf
121925
BuildRequires: gdbm-devel
121925
BuildRequires: ncurses-devel
121925
BuildRequires: libdb-devel
121925
BuildRequires: libffi-devel
121925
BuildRequires: openssl-devel
121925
BuildRequires: libyaml-devel
121925
BuildRequires: readline-devel
121925
BuildRequires: tk-devel
121925
# Needed to pass test_set_program_name(TestRubyOptions)
121925
BuildRequires: procps
121925
BuildRequires: %{_bindir}/dtrace
121925
# Unbundle cert.pem
121925
BuildRequires: ca-certificates
121925
121925
# This package provides %%{_bindir}/ruby-mri therefore it is marked by this
121925
# virtual provide. It can be installed as dependency of rubypick.
121925
Provides: ruby(runtime_executable) = %{ruby_release}
121925
121925
%global __provides_exclude_from ^(%{ruby_libarchdir}|%{gem_archdir})/.*\\.so$
121925
121925
%description
121925
Ruby is the interpreted scripting language for quick and easy
121925
object-oriented programming.  It has many features to process text
121925
files and to do system management tasks (as in Perl).  It is simple,
121925
straight-forward, and extensible.
121925
121925
121925
%package devel
121925
Summary:    A Ruby development environment
121925
Group:      Development/Languages
121925
Requires:   %{name}%{?_isa} = %{version}-%{release}
121925
121925
%description devel
121925
Header files and libraries for building an extension library for the
121925
Ruby or an application embedding Ruby.
121925
121925
%package libs
121925
Summary:    Libraries necessary to run Ruby
121925
Group:      Development/Libraries
121925
License:    Ruby or BSD
121925
Provides:   ruby(release) = %{ruby_release}
121925
121925
%description libs
121925
This package includes the libruby, necessary to run Ruby.
121925
121925
# TODO: Rename or not rename to ruby-rubygems?
121925
%package -n rubygems
121925
Summary:    The Ruby standard for packaging ruby libraries
121925
Version:    %{rubygems_version}
121925
Group:      Development/Libraries
121925
License:    Ruby or MIT
121925
Requires:   ruby(release)
121925
Requires:   rubygem(rdoc) >= %{rdoc_version}
121925
Requires:   rubygem(io-console) >= %{io_console_version}
121925
Requires:   rubygem(psych) >= %{psych_version}
121925
Requires:   ca-certificates
121925
Provides:   gem = %{version}-%{release}
121925
Provides:   ruby(rubygems) = %{version}-%{release}
121925
BuildArch:  noarch
121925
121925
%description -n rubygems
121925
RubyGems is the Ruby standard for publishing and managing third party
121925
libraries.
121925
121925
121925
%package -n rubygems-devel
121925
Summary:    Macros and development tools for packaging RubyGems
121925
Version:    %{rubygems_version}
121925
Group:      Development/Libraries
121925
License:    Ruby or MIT
121925
Requires:   ruby(rubygems) = %{version}-%{release}
121925
BuildArch:  noarch
121925
121925
%description -n rubygems-devel
121925
Macros and development tools for packaging RubyGems.
121925
121925
121925
%package -n rubygem-rake
121925
Summary:    Ruby based make-like utility
121925
Version:    %{rake_version}
121925
Group:      Development/Libraries
121925
License:    Ruby or MIT
121925
Requires:   ruby(release)
121925
Requires:   ruby(rubygems) >= %{rubygems_version}
121925
Provides:   rake = %{version}-%{release}
121925
Provides:   rubygem(rake) = %{version}-%{release}
121925
BuildArch:  noarch
121925
121925
%description -n rubygem-rake
121925
Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
121925
specified in standard Ruby syntax.
121925
121925
121925
%package irb
121925
Summary:    The Interactive Ruby
121925
Version:    %{irb_version}
121925
Group:      Development/Libraries
121925
Requires:   %{name}-libs = %{ruby_version_patch_level}
121925
Provides:   irb = %{version}-%{release}
121925
Provides:   ruby(irb) = %{version}-%{release}
121925
BuildArch:  noarch
121925
121925
%description irb
121925
The irb is acronym for Interactive Ruby.  It evaluates ruby expression
121925
from the terminal.
121925
121925
121925
%package -n rubygem-rdoc
121925
Summary:    A tool to generate HTML and command-line documentation for Ruby projects
121925
Version:    %{rdoc_version}
121925
Group:      Development/Libraries
121925
License:    GPLv2 and Ruby and MIT
121925
Requires:   ruby(release)
121925
Requires:   ruby(rubygems) >= %{rubygems_version}
121925
Requires:   ruby(irb) = %{irb_version}
121925
Requires:   rubygem(json) >= %{json_version}
121925
Provides:   rdoc = %{version}-%{release}
121925
Provides:   ri = %{version}-%{release}
121925
Provides:   rubygem(rdoc) = %{version}-%{release}
121925
Obsoletes:  ruby-rdoc < %{version}
121925
Obsoletes:  ruby-ri < %{version}
121925
BuildArch:  noarch
121925
121925
%description -n rubygem-rdoc
121925
RDoc produces HTML and command-line documentation for Ruby projects.  RDoc
121925
includes the 'rdoc' and 'ri' tools for generating and displaying online
121925
documentation.
121925
121925
121925
%package doc
121925
Summary:    Documentation for %{name}
121925
Group:      Documentation
121925
Requires:   %{_bindir}/ri
121925
BuildArch:  noarch
121925
121925
%description doc
121925
This package contains documentation for %{name}.
121925
121925
121925
%package -n rubygem-bigdecimal
121925
Summary:    BigDecimal provides arbitrary-precision floating point decimal arithmetic
121925
Version:    %{bigdecimal_version}
121925
Group:      Development/Libraries
121925
License:    GPL+ or Artistic
121925
Requires:   ruby(release)
121925
Requires:   ruby(rubygems) >= %{rubygems_version}
121925
Provides:   rubygem(bigdecimal) = %{version}-%{release}
121925
121925
%description -n rubygem-bigdecimal
121925
Ruby provides built-in support for arbitrary precision integer arithmetic.
121925
For example:
121925
121925
42**13 -> 1265437718438866624512
121925
121925
BigDecimal provides similar support for very large or very accurate floating
121925
point numbers. Decimal arithmetic is also useful for general calculation,
121925
because it provides the correct answers people expect–whereas normal binary
121925
floating point arithmetic often introduces subtle errors because of the
121925
conversion between base 10 and base 2.
121925
121925
121925
%package -n rubygem-io-console
121925
Summary:    IO/Console is a simple console utilizing library
121925
Version:    %{io_console_version}
121925
Group:      Development/Libraries
121925
Requires:   ruby(release)
121925
Requires:   ruby(rubygems) >= %{rubygems_version}
121925
Provides:   rubygem(io-console) = %{version}-%{release}
121925
121925
%description -n rubygem-io-console
121925
IO/Console provides very simple and portable access to console. It doesn't
121925
provide higher layer features, such like curses and readline.
121925
121925
121925
%package -n rubygem-json
121925
Summary:    This is a JSON implementation as a Ruby extension in C
121925
Version:    %{json_version}
121925
Group:      Development/Libraries
121925
License:    Ruby or GPLv2
121925
Requires:   ruby(release)
121925
Requires:   ruby(rubygems) >= %{rubygems_version}
121925
Provides:   rubygem(json) = %{version}-%{release}
121925
121925
%description -n rubygem-json
121925
This is a implementation of the JSON specification according to RFC 4627.
121925
You can think of it as a low fat alternative to XML, if you want to store
121925
data to disk or transmit it over a network rather than use a verbose
121925
markup language.
121925
121925
121925
%package -n rubygem-minitest
121925
Summary:    Minitest provides a complete suite of testing facilities
121925
Version:    %{minitest_version}
121925
Group:      Development/Libraries
121925
License:    MIT
121925
Requires:   ruby(release)
121925
Requires:   ruby(rubygems) >= %{rubygems_version}
121925
Provides:   rubygem(minitest) = %{version}-%{release}
121925
BuildArch:  noarch
121925
121925
%description -n rubygem-minitest
121925
minitest/unit is a small and incredibly fast unit testing framework.
121925
121925
minitest/spec is a functionally complete spec engine.
121925
121925
minitest/benchmark is an awesome way to assert the performance of your
121925
algorithms in a repeatable manner.
121925
121925
minitest/mock by Steven Baker, is a beautifully tiny mock object
121925
framework.
121925
121925
minitest/pride shows pride in testing and adds coloring to your test
121925
output.
121925
121925
121925
%package -n rubygem-psych
121925
Summary:    A libyaml wrapper for Ruby
121925
Version:    %{psych_version}
121925
Group:      Development/Libraries
121925
License:    MIT
121925
Requires:   ruby(release)
121925
Requires:   ruby(rubygems) >= %{rubygems_version}
121925
Provides:   rubygem(psych) = %{version}-%{release}
121925
121925
%description -n rubygem-psych
121925
Psych is a YAML parser and emitter. Psych leverages
121925
libyaml[http://pyyaml.org/wiki/LibYAML] for its YAML parsing and emitting
121925
capabilities. In addition to wrapping libyaml, Psych also knows how to
121925
serialize and de-serialize most Ruby objects to and from the YAML format.
121925
121925
# TODO:
121925
# %%pacakge -n rubygem-test-unit
121925
121925
121925
%package tcltk
121925
Summary:    Tcl/Tk interface for scripting language Ruby
121925
Group:      Development/Languages
121925
Requires:   %{name}-libs%{?_isa} = %{ruby_version_patch_level}
121925
Provides:   ruby(tcltk) = %{ruby_version_patch_level}-%{release}
121925
121925
%description tcltk
121925
Tcl/Tk interface for the object-oriented scripting language Ruby.
121925
121925
%prep
121925
%setup -q -n %{ruby_archive}
121925
121925
%patch0 -p1
121925
%patch3 -p1
121925
%patch5 -p1
121925
%patch8 -p1
121925
%patch9 -p1
121925
%patch12 -p1
121925
%patch13 -p1
121925
%patch14 -p1
121925
%patch16 -p1
121925
%patch17 -p1
121925
%patch24
121925
%patch26 -p1
121925
%patch27 -p1
121925
%patch28 -p1
121925
%patch29 -p1
121925
%patch30 -p1
121925
%patch31 -p1
121925
%patch32 -p1
121925
%patch33 -p1
121925
%patch34 -p1
121925
%patch35 -p1
121925
%patch36 -p1
121925
%patch37 -p1
121925
%patch38 -p1
121925
%patch39 -p1
121925
%patch40 -p1
121925
%patch41 -p1
121925
%patch42 -p1
121925
%patch43 -p1
121925
%patch44 -p1
121925
%patch45 -p1
121925
%patch46 -p1
121925
%patch47 -p1
121925
%patch48 -p1
121925
%patch49 -p1
121925
%patch50 -p1
121925
%patch51 -p1
121925
%patch52 -p1
121925
%patch53 -p1
121925
%patch54 -p1
121925
%patch55 -p1
121925
%patch56 -p1
121925
%patch57 -p1
121925
%patch58 -p1
121925
%patch59 -p1
121925
%patch60 -p1
121925
%patch61 -p1
121925
%patch62 -p1
121925
%patch63 -p1
121925
%patch64 -p1
121925
%patch65 -p1
121925
%patch66 -p1
121925
%patch67 -p1
121925
121925
# Provide an example of usage of the tapset:
121925
cp -a %{SOURCE3} .
121925
121925
# Make abrt_prelude.rb available for compilation process. The prelude must be
121925
# available together with Ruby's source due to
121925
# https://github.com/ruby/ruby/blob/trunk/tool/compile_prelude.rb#L26
121925
cp -a %{SOURCE6} .
121925
121925
%build
121925
autoconf
121925
121925
%configure \
121925
        --with-rubylibprefix='%{ruby_libdir}' \
121925
        --with-rubyarchprefix='%{ruby_libarchdir}' \
121925
        --with-sitedir='%{ruby_sitelibdir}' \
121925
        --with-sitearchdir='%{ruby_sitearchdir}' \
121925
        --with-vendordir='%{ruby_vendorlibdir}' \
121925
        --with-vendorarchdir='%{ruby_vendorarchdir}' \
121925
        --with-rubyhdrdir='%{_includedir}' \
121925
        --with-rubyarchhdrdir='%{_includedir}' \
121925
        --with-sitearchhdrdir='$(sitehdrdir)/$(arch)' \
121925
        --with-vendorarchhdrdir='$(vendorhdrdir)/$(arch)' \
121925
        --with-rubygemsdir='%{rubygems_dir}' \
121925
        --with-ruby-pc='%{name}.pc' \
121925
        --disable-rpath \
121925
        --enable-shared \
121925
        --with-ruby-version='' \
121925
        --enable-multiarch \
121925
        --with-prelude=./abrt_prelude.rb \
121925
121925
121925
121925
# Q= makes the build output more verbose and allows to check Fedora
121925
# compiler options.
121925
make %{?_smp_mflags} COPY="cp -p" Q=
121925
121925
%install
121925
rm -rf %{buildroot}
121925
make install DESTDIR=%{buildroot}
121925
121925
# Rename ruby/config.h to ruby/config-<arch>.h to avoid file conflicts on
121925
# multilib systems and install config.h wrapper
121925
mv %{buildroot}%{_includedir}/%{name}/config.h %{buildroot}%{_includedir}/%{name}/config-%{_arch}.h
121925
install -m644 %{SOURCE7} %{buildroot}%{_includedir}/%{name}/config.h
121925
121925
# Rename the ruby executable. It is replaced by RubyPick.
121925
%{?with_rubypick:mv %{buildroot}%{_bindir}/%{name}{,-mri}}
121925
121925
# Version is empty if --with-ruby-version is specified.
121925
# http://bugs.ruby-lang.org/issues/7807
121925
sed -i 's/Version: \${ruby_version}/Version: %{ruby_version}/' %{buildroot}%{_libdir}/pkgconfig/%{name}.pc
121925
121925
# Kill bundled certificates, as they should be part of ca-certificates.
121925
for cert in \
121925
  AddTrustExternalCARoot-2048.pem \
121925
  AddTrustExternalCARoot.pem \
121925
  Class3PublicPrimaryCertificationAuthority.pem \
121925
  DigiCertHighAssuranceEVRootCA.pem \
121925
  EntrustnetSecureServerCertificationAuthority.pem \
121925
  GeoTrustGlobalCA.pem
121925
do
121925
  rm %{buildroot}%{rubygems_dir}/rubygems/ssl_certs/$cert
121925
done
121925
# Ensure there is not forgotten any certificate.
121925
test ! "$(ls -A  %{buildroot}%{rubygems_dir}/rubygems/ssl_certs/ 2>/dev/null)"
121925
121925
# Move macros file insto proper place and replace the %%{name} macro, since it
121925
# would be wrongly evaluated during build of other packages.
121925
mkdir -p %{buildroot}%{_sysconfdir}/rpm
121925
install -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/rpm/macros.ruby
121925
sed -i "s/%%{name}/%{name}/" %{buildroot}%{_sysconfdir}/rpm/macros.ruby
121925
install -m 644 %{SOURCE5} %{buildroot}%{_sysconfdir}/rpm/macros.rubygems
121925
sed -i "s/%%{name}/%{name}/" %{buildroot}%{_sysconfdir}/rpm/macros.rubygems
121925
121925
# Kill bundled cert.pem
121925
mkdir -p %{buildroot}%{rubygems_dir}/rubygems/ssl_certs/
121925
ln -sf %{_sysconfdir}/pki/tls/cert.pem \
121925
  %{buildroot}%{rubygems_dir}/rubygems/ssl_certs/ca-bundle.pem
121925
121925
# Install custom operating_system.rb.
121925
mkdir -p %{buildroot}%{rubygems_dir}/rubygems/defaults
121925
cp %{SOURCE1} %{buildroot}%{rubygems_dir}/rubygems/defaults
121925
121925
# Move gems root into common direcotry, out of Ruby directory structure.
121925
mv %{buildroot}%{ruby_libdir}/gems %{buildroot}%{gem_dir}
121925
121925
# Create folders for gem binary extensions.
121925
# TODO: These folders should go into rubygem-filesystem but how to achieve it,
121925
# since noarch package cannot provide arch dependent subpackages?
121925
# http://rpm.org/ticket/78
121925
mkdir -p %{buildroot}%{_exec_prefix}/lib{,64}/gems/%{name}
121925
121925
# Move bundled rubygems to %%gem_dir and %%gem_extdir_mri
121925
# make symlinks for io-console and bigdecimal, which are considered to be part of stdlib by other Gems
121925
mkdir -p %{buildroot}%{gem_dir}/gems/rake-%{rake_version}/lib
121925
mv %{buildroot}%{ruby_libdir}/rake* %{buildroot}%{gem_dir}/gems/rake-%{rake_version}/lib
121925
mv %{buildroot}%{gem_dir}/specifications/default/rake-%{rake_version}.gemspec %{buildroot}%{gem_dir}/specifications
121925
121925
mkdir -p %{buildroot}%{gem_dir}/gems/rdoc-%{rdoc_version}/lib
121925
mv %{buildroot}%{ruby_libdir}/rdoc* %{buildroot}%{gem_dir}/gems/rdoc-%{rdoc_version}/lib
121925
mv %{buildroot}%{gem_dir}/specifications/default/rdoc-%{rdoc_version}.gemspec %{buildroot}%{gem_dir}/specifications
121925
121925
mkdir -p %{buildroot}%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib
121925
mkdir -p %{buildroot}%{_libdir}/gems/%{name}/bigdecimal-%{bigdecimal_version}/lib
121925
mv %{buildroot}%{ruby_libdir}/bigdecimal %{buildroot}%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib
121925
mv %{buildroot}%{ruby_libarchdir}/bigdecimal.so %{buildroot}%{_libdir}/gems/%{name}/bigdecimal-%{bigdecimal_version}/lib
121925
mv %{buildroot}%{gem_dir}/specifications/default/bigdecimal-%{bigdecimal_version}.gemspec %{buildroot}%{gem_dir}/specifications
121925
ln -s %{gem_dir}/gems/bigdecimal-%{bigdecimal_version}/lib/bigdecimal %{buildroot}%{ruby_libdir}/bigdecimal
121925
ln -s %{_libdir}/gems/%{name}/bigdecimal-%{bigdecimal_version}/lib/bigdecimal.so %{buildroot}%{ruby_libarchdir}/bigdecimal.so
121925
121925
mkdir -p %{buildroot}%{gem_dir}/gems/io-console-%{io_console_version}/lib
121925
mkdir -p %{buildroot}%{_libdir}/gems/%{name}/io-console-%{io_console_version}/lib/io
121925
mv %{buildroot}%{ruby_libdir}/io %{buildroot}%{gem_dir}/gems/io-console-%{io_console_version}/lib
121925
mv %{buildroot}%{ruby_libarchdir}/io/console.so %{buildroot}%{_libdir}/gems/%{name}/io-console-%{io_console_version}/lib/io
121925
mv %{buildroot}%{gem_dir}/specifications/default/io-console-%{io_console_version}.gemspec %{buildroot}%{gem_dir}/specifications
121925
ln -s %{gem_dir}/gems/io-console-%{io_console_version}/lib/io %{buildroot}%{ruby_libdir}/io
121925
ln -s %{_libdir}/gems/%{name}/io-console-%{io_console_version}/lib/io/console.so %{buildroot}%{ruby_libarchdir}/io/console.so
121925
121925
mkdir -p %{buildroot}%{gem_dir}/gems/json-%{json_version}/lib
121925
mkdir -p %{buildroot}%{_libdir}/gems/%{name}/json-%{json_version}/lib
121925
mv %{buildroot}%{ruby_libdir}/json* %{buildroot}%{gem_dir}/gems/json-%{json_version}/lib
121925
mv %{buildroot}%{ruby_libarchdir}/json/ %{buildroot}%{_libdir}/gems/%{name}/json-%{json_version}/lib/
121925
mv %{buildroot}%{gem_dir}/specifications/default/json-%{json_version}.gemspec %{buildroot}%{gem_dir}/specifications
121925
ln -s %{gem_dir}/gems/json-%{json_version}/lib/json.rb %{buildroot}%{ruby_libdir}/json.rb
121925
ln -s %{gem_dir}/gems/json-%{json_version}/lib/json %{buildroot}%{ruby_libdir}/json
121925
ln -s %{_libdir}/gems/%{name}/json-%{json_version}/lib/json/ %{buildroot}%{ruby_libarchdir}/json
121925
121925
mkdir -p %{buildroot}%{gem_dir}/gems/minitest-%{minitest_version}/lib
121925
mv %{buildroot}%{ruby_libdir}/minitest %{buildroot}%{gem_dir}/gems/minitest-%{minitest_version}/lib
121925
mv %{buildroot}%{gem_dir}/specifications/default/minitest-%{minitest_version}.gemspec %{buildroot}%{gem_dir}/specifications
121925
121925
mkdir -p %{buildroot}%{gem_dir}/gems/psych-%{psych_version}/lib
121925
mkdir -p %{buildroot}%{_libdir}/gems/%{name}/psych-%{psych_version}/lib
121925
mv %{buildroot}%{ruby_libdir}/psych* %{buildroot}%{gem_dir}/gems/psych-%{psych_version}/lib
121925
mv %{buildroot}%{ruby_libarchdir}/psych.so %{buildroot}%{_libdir}/gems/%{name}/psych-%{psych_version}/lib/
121925
mv %{buildroot}%{gem_dir}/specifications/default/psych-%{psych_version}.gemspec %{buildroot}%{gem_dir}/specifications
121925
ln -s %{gem_dir}/gems/psych-%{psych_version}/lib/psych %{buildroot}%{ruby_libdir}/psych
121925
ln -s %{gem_dir}/gems/psych-%{psych_version}/lib/psych.rb %{buildroot}%{ruby_libdir}/psych.rb
121925
ln -s %{_libdir}/gems/%{name}/psych-%{psych_version}/lib/psych.so %{buildroot}%{ruby_libarchdir}/psych.so
121925
121925
# Adjust the gemspec files so that the gems will load properly
121925
sed -i '/^end$/ i\
121925
  s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/specifications/rake-%{rake_version}.gemspec
121925
121925
sed -i '/^end$/ i\
121925
  s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/specifications/rdoc-%{rdoc_version}.gemspec
121925
121925
sed -i '/^end$/ i\
121925
  s.require_paths = ["lib"]\
121925
  s.extensions = ["bigdecimal.so"]' %{buildroot}%{gem_dir}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
121925
121925
sed -i '/^end$/ i\
121925
  s.require_paths = ["lib"]\
121925
  s.extensions = ["io/console.so"]' %{buildroot}%{gem_dir}/specifications/io-console-%{io_console_version}.gemspec
121925
121925
sed -i '/^end$/ i\
121925
  s.require_paths = ["lib"]\
121925
  s.extensions = ["json/ext/parser.so", "json/ext/generator.so"]' %{buildroot}%{gem_dir}/specifications/json-%{json_version}.gemspec
121925
121925
sed -i '/^end$/ i\
121925
  s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/specifications/minitest-%{minitest_version}.gemspec
121925
121925
# Install a tapset and fix up the path to the library.
121925
mkdir -p %{buildroot}%{tapset_dir}
121925
sed -e "s|@LIBRARY_PATH@|%{tapset_libdir}/libruby.so.%{ruby_version}|" \
121925
  %{SOURCE2} > %{buildroot}%{tapset_dir}/libruby.so.%{ruby_version}.stp
121925
# Escape '*/' in comment.
121925
sed -i -r "s|( \*.*\*)\/(.*)|\1\\\/\2|" %{buildroot}%{tapset_dir}/libruby.so.%{ruby_version}.stp
121925
121925
%check
121925
# Check RubyGems version correctness.
121925
[ "`make runruby TESTRUN_SCRIPT='bin/gem -v' | tail -1`" == '%{rubygems_version}' ]
121925
121925
DISABLE_TESTS=""
121925
121925
%ifarch armv7l armv7hl armv7hnl
121925
# test_call_double(DL::TestDL) fails on ARM HardFP
121925
# http://bugs.ruby-lang.org/issues/6592
121925
DISABLE_TESTS="-x test_dl2.rb $DISABLE_TESTS"
121925
%endif
121925
121925
# test_debug(TestRubyOptions) fails due to LoadError reported in debug mode,
121925
# when abrt.rb cannot be required (seems to be easier way then customizing
121925
# the test suite).
121925
touch abrt.rb
121925
121925
# Check if abrt hook is required (RubyGems are disabled by default when using
121925
# runruby, so re-enable them).
121925
make runruby TESTRUN_SCRIPT="--enable-gems %{SOURCE8}"
121925
121925
# Check if systemtap is supported.
121925
make runruby TESTRUN_SCRIPT=%{SOURCE9}
121925
121925
# Tests fail without installed Ruby, possibly due to build with prefix.
121925
# https://bugs.ruby-lang.org/issues/11434
121925
sed -i "/test_try_/ a\      return;" test/mkmf/test_flags.rb
121925
121925
# Recent glibc seqfaults when executed with LD_PRELOAD => hardcode
121925
# the check result for now.
121925
# https://bugzilla.redhat.com/show_bug.cgi?id=1428369#c6
121925
sed -i '/combination(STRINGS, STRINGS) {|str, salt|/i\    strict_crypt = true' \
121925
  test/ruby/test_m17n_comb.rb
121925
121925
# Fix "Could not find 'minitest'" error.
121925
# http://bugs.ruby-lang.org/issues/9259
121925
sed -i "/^  gem 'minitest', '~> 4.0'/ s/^/#/" lib/rubygems/test_case.rb
121925
121925
# Allow MD5 in OpenSSL.
121925
# https://bugs.ruby-lang.org/issues/9154
121925
OPENSSL_ENABLE_MD5_VERIFY=1 make check TESTS="-v $DISABLE_TESTS"
121925
121925
%post libs -p /sbin/ldconfig
121925
121925
%postun libs -p /sbin/ldconfig
121925
121925
%files
121925
%doc COPYING
121925
%lang(ja) %doc COPYING.ja
121925
%doc GPL
121925
%doc LEGAL
121925
%{_bindir}/erb
121925
%{_bindir}/%{name}%{?with_rubypick:-mri}
121925
%{_bindir}/testrb
121925
%{_mandir}/man1/erb*
121925
%{_mandir}/man1/ruby*
121925
121925
# http://fedoraproject.org/wiki/Packaging:Guidelines#Packaging_Static_Libraries
121925
%exclude %{_libdir}/libruby-static.a
121925
121925
%files devel
121925
%doc COPYING*
121925
%doc GPL
121925
%doc LEGAL
121925
%doc README.EXT
121925
%lang(ja) %doc README.EXT.ja
121925
121925
%{_sysconfdir}/rpm/macros.ruby
121925
121925
%{_includedir}/*
121925
%{_libdir}/libruby.so
121925
%{_libdir}/pkgconfig/%{name}.pc
121925
121925
%files libs
121925
%doc COPYING
121925
%lang(ja) %doc COPYING.ja
121925
%doc GPL
121925
%doc LEGAL
121925
%doc README
121925
%lang(ja) %doc README.ja
121925
%doc NEWS
121925
%doc doc/NEWS-*
121925
# Exclude /usr/local directory since it is supposed to be managed by
121925
# local system administrator.
121925
%exclude %{ruby_sitelibdir}
121925
%exclude %{ruby_sitearchdir}
121925
%dir %{ruby_vendorlibdir}
121925
%dir %{ruby_vendorarchdir}
121925
121925
# List all these files explicitly to prevent surprises
121925
# Platform independent libraries.
121925
%dir %{ruby_libdir}
121925
%{ruby_libdir}/*.rb
121925
%exclude %{ruby_libdir}/*-tk.rb
121925
%exclude %{ruby_libdir}/irb.rb
121925
%exclude %{ruby_libdir}/tcltk.rb
121925
%exclude %{ruby_libdir}/tk*.rb
121925
%exclude %{ruby_libdir}/psych.rb
121925
%{ruby_libdir}/cgi
121925
%{ruby_libdir}/date
121925
%{ruby_libdir}/digest
121925
%{ruby_libdir}/dl
121925
%{ruby_libdir}/drb
121925
%{ruby_libdir}/fiddle
121925
%exclude %{ruby_libdir}/gems
121925
%exclude %{ruby_libdir}/irb
121925
%{ruby_libdir}/matrix
121925
%{ruby_libdir}/net
121925
%{ruby_libdir}/openssl
121925
%{ruby_libdir}/optparse
121925
%{ruby_libdir}/racc
121925
%{ruby_libdir}/rbconfig
121925
%{ruby_libdir}/rexml
121925
%{ruby_libdir}/rinda
121925
%{ruby_libdir}/ripper
121925
%{ruby_libdir}/rss
121925
%{ruby_libdir}/shell
121925
%{ruby_libdir}/syslog
121925
%{ruby_libdir}/test
121925
%exclude %{ruby_libdir}/tk
121925
%exclude %{ruby_libdir}/tkextlib
121925
%{ruby_libdir}/uri
121925
%{ruby_libdir}/webrick
121925
%{ruby_libdir}/xmlrpc
121925
%{ruby_libdir}/yaml
121925
121925
# Platform specific libraries.
121925
%{_libdir}/libruby.so.*
121925
%dir %{ruby_libarchdir}
121925
%{ruby_libarchdir}/continuation.so
121925
%{ruby_libarchdir}/coverage.so
121925
%{ruby_libarchdir}/curses.so
121925
%{ruby_libarchdir}/date_core.so
121925
%{ruby_libarchdir}/dbm.so
121925
%dir %{ruby_libarchdir}/digest
121925
%{ruby_libarchdir}/digest.so
121925
%{ruby_libarchdir}/digest/bubblebabble.so
121925
%{ruby_libarchdir}/digest/md5.so
121925
%{ruby_libarchdir}/digest/rmd160.so
121925
%{ruby_libarchdir}/digest/sha1.so
121925
%{ruby_libarchdir}/digest/sha2.so
121925
%dir %{ruby_libarchdir}/dl
121925
%{ruby_libarchdir}/dl.so
121925
%{ruby_libarchdir}/dl/callback.so
121925
%dir %{ruby_libarchdir}/enc
121925
%{ruby_libarchdir}/enc/big5.so
121925
%{ruby_libarchdir}/enc/cp949.so
121925
%{ruby_libarchdir}/enc/emacs_mule.so
121925
%{ruby_libarchdir}/enc/encdb.so
121925
%{ruby_libarchdir}/enc/euc_jp.so
121925
%{ruby_libarchdir}/enc/euc_kr.so
121925
%{ruby_libarchdir}/enc/euc_tw.so
121925
%{ruby_libarchdir}/enc/gb18030.so
121925
%{ruby_libarchdir}/enc/gb2312.so
121925
%{ruby_libarchdir}/enc/gbk.so
121925
%{ruby_libarchdir}/enc/iso_8859_1.so
121925
%{ruby_libarchdir}/enc/iso_8859_10.so
121925
%{ruby_libarchdir}/enc/iso_8859_11.so
121925
%{ruby_libarchdir}/enc/iso_8859_13.so
121925
%{ruby_libarchdir}/enc/iso_8859_14.so
121925
%{ruby_libarchdir}/enc/iso_8859_15.so
121925
%{ruby_libarchdir}/enc/iso_8859_16.so
121925
%{ruby_libarchdir}/enc/iso_8859_2.so
121925
%{ruby_libarchdir}/enc/iso_8859_3.so
121925
%{ruby_libarchdir}/enc/iso_8859_4.so
121925
%{ruby_libarchdir}/enc/iso_8859_5.so
121925
%{ruby_libarchdir}/enc/iso_8859_6.so
121925
%{ruby_libarchdir}/enc/iso_8859_7.so
121925
%{ruby_libarchdir}/enc/iso_8859_8.so
121925
%{ruby_libarchdir}/enc/iso_8859_9.so
121925
%{ruby_libarchdir}/enc/koi8_r.so
121925
%{ruby_libarchdir}/enc/koi8_u.so
121925
%{ruby_libarchdir}/enc/shift_jis.so
121925
%dir %{ruby_libarchdir}/enc/trans
121925
%{ruby_libarchdir}/enc/trans/big5.so
121925
%{ruby_libarchdir}/enc/trans/chinese.so
121925
%{ruby_libarchdir}/enc/trans/emoji.so
121925
%{ruby_libarchdir}/enc/trans/emoji_iso2022_kddi.so
121925
%{ruby_libarchdir}/enc/trans/emoji_sjis_docomo.so
121925
%{ruby_libarchdir}/enc/trans/emoji_sjis_kddi.so
121925
%{ruby_libarchdir}/enc/trans/emoji_sjis_softbank.so
121925
%{ruby_libarchdir}/enc/trans/escape.so
121925
%{ruby_libarchdir}/enc/trans/gb18030.so
121925
%{ruby_libarchdir}/enc/trans/gbk.so
121925
%{ruby_libarchdir}/enc/trans/iso2022.so
121925
%{ruby_libarchdir}/enc/trans/japanese.so
121925
%{ruby_libarchdir}/enc/trans/japanese_euc.so
121925
%{ruby_libarchdir}/enc/trans/japanese_sjis.so
121925
%{ruby_libarchdir}/enc/trans/korean.so
121925
%{ruby_libarchdir}/enc/trans/single_byte.so
121925
%{ruby_libarchdir}/enc/trans/transdb.so
121925
%{ruby_libarchdir}/enc/trans/utf8_mac.so
121925
%{ruby_libarchdir}/enc/trans/utf_16_32.so
121925
%{ruby_libarchdir}/enc/utf_16be.so
121925
%{ruby_libarchdir}/enc/utf_16le.so
121925
%{ruby_libarchdir}/enc/utf_32be.so
121925
%{ruby_libarchdir}/enc/utf_32le.so
121925
%{ruby_libarchdir}/enc/windows_1251.so
121925
%{ruby_libarchdir}/enc/windows_31j.so
121925
%{ruby_libarchdir}/etc.so
121925
%{ruby_libarchdir}/fcntl.so
121925
%{ruby_libarchdir}/fiber.so
121925
%{ruby_libarchdir}/fiddle.so
121925
%{ruby_libarchdir}/gdbm.so
121925
%dir %{ruby_libarchdir}/io
121925
%{ruby_libarchdir}/io/nonblock.so
121925
%{ruby_libarchdir}/io/wait.so
121925
%dir %{ruby_libarchdir}/mathn
121925
%{ruby_libarchdir}/mathn/complex.so
121925
%{ruby_libarchdir}/mathn/rational.so
121925
%{ruby_libarchdir}/nkf.so
121925
%{ruby_libarchdir}/objspace.so
121925
%{ruby_libarchdir}/openssl.so
121925
%{ruby_libarchdir}/pathname.so
121925
%{ruby_libarchdir}/pty.so
121925
%dir %{ruby_libarchdir}/racc
121925
%{ruby_libarchdir}/racc/cparse.so
121925
%{ruby_libarchdir}/rbconfig.rb
121925
%{ruby_libarchdir}/readline.so
121925
%{ruby_libarchdir}/ripper.so
121925
%{ruby_libarchdir}/sdbm.so
121925
%{ruby_libarchdir}/socket.so
121925
%{ruby_libarchdir}/stringio.so
121925
%{ruby_libarchdir}/strscan.so
121925
%{ruby_libarchdir}/syslog.so
121925
%exclude %{ruby_libarchdir}/tcltklib.so
121925
%exclude %{ruby_libarchdir}/tkutil.so
121925
%{ruby_libarchdir}/zlib.so
121925
121925
%{tapset_root}
121925
121925
# TODO rubygems 2.0.0 does not create test-unit gemspec
121925
# TODO for now put this in ruby-libs rpm
121925
# TODO check if the following can be removed after
121925
# TODO test-unit rebuild
121925
%dir %{gem_dir}
121925
%dir %{gem_dir}/specifications
121925
%dir %{gem_dir}/specifications/default
121925
%{gem_dir}/specifications/default/test-unit-*.gemspec
121925
121925
%files -n rubygems
121925
%{_bindir}/gem
121925
%{rubygems_dir}
121925
%{gem_dir}
121925
%exclude %{gem_dir}/gems/*
121925
%{_exec_prefix}/lib*/gems
121925
%exclude %{_exec_prefix}/lib*/gems/%{name}/bigdecimal-%{bigdecimal_version}
121925
%exclude %{_exec_prefix}/lib*/gems/%{name}/io-console-%{io_console_version}
121925
%exclude %{_exec_prefix}/lib*/gems/%{name}/json-%{json_version}
121925
%exclude %{_exec_prefix}/lib*/gems/%{name}/psych-%{psych_version}
121925
%exclude %{gem_dir}/gems/rake-%{rake_version}
121925
%exclude %{gem_dir}/gems/rdoc-%{rdoc_version}
121925
%exclude %{gem_dir}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
121925
%exclude %{gem_dir}/specifications/io-console-%{io_console_version}.gemspec
121925
%exclude %{gem_dir}/specifications/json-%{json_version}.gemspec
121925
%exclude %{gem_dir}/specifications/minitest-%{minitest_version}.gemspec
121925
%exclude %{gem_dir}/specifications/rake-%{rake_version}.gemspec
121925
%exclude %{gem_dir}/specifications/rdoc-%{rdoc_version}.gemspec
121925
%exclude %{gem_dir}/specifications/psych-%{psych_version}.gemspec
121925
# TODO rubygems 2.0.0 does not create test-unit gemspec
121925
# TODO where to put test-unit-*.gemspec??
121925
%exclude %{gem_dir}/specifications/default/test-unit-*.gemspec
121925
121925
%files -n rubygems-devel
121925
%{_sysconfdir}/rpm/macros.rubygems
121925
121925
%files -n rubygem-rake
121925
%{_bindir}/rake
121925
%{gem_dir}/gems/rake-%{rake_version}
121925
%{gem_dir}/specifications/rake-%{rake_version}.gemspec
121925
%{_mandir}/man1/rake.1*
121925
121925
%files irb
121925
%{_bindir}/irb
121925
%{ruby_libdir}/irb.rb
121925
%{ruby_libdir}/irb
121925
%{_mandir}/man1/irb.1*
121925
121925
%files -n rubygem-rdoc
121925
%{_bindir}/rdoc
121925
%{_bindir}/ri
121925
%{gem_dir}/gems/rdoc-%{rdoc_version}
121925
%{gem_dir}/specifications/rdoc-%{rdoc_version}.gemspec
121925
%{_mandir}/man1/ri*
121925
121925
%files doc
121925
%doc README
121925
%lang(ja) %doc README.ja
121925
%doc ChangeLog
121925
%doc doc/ChangeLog-*
121925
%doc ruby-exercise.stp
121925
%{_datadir}/ri
121925
121925
%files -n rubygem-bigdecimal
121925
%{ruby_libdir}/bigdecimal
121925
%{ruby_libarchdir}/bigdecimal.so
121925
%{_libdir}/gems/%{name}/bigdecimal-%{bigdecimal_version}
121925
%{gem_dir}/gems/bigdecimal-%{bigdecimal_version}
121925
%{gem_dir}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
121925
121925
%files -n rubygem-io-console
121925
%{ruby_libdir}/io
121925
%{ruby_libarchdir}/io/console.so
121925
%{_libdir}/gems/%{name}/io-console-%{io_console_version}
121925
%{gem_dir}/gems/io-console-%{io_console_version}
121925
%{gem_dir}/specifications/io-console-%{io_console_version}.gemspec
121925
121925
%files -n rubygem-json
121925
%{ruby_libdir}/json*
121925
%{ruby_libarchdir}/json*
121925
%{_libdir}/gems/%{name}/json-%{json_version}
121925
%{gem_dir}/gems/json-%{json_version}
121925
%{gem_dir}/specifications/json-%{json_version}.gemspec
121925
121925
%files -n rubygem-minitest
121925
%{gem_dir}/gems/minitest-%{minitest_version}
121925
%{gem_dir}/specifications/minitest-%{minitest_version}.gemspec
121925
121925
%files -n rubygem-psych
121925
%{ruby_libdir}/psych
121925
%{ruby_libdir}/psych.rb
121925
%{ruby_libarchdir}/psych.so
121925
%{_libdir}/gems/%{name}/psych-%{psych_version}
121925
%{gem_dir}/gems/psych-%{psych_version}
121925
%{gem_dir}/specifications/psych-%{psych_version}.gemspec
121925
121925
%files tcltk
121925
%{ruby_libdir}/*-tk.rb
121925
%{ruby_libdir}/tcltk.rb
121925
%{ruby_libdir}/tk*.rb
121925
%{ruby_libarchdir}/tcltklib.so
121925
%{ruby_libarchdir}/tkutil.so
121925
%{ruby_libdir}/tk
121925
%{ruby_libdir}/tkextlib
121925
121925
%changelog
121925
* Thu Apr 04 2019 Vít Ondruch <vondruch@redhat.com> - 2.0.0.648-36
121925
- Introduce `Gem::UserInteraction#verbose` method as precondition to fix
121925
  CVE-2019-8321.
121925
  * rubygems-2.3.0-refactor-checking-really_verbose.patch
121925
- Fix escape sequence injection vulnerability in verbose.
121925
- Fix escape sequence injection vulnerability in gem owner.
121925
  Resolves: CVE-2019-8322
121925
- Fix escape sequence injection vulnerability in API response handling.
121925
  Resolves: CVE-2019-8323
121925
- Prohibit arbitrary code execution when installing a malicious gem.
121925
  Resolves: CVE-2019-8324
121925
- Fix escape sequence injection vulnerability in errors.
121925
  Resolves: CVE-2019-8325
121925
  * ruby-2.4.6-Applied-security-patches-for-RubyGems.patch
121925
121925
* Mon Feb 04 2019 Jun Aruga <jaruga@redhat.com> - 2.0.0.648-35
121925
- Kill bundled certificates.
121925
- Add macros to edit files lists in .gemspec
121925
- Fix buffer under-read in String#unpack
121925
  Resolves: CVE-2018-8778
121925
- Fix HTTP response splitting in WEBrick
121925
  Resolves: CVE-2017-17742
121925
- Fix DoS by large request in WEBrick
121925
  Resolves: CVE-2018-8777
121925
- Fix directory traversal by poisoned NULL byte in Dir.
121925
  Resolves: CVE-2018-8780
121925
- Fix file and directory creation with directory traversal.
121925
  Resolves: CVE-2018-6914
121925
- Fix socket creation by poisoned NULL byte.
121925
  Resolves: CVE-2018-8779
121925
- Fix: return default path with nonexistent home dir
121925
- Fix flags not propagated in Array#pack and String#unpack.
121925
  Resolves: CVE-2018-16396
121925
- Fix strictly interpret octal fields in tar headers.
121925
  Resolves: CVE-2018-1000075
121925
- Fix a security error for duplicate files in a package.
121925
  Resolves: CVE-2018-1000076
121925
- Enforce URL validation on spec homepage attribute.
121925
  Resolves: CVE-2018-1000077
121925
- Mitigate XSS vulnerability in homepage attribute.
121925
  Resolves: CVE-2018-1000078
121925
- Prevent Path Traversal issue during gem installation.
121925
  Resolves: CVE-2018-1000079
121925
- Fix unsafe Object Deserialization Vulnerability in gem owner.
121925
  Resolves: CVE-2018-1000074
121925
- Refresh expired certificates.
121925
- Fix path traversal when writing to a symlinked basedir outside of the root
121925
  Resolves: CVE-2018-1000073
121925
121925
* Thu Nov 01 2018 Jun Aruga <jaruga@redhat.com> - 2.0.0.648-34
121925
- CVE-2018-16395: Fix OpenSSL::X509::Name equality check does not work.
121925
  Resolves: CVE-2018-16395
121925
121925
* Mon Feb 19 2018 Vít Ondruch <vondruch@redhat.com> - 2.0.0.648-33
121925
- Fix always passing WEBrick test.
121925
121925
* Fri Feb 16 2018 Vít Ondruch <vondruch@redhat.com> - 2.0.0.648-32
121925
- Add Psych.safe_load
121925
  * ruby-2.1.0-there-should-be-only-one-exception.patch
121925
  * ruby-2.1.0-Adding-Psych.safe_load.patch
121925
  Related: CVE-2017-0903
121925
- Disable Tokyo TZ tests broken by recen tzdata update.
121925
  * ruby-2.5.0-Disable-Tokyo-TZ-tests.patch
121925
  Related: CVE-2017-0903
121925
121925
* Mon Jan 15 2018 Vít Ondruch <vondruch@redhat.com> - 2.0.0.648-31
121925
- Fix unsafe object deserialization in RubyGems (CVE-2017-0903).
121925
  * ruby-2.4.3-CVE-2017-0903-Fix-unsafe-object-deserialization
121925
      -vulnerability.patch
121925
  Resolves: CVE-2017-0903
121925
- Fix an ANSI escape sequence vulnerability (CVE-2017-0899).
121925
  Resolves: CVE-2017-0899
121925
- Fix a DOS vulernerability in the query command (CVE-2017-0900).
121925
  Resolves: CVE-2017-0900
121925
- Fix a vulnerability in the gem installer that allowed a malicious gem
121925
    to overwrite arbitrary files (CVE-2017-0901).
121925
  Resolves: CVE-2017-0901
121925
- Fix a DNS request hijacking vulnerability (CVE-2017-0902).
121925
  * ruby-2.2.8-lib-rubygems-fix-several-vulnerabilities-in-RubyGems.patch
121925
  Resolves: CVE-2017-0902
121925
- Fix buffer underrun vulnerability in Kernel.sprintf (CVE-2017-0898).
121925
  * ruby-2.2.8-Buffer-underrun-vulnerability-in-Kernel.sprintf.patch
121925
  Resolves: CVE-2017-0898
121925
- Escape sequence injection vulnerability in the Basic
121925
    authentication of WEBrick (CVE-2017-10784).
121925
  * ruby-2.2.8-sanitize-any-type-of-logs.patch
121925
  Resolves: CVE-2017-10784
121925
- Arbitrary heap exposure during a JSON.generate call (CVE-2017-14064).
121925
  * ruby-2.2.8-Fix-arbitrary-heap-exposure-during-a-JSON.generate-call.patch
121925
  Resolves: CVE-2017-14064
121925
- Command injection vulnerability in Net::FTP (CVE-2017-17405).
121925
  * ruby-2.2.9-Fix-a-command-injection-vulnerability-in-Net-FTP.patch
121925
  Resolves: CVE-2017-17405
121925
- Buffer underrun in OpenSSL ASN1 decode (CVE-2017-14033).
121925
  * ruby-2.2.8-asn1-fix-out-of-bounds-read-in-decoding-constructed-objects.patch
121925
  Resolves: CVE-2017-14033
121925
- Command injection in lib/resolv.rb:lazy_initialize() allows arbitrary code
121925
    execution(CVE-2017-17790).
121925
  * ruby-2.5.0-Fixed-command-Injection.patch
121925
  Resolves: CVE-2017-17790
121925
121925
* Wed Mar 01 2017 Vít Ondruch <vondruch@redhat.com> - 2.0.0.648-30
121925
- Fix test_npn_protocol_selection_ary and test_npn_protocol_selection_enum
121925
  failures with newest openssl.
121925
  Resolves: rhbz#1416123
121925
- Add gemspec_add_dep and gemspec_remove_dep macros.
121925
- Extend 'gem_' macros for pre-release version support.
121925
  Resolves: rhbz#1397390
121925
- Make symlinks for json gem.
121925
  Resolves: rhbz#1308992
121925
121925
* Wed Jun 08 2016 Pavel Valena <pvalena@redhat.com> - 2.0.0.648-29
121925
- Fix hostname size limit
121925
  Resolves: rhbz#1343945
121925
121925
* Mon Jun 06 2016 Pavel Valena <pvalena@redhat.com> - 2.0.0.648-28
121925
- Fix missing declaration of 'rb_frame_last_func'
121925
  Related: rhbz#1197720
121925
121925
* Fri Jun 03 2016 Pavel Valena <pvalena@redhat.com> - 2.0.0.648-27
121925
- Apply previously unapplied patch #14
121925
  Related: rhbz#1197720
121925
121925
* Mon May 09 2016 Pavel Valena <pvalena@redhat.com> - 2.0.0.648-26
121925
- Rebase to Ruby 2.0.0-p648
121925
  Resolves: rhbz#1197720, rhbz#1298282, rhbz#1258863
121925
  * Remove Patch18: ruby-2.0.0-p247-Revert-mkmf.rb-prefix-install_dirs-only-
121925
      with-DESTDIR.patch; subsumed
121925
  * Remove Patch23: ruby-openssl-wrap-cipher-fix.patch; subsumed
121925
  * Remove Patch25: ruby-2.0.0-p607-DNS-Resolv-fall-back-if-canonicalization-
121925
      fails.patch; subsumed
121925
- Remove tests depending on europe/moscow to avoid failures due to tzdata change
121925
  https://github.com/eggert/tz/commit/8ee11a301cf173afb0c76e0315b9f9ec8ebb9d95
121925
- Add checks for systemtap, abrt hook and rubygems version
121925
- Fix significant hash table performance slowdown on ppc64le
121925
  Resolves: rhbz#1163032
121925
- Support in no_proxy for domain names with whitespaces and leading dots
121925
  Resolves: rhbz#1300433
121925
121925
* Mon Apr 27 2015 Vít Ondruch <vondruch@redhat.com> - 2.0.0.598-25
121925
- Fix broken DNS Resolv when resolv.conf has option ndots > 1.
121925
  Resolves: rhbz#1200419
121925
121925
* Fri Nov 14 2014 Vít Ondruch <vondruch@redhat.com> - 2.0.0.598-24
121925
- Rebased to Ruby 2.0.0-p598.
121925
  * Remove Patch19: ruby-2.0.0-p247-Make-stable-Gem-Specification.files-in-
121925
      default-.gems.patch; subsumed
121925
  * Remove Patch20: ruby-2.1.1-fix-test-failures-due-to-expired-certs.patch;
121925
      subsumed
121925
  * Remove Patch21: ruby-2.1.0-test_aes_gcm_wrong_tag-Dont-use-String
121925
      -succ.patch; subsumed
121925
  * Remove Patch22: ruby-2.2.0-fix-error-with-tzdata.patch; subsumed
121925
  Resolves: rhbz#1071187
121925
- Incorporates fixes for CVE-2014-8080 and CVE-2015-8090.
121925
  Resolves: rhbz#1164000
121925
- Fix for Proxy Realm feature.
121925
  Resolves: rhbz#1122140
121925
- Fix off-by-one stack-based buffer overflow in the encodes() function
121925
  (CVE-2014-4975).
121925
  Related: rhbz#1164000
121925
121925
* Wed Sep 24 2014 Josef Stribny <jstribny@redhat.com> - 2.0.0.353-23
121925
- Add missing patch for new tzdata
121925
  Related: rhbz#1144023
121925
- Add missing patch for RFC 5649 in OpenSSL
121925
  Related: rhbz#1145692
121925
121925
* Tue Sep 23 2014 Josef Stribny <jstribny@redhat.com> - 2.0.0.353-22
121925
- Fix FTBFS with new tzdata
121925
  Resolves: rhbz#1144023
121925
- Fix FTBFS due to a support for RFC 5649 in OpenSSL
121925
  Resolves: rhbz#1145692
121925
121925
* Thu Aug 14 2014 Vít Ondruch <vondruch@redhat.com> - 2.0.0.353-21
121925
- Add support for ppc64le arch.
121925
  Resolves: rhbz#1126146
121925
121925
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.0.0.353-20
121925
- Mass rebuild 2014-01-24
121925
121925
* Tue Jan 07 2014 Vít Ondruch <vondruch@redhat.com> - 2.0.0.353-19
121925
- Update to Ruby 2.0.0-p353.
121925
  - Resolves: rhbz#1033923
121925
- Allow MD5 in OpenSSL for tests.
121925
121925
* Fri Jan 03 2014 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-18
121925
- Fix FTBFS due to expired certificate for IMAP test case.
121925
- Fix test_aes_gcm_wrong_tag random failures.
121925
  - Resolves: rhbz#1048899
121925
121925
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.0.0.247-18
121925
- Mass rebuild 2013-12-27
121925
121925
* Mon Nov 25 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-17
121925
- Heap overflow in floating point parsing (CVE-2013-4164).
121925
  * ruby-2.0.0-p353-CVE-2013-4164-ignore-too-long-fraction-part.patch
121925
  - Resolves: rhbz#1033503
121925
- Allow MD5 in OpenSSL tests.
121925
121925
* Wed Sep 25 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-16
121925
- Fix version regex algorithmic complexity vulnerability (CVE for incomplete
121925
  fix for CVE-2013-4287) (CVE-2013-4363).
121925
  - Related: rhbz#1006429
121925
121925
* Tue Sep 17 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-15
121925
- Fix version regex algorithmic complexity vulnerability (CVE-2013-4287).
121925
  - Resolves: rhbz#1006429
121925
121925
* Mon Jul 15 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-14
121925
- Add forgotten psych.rb link into rubygem-psych to fix "private method `load'
121925
  called for Psych:Moduler" error (rhbz#979133).
121925
121925
* Thu Jul 11 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-13
121925
- Fixes multilib conlicts of .gemspec files.
121925
- Make symlinks for psych gem to ruby stdlib dirs (rhbz#979133).
121925
- Use system-wide cert.pem.
121925
121925
* Thu Jul 04 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-12
121925
- Fix RubyGems search paths when building gems with native extension
121925
  (rhbz#979133).
121925
121925
* Tue Jul 02 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-11
121925
- Fix RubyGems version.
121925
121925
* Tue Jul 02 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-10
121925
- Better support for build without configuration (rhbz#977941).
121925
121925
* Mon Jul 01 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.247-9
121925
- Update to Ruby 2.0.0-p247 (rhbz#979605).
121925
- Fix CVE-2013-4073.
121925
- Fix for wrong makefiles created by mkmf (rhbz#921650).
121925
- Add support for ABRT autoloading.
121925
121925
* Fri May 17 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.195-8
121925
- Update to Ruby 2.0.0-p195 (rhbz#917374).
121925
- Fix object taint bypassing in DL and Fiddle (CVE-2013-2065).
121925
- Fix build against OpenSSL with enabled ECC curves.
121925
- Add aarch64 support (rhbz#926463).
121925
121925
* Fri Apr 19 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-7
121925
- Macro definition moved into macros.ruby and macros.rubygems files.
121925
- Added filtering macros.
121925
- Filter automatically generated provides of private libraries (rhbz#947408).
121925
121925
* Fri Mar 22 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-6
121925
- Fix RbConfig::CONFIG['exec_prefix'] returns empty string (rhbz#924851).
121925
121925
* Thu Mar 21 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-5
121925
- Make Ruby buildable without rubypick.
121925
- Prevent random test failures.
121925
121925
* Fri Mar 08 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.0.0.0-4
121925
- Don't mark rpm config file as %%config (fpc#259)
121925
121925
* Tue Mar 05 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-3
121925
- Avoid "method redefined;" warnings due to modified operating_system.rb.
121925
- Fix strange paths created during build of binary gems.
121925
121925
* Mon Feb 25 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-2
121925
- Prevent squash of %%gem_install with following line.
121925
121925
* Mon Feb 25 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-1
121925
- Update to Ruby 2.0.0-p0.
121925
- Change %%{ruby_extdir} to %%{ruby_extdir_mri} in preparation for better
121925
  JRuby support.
121925
121925
* Mon Feb 25 2013 Mamoru TASAKA <mtasaka@fedoraprojec.org> - 2.0.0.0-0.3.r39387
121925
- Move test-unit.gemspec to -libs subpackage for now because rubygems
121925
  2.0.0 does not create this
121925
121925
* Fri Feb 22 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-0.2.r39387
121925
- Fix issues with wrong value of Rubygem's shebang introduced in r39267.
121925
121925
* Fri Feb 22 2013 Vít Ondruch <vondruch@redhat.com> - 2.0.0.0-0.1.r39387
121925
- Upgrade to Ruby 2.0.0 (r39387).
121925
- Introduce %%gem_install macro.
121925
- Build against libdb instead of libdb4 (rhbz#894022).
121925
- Move native extensions from exts to ruby directory.
121925
- Enable most of the PPC test suite.
121925
- Change ruby(abi) -> ruby(release).
121925
- Rename ruby executable to ruby-mri, to be prepared for RubyPick.
121925
- Add ruby(runtime_executable) virtual provide, which is later used
121925
  by RubyPick.
121925
- RDoc now depends on JSON.
121925
- Try to make -doc subpackage noarch again, since the new RDoc should resolve
121925
  the arch dependent issues (https://github.com/rdoc/rdoc/issues/71).
121925
- Enable SystemTap support.
121925
- Add TapSet for Ruby.
121925
- Split Psych into rubygem-psych subpackage.
121925
121925
* Mon Feb 11 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.385-28
121925
- Update to 1.9.3 p385
121925
121925
* Sat Jan 19 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.374-27
121925
- Update to 1.9.3 p374
121925
- Fix provided variables in pkgconfig (bug 789532:
121925
  Vít Ondruch <vondruch@redhat.com>)
121925
121925
* Fri Jan 18 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-26
121925
- Provide non-versioned pkgconfig file (bug 789532)
121925
- Use db5 on F-19 (bug 894022)
121925
 
121925
* Wed Jan 16 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-25
121925
- Backport fix for the upstream PR7629, save the proc made from the given block
121925
  (bug 895173)
121925
121925
* Wed Jan  2 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-24
121925
- Update to 1.9.3.362
121925
121925
* Mon Dec 03 2012 Jaromir Capik <jcapik@redhat.com> - 1.9.3.327-23
121925
- Skipping test_parse.rb (fails on ARM at line 787)
121925
- http://bugs.ruby-lang.org/issues/6899
121925
121925
* Sun Nov 11 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.327-23
121925
- Skip test_str_crypt (on rawhide) for now (upstream bug 7312)
121925
121925
* Sat Nov 10 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.327-22
121925
- Ignore some network related tests
121925
121925
* Sat Nov 10 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.327-21
121925
- Update to 1.9.3.327
121925
- Fix Hash-flooding DoS vulnerability on MurmurHash function
121925
  (CVE-2012-5371)
121925
121925
* Sat Oct 13 2012 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.286-19
121925
- Update to 1.9.3 p286
121925
- Don't create files when NUL-containing path name is passed
121925
  (bug 865940, CVE-2012-4522)
121925
121925
* Thu Oct 04 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.9.3.194-18
121925
- Patch from trunk for CVE-2012-4464, CVE-2012-4466
121925
121925
* Thu Sep 06 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-17
121925
- Split documentation into -doc subpackage (rhbz#854418).
121925
121925
* Tue Aug 14 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-16
121925
- Revert the dependency of ruby-libs on rubygems (rhbz#845011, rhbz#847482).
121925
121925
* Wed Aug 01 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-15
121925
- ruby-libs must require rubygems (rhbz#845011).
121925
121925
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.3.194-14
121925
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
121925
121925
* Mon Jun 11 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1.9.3.194-13
121925
- Make the bigdecimal gem a runtime dependency of Ruby.
121925
121925
* Mon Jun 11 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1.9.3.194-12
121925
- Make symlinks for bigdecimal and io-console gems to ruby stdlib dirs (RHBZ 829209).
121925
121925
* Tue May 29 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 1.9.3.194-11
121925
- Fix license to contain Public Domain.
121925
- macros.ruby now contains unexpanded macros.
121925
121925
* Sun Apr 22 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.9.3.194-10.1
121925
- Bump release
121925
121925
* Fri Apr 20 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.194-1
121925
- Update to Ruby 1.9.3-p194.
121925
121925
* Mon Apr 09 2012 Karsten Hopp <karsten@redhat.com> 1.9.3.125-3
121925
- disable check on ppc(64), RH bugzilla 803698
121925
121925
* Wed Feb 29 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.9.3.125-2
121925
- Temporarily disable make check on ARM until it's fixed upstream. Tracked in RHBZ 789410
121925
121925
* Mon Feb 20 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.125-1
121925
- Upgrade to Ruby 1.9.3-p125.
121925
121925
* Sun Jan 29 2012 Mamoru Tasaka <mtasaka@fedoraprpject.org> - 1.9.3.0-7
121925
- Make mkmf.rb verbose by default
121925
121925
* Thu Jan 26 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-6
121925
- Relax dependencies to allow external updates of bundled gems.
121925
121925
* Wed Jan 18 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-5
121925
- Initial release of Ruby 1.9.3.
121925
- Add rubygems dependency on io-console for user interactions.
121925
- Gems license clarification.
121925
121925
* Tue Jan 17 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-4
121925
- Bundled gems moved into dedicated directories and subpackages.
121925
- Create and own RubyGems directories for binary extensions.
121925
- Fix build with GCC 4.7.
121925
121925
* Mon Jan 16 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-3
121925
- Fix RHEL build.
121925
- Fixed directory ownership.
121925
- Verose build output.
121925
121925
* Sun Jan 15 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-2
121925
- Install RubyGems outside of Ruby directory structure.
121925
- RubyGems has not its own -devel subpackage.
121925
- Enhanced macros.ruby and macros.rubygems.
121925
- All tests are green now (bkabrda).
121925
121925
* Sat Jan 14 2012 Vít Ondruch <vondruch@redhat.com> - 1.9.3.0-1
121925
- Initial package
121925
121925
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.7.357-2
121925
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
121925
121925
* Thu Dec 29 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.357-1
121925
- Update to 1.8.7p357
121925
- Randomize hash on process startup (CVE-2011-4815, bug 750564)
121925
121925
* Fri Dec 23 2011 Dennis Gilmore <dennis@ausil.us> - 1.8.7.352-2
121925
- dont normalise arm cpus to arm
121925
- there is something weird about how ruby choses where to put bits
121925
121925
* Thu Nov 17 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.352-3
121925
- F-17: kill gdbm support for now due to licensing compatibility issue
121925
121925
* Sat Oct  1 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.352-2
121925
- F-17: rebuild against new gdbm
121925
121925
* Sat Jul 16 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.352-1
121925
- Update to 1.8.7 p352
121925
- CVE-2011-2686 is fixed in this version (bug 722415)
121925
- Update ext/tk to the latest git
121925
- Remove duplicate path entry (bug 718695)
121925
121925
* Thu Jul 14 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.334-4
121925
- Once fix FTBFS (bug 716021)
121925
121925
* Mon Jul 11 2011 Dennis Gilmore <dennis@ausil.us> - 1.8.7.334-3
121925
- normalise arm cpus to arm
121925
121925
* Mon May 30 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.8.7.334-2
121925
- Own %%{_normalized_cpu}-%%{_target_os} directory (bug 708816)
121925
121925
* Sat Feb 19 2011 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.334-1
121925
- Update to 1.8.7 p334
121925
121925
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.7.330-3
121925
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
121925
121925
* Sun Jan 02 2011 Dennis Gilmore <dennis@ausil.us> - 1.8.7.330-2
121925
- nomalise the 32 bit sparc archs to sparc
121925
121925
* Sun Dec 26 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.330-1
121925
- Update to 1.8.7 p330
121925
- ext/tk updated to the newest header
121925
121925
* Thu Nov  4 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.302-2
121925
- Avoid multilib conflict on -libs subpackage (bug 649174)
121925
121925
* Mon Aug 23 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.302-1
121925
- Update to 1.8.7.302
121925
- CVE-2010-0541 (bug 587731) is fixed in this version
121925
- Update ext/tk to the latest head
121925
121925
* Mon Aug  2 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.299-5
121925
- More cleanup of spec file, expecially for rpmlint issue
121925
- build ri files in %%build
121925
121925
* Mon Jul 26 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.7.299-4
121925
- Cleanup spec file
121925
- Make -irb, -rdoc subpackage noarch
121925
- Make dependencies between arch-dependent subpackages isa specific
121925
- Improve sample documentation gathering
121925
121925
* Mon Jul 12 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.299-3
121925
- updated packaged based on feedback (from mtasaka)
121925
- added comments to all patches / sources
121925
- obsoleted ruby-mode, as it's now provided by the emacs package itself
121925
- readded missing documentation
121925
- various small compatability/regression fixes
121925
121925
* Tue Jul 06 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.299-2
121925
- readded bits to pull tk package from upstream source branch
121925
- removed unecessary .tk.old dir
121925
- renamed macros which may cause confusion, removed unused ones
121925
121925
* Thu Jun 24 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.299-1
121925
- integrate more of jmeyering's and mtaska's feedback
121925
- removed emacs bits that are now shipped with the emacs package
121925
- various patch and spec cleanup
121925
- rebased to ruby 1.8.7 patch 299, removed patches no longer needed:
121925
   ruby-1.8.7-openssl-1.0.patch, ruby-1.8.7-rb_gc_guard_ptr-optimization.patch
121925
121925
* Wed Jun 23 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-5
121925
- Various fixes
121925
121925
* Wed Jun 23 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-4
121925
- Fixed incorrect paths in 1.8.7 rpm
121925
121925
* Tue Jun 22 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-3
121925
- Integrated Jim Meyering's feedback and changes in to:
121925
- remove trailing blanks
121925
- placate rpmlint
121925
- ruby_* definitions: do not use trailing slashes in directory names
121925
- _normalized_cpu: simplify definition
121925
121925
* Mon Jun 21 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-2
121925
- Integrate mtasaka's feedback and changes
121925
- patch101 ruby_1_8_7-rb_gc_guard_ptr-optimization.patch
121925
121925
* Tue Jun 15 2010 Mohammed Morsi <mmorsi@redhat.com> - 1.8.7.249-1
121925
- Initial Ruby 1.8.7 specfile
121925
121925
* Wed May 19 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-5
121925
- Retry for bug 559158, Simplify the OpenSSL::Digest class
121925
  pull more change commits from ruby_1_8 branch
121925
121925
* Mon May 17 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-4
121925
- Patch36 (ruby-1.8.x-RHASH_SIZE-rb_hash_lookup-def.patch)
121925
  also backport rb_hash_lookup definition (bug 592936)
121925
121925
* Thu May 13 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-3
121925
- ruby-1.8.x-null-class-must-be-Qnil.patch (bug 530407)
121925
- Recreate some patches using upstream svn when available, and
121925
  add some comments for patches
121925
121925
* Tue May 11 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-2
121925
- tcltk: Give up using potentially unmaintained ruby_1_8_6 branch
121925
  and instead completely replace with ruby_1_8 branch head
121925
  (at this time, using rev 27738)
121925
  (seems to fix 560053, 590503)
121925
- Fix Japanese encoding strings under ruby-tcltk/ext/tk/sample/
121925
121925
* Tue Apr 27 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.399-1
121925
- Update to 1.8.6 p 399 (bug 579675)
121925
- Patch to fix gc bug causing open4 crash (bug 580993)
121925
121925
* Fri Mar 12 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.388-9
121925
- F-14: rebuild against new gdbm
121925
121925
* Thu Jan 28 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
121925
- Once revert the previous change (patch34)
121925
121925
* Wed Jan 27 2010 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 1.8.6.388-8
121925
- Backport openssl/digest functions providing digest and hexdigest functions
121925
  directly in OpenSSL::Digest.methods
121925
- Make sure that Red Hat people version their changelog entries
121925
- This is actually release #1, but now needs to be release #7
121925
121925
* Mon Jan 18 2010 Akira TAGOH <tagoh@redhat.com> - 1.8.6.388-1
121925
- Add conditional for RHEL.
121925
121925
* Wed Jan 13 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-6
121925
- CVE-2009-4492 ruby WEBrick log escape sequence (bug 554485)
121925
121925
* Wed Dec  9 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-5
121925
- Change mkmf.rb to use LIBRUBYARG_SHARED so that have_library() works
121925
  without libruby-static.a (bug 428384)
121925
- And move libruby-static.a to -static subpackage
121925
121925
* Thu Oct 29 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-4
121925
- Use bison to regenerate parse.c to keep the original format of error
121925
  messages (bug 530275 comment 4)
121925
121925
* Sun Oct 25 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-3
121925
- Patch so that irb saves its history (bug 518584, ruby issue 1556)
121925
121925
* Sat Oct 24 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.383-2
121925
- Update to 1.8.6 patchlevel 383 (bug 520063)
121925
121925
* Wed Oct 14 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.369-5
121925
- Much better idea for Patch31 provided by Akira TAGOH <tagoh@redhat.com>
121925
121925
* Wed Oct 14 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.369-4
121925
- Fix the search path of ri command for ri manuals installed with gem
121925
  (bug 528787)
121925
121925
* Wed Aug 26 2009 Tomas Mraz <tmraz@redhat.com> - 1.8.6.369-3
121925
- Rebuild against new openssl
121925
121925
* Thu Jul 23 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.369-2
121925
- Make sure that readline.so is linked against readline 5 because
121925
  Ruby is under GPLv2
121925
121925
* Sat Jun 20 2009  Jeroen van Meeuwen <kanarip@fedoraproject.org> - 1.8.6.369-1
121925
- New patchlevel fixing CVE-2009-1904
121925
- Fix directory on ARM (#506233, Kedar Sovani)
121925
121925
* Sun May 31 2009 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 1.8.6.368-1
121925
- New upstream release (p368)
121925
121925
* Sat Apr 11 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.287-8
121925
- Merge Review fix (#226381)
121925
121925
* Wed Mar 18 2009 Jeroen van Meeuwen <j.van.meeuwen@ogd.nl> - 1.8.6.287-7
121925
- Fix regression in CVE-2008-3790 (#485383)
121925
121925
* Mon Mar 16 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.8.6.287-6
121925
- Again use -O2 optimization level
121925
- i586 should search i386-linux directory (on <= F-11)
121925
121925
* Thu Mar 05 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 1.8.6.287-5
121925
- Rebuild for gcc4.4
121925
121925
* Fri Feb 27 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 1.8.6.287-3
121925
- CVE-2008-5189: CGI header injection.
121925
121925
* Wed Oct  8 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.287-2
121925
- CVE-2008-3790: DoS vulnerability in the REXML module.
121925
121925
* Sat Aug 23 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.287-1
121925
- New upstream release.
121925
- Security fixes.
121925
  - CVE-2008-3655: Ruby does not properly restrict access to critical
121925
                   variables and methods at various safe levels.
121925
  - CVE-2008-3656: DoS vulnerability in WEBrick.
121925
  - CVE-2008-3657: Lack of taintness check in dl.
121925
  - CVE-2008-1447: DNS spoofing vulnerability in resolv.rb.
121925
  - CVE-2008-3443: Memory allocation failure in Ruby regex engine.
121925
- Remove the unnecessary backported patches.
121925
121925
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.8.6.230-5
121925
- rebuild against db4-4.7
121925
121925
* Tue Jul  1 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-4
121925
- Backported from upstream SVN to fix a segfault issue with Array#fill.
121925
121925
* Mon Jun 30 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-3
121925
- Backported from upstream SVN to fix a segfault issue. (#452825)
121925
- Backported from upstream SVN to fix an integer overflow in rb_ary_fill.
121925
121925
* Wed Jun 25 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-2
121925
- Fix a segfault issue. (#452810)
121925
121925
* Tue Jun 24 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.230-1
121925
- New upstream release.
121925
- Security fixes. (#452295)
121925
  - CVE-2008-1891: WEBrick CGI source disclosure.
121925
  - CVE-2008-2662: Integer overflow in rb_str_buf_append().
121925
  - CVE-2008-2663: Integer overflow in rb_ary_store().
121925
  - CVE-2008-2664: Unsafe use of alloca in rb_str_format().
121925
  - CVE-2008-2725: Integer overflow in rb_ary_splice().
121925
  - CVE-2008-2726: Integer overflow in rb_ary_splice().
121925
- ruby-1.8.6.111-CVE-2007-5162.patch: removed.
121925
- Build ruby-mode package for all archtectures.
121925
121925
* Tue Mar  4 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.114-1
121925
- Security fix for CVE-2008-1145.
121925
- Improve a spec file. (#226381)
121925
  - Correct License tag.
121925
  - Fix a timestamp issue.
121925
  - Own a arch-specific directory.
121925
121925
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.8.6.111-9
121925
- Autorebuild for GCC 4.3
121925
121925
* Tue Feb 19 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-8
121925
- Rebuild for gcc-4.3.
121925
121925
* Tue Jan 15 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-7
121925
- Revert the change of libruby-static.a. (#428384)
121925
121925
* Fri Jan 11 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-6
121925
- Fix an unnecessary replacement for shebang. (#426835)
121925
121925
* Fri Jan  4 2008 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-5
121925
- Rebuild.
121925
121925
* Fri Dec 28 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-4
121925
- Clean up again.
121925
121925
* Fri Dec 21 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-3
121925
- Clean up the spec file.
121925
- Remove ruby-man-1.4.6 stuff. this is entirely the out-dated document.
121925
  this could be replaced by ri.
121925
- Disable the static library building.
121925
121925
* Tue Dec 04 2007 Release Engineering <rel-eng at fedoraproject dot org> - 1.8.6.111-2
121925
 - Rebuild for openssl bump
121925
121925
* Wed Oct 31 2007 Akira TAGOH <tagoh@redhat.com>
121925
- Fix the dead link.
121925
121925
* Mon Oct 29 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.111-1
121925
- New upstream release.
121925
- ruby-1.8.6.111-CVE-2007-5162.patch: Update a bit with backporting the changes
121925
   at trunk to enable the fix without any modifications on the users' scripts.
121925
   Note that Net::HTTP#enable_post_connection_check isn't available anymore.
121925
   If you want to disable this post-check, you should give OpenSSL::SSL::VERIFY_NONE
121925
   to Net::HTTP#verify_mode= instead of.
121925
121925
* Mon Oct 15 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.110-2
121925
- Enable pthread support for ppc too. (#201452)
121925
- Fix unexpected dependencies appears in ruby-libs. (#253325)
121925
121925
* Wed Oct 10 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.110-1
121925
- New upstream release.
121925
  - ruby-r12567.patch: removed.
121925
- ruby-1.8.6-CVE-2007-5162.patch: security fix for Net::HTTP that is
121925
  insufficient verification of SSL certificate.
121925
121925
* Thu Aug 23 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.36-4
121925
- Rebuild
121925
121925
* Fri Aug 10 2007 Akira TAGOH <tagoh@redhat.com>
121925
- Update License tag.
121925
121925
* Mon Jun 25 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.36-3
121925
- ruby-r12567.patch: backport patch from upstream svn to get rid of
121925
  the unnecessary declarations. (#245446)
121925
121925
* Wed Jun 20 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6.36-2
121925
- New upstream release.
121925
  - Fix Etc::getgrgid to get the correct gid as requested. (#236647)
121925
121925
* Wed Mar 28 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6-2
121925
- Fix search path breakage. (#234029)
121925
121925
* Thu Mar 15 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.6-1
121925
- New upstream release.
121925
- clean up a spec file.
121925
121925
* Tue Feb 13 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.5.12-2
121925
- Rebuild
121925
121925
* Mon Feb  5 2007 Akira TAGOH <tagoh@redhat.com> - 1.8.5.12-1
121925
- New upstream release.
121925
121925
* Mon Dec 11 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5.2-1
121925
- security fix release.
121925
121925
* Fri Oct 27 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5-4
121925
- security fix release.
121925
- ruby-1.8.5-cgi-CVE-2006-5467.patch: fix a CGI multipart parsing bug that
121925
  causes the denial of service. (#212396)
121925
121925
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.8.5-3
121925
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
121925
121925
* Tue Sep 26 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5-2
121925
- fixed rbconfig.rb to refer to DESTDIR for sitearchdir. (#207311)
121925
121925
* Mon Aug 28 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.5-1
121925
- New upstream release.
121925
- removed the unnecessary patches:
121925
  - ruby-1.8.4-no-eaccess.patch
121925
  - ruby-1.8.4-64bit-pack.patch
121925
  - ruby-1.8.4-fix-insecure-dir-operation.patch
121925
  - ruby-1.8.4-fix-insecure-regexp-modification.patch
121925
  - ruby-1.8.4-fix-alias-safe-level.patch
121925
- build with --enable-pthread except on ppc.
121925
- ruby-1.8.5-hash-memory-leak.patch: backported from CVS to fix a memory leak
121925
  on Hash. [ruby-talk:211233]
121925
121925
* Mon Aug  7 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-12
121925
- owns sitearchdir. (#201208)
121925
121925
* Thu Jul 20 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-11
121925
- security fixes [CVE-2006-3694]
121925
  - ruby-1.8.4-fix-insecure-dir-operation.patch:
121925
  - ruby-1.8.4-fix-insecure-regexp-modification.patch: fixed the insecure
121925
    operations in the certain safe-level restrictions. (#199538)
121925
  - ruby-1.8.4-fix-alias-safe-level.patch: fixed to not bypass the certain
121925
    safe-level restrictions. (#199543)
121925
121925
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.8.4-10.fc6.1
121925
- rebuild
121925
121925
* Mon Jun 19 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-10
121925
- fixed the wrong file list again. moved tcltk library into ruby-tcltk.
121925
  (#195872)
121925
121925
* Thu Jun  8 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-8
121925
- ruby-deprecated-sitelib-search-path.patch: correct the order of search path.
121925
121925
* Wed Jun  7 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-7
121925
- exclude ppc64 to make ruby-mode package. right now emacs.ppc64 isn't provided
121925
  and buildsys became much stricter.
121925
- ruby-deprecated-sitelib-search-path.patch: applied to add more search path
121925
  for backward compatiblity.
121925
- added byacc to BuildReq. (#194161)
121925
121925
* Wed May 17 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-6
121925
- ruby-deprecated-search-path.patch: added the deprecated installation paths
121925
  to the search path for the backward compatibility.
121925
- added a Provides: ruby(abi) to ruby-libs.
121925
- ruby-1.8.4-64bit-pack.patch: backport patch from upstream to fix unpack("l")
121925
  not working on 64bit arch and integer overflow on template "w". (#189350)
121925
- updated License tag to be more comfortable, and with a pointer to get more
121925
  details, like Python package does. (#179933)
121925
- clean up.
121925
121925
* Wed Apr 19 2006 Akira TAGOH <tagoh@redhat.com>
121925
- ruby-rubyprefix.patch: moved all arch-independent modules under /usr/lib/ruby
121925
  and keep arch-dependent modules under /usr/lib64/ruby for 64bit archs.
121925
  so 'rubylibdir', 'sitelibdir' and 'sitedir' in Config::CONFIG points to
121925
  the kind of /usr/lib/ruby now. (#184199)
121925
121925
* Mon Apr 17 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-4
121925
- correct sitelibdir. (#184198)
121925
121925
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.8.4-3.2
121925
- bump again for double-long bug on ppc(64)
121925
121925
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.8.4-3.1
121925
- rebuilt for new gcc4.1 snapshot and glibc changes
121925
121925
* Mon Feb  6 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-3
121925
- ruby-1.8.4-no-eaccess.patch: backported from ruby CVS to avoid conflict
121925
  between newer glibc. (#179835)
121925
121925
* Wed Jan  4 2006 Akira TAGOH <tagoh@redhat.com> - 1.8.4-2
121925
- ruby-tcltk-multilib.patch: fixed a typo.
121925
121925
* Tue Dec 27 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-1
121925
- New upstream release.
121925
  - fixed a missing return statement. (#140833)
121925
  - fixed an use of uninitialized variable. (#144890)
121925
121925
* Fri Dec 16 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.4.preview2
121925
- updates to 1.8.4-preview2.
121925
- renamed the packages to ruby-* (#175765)
121925
  - irb  -> ruby-irb
121925
  - rdoc -> ruby-rdoc
121925
  - ri   -> ruby-ri
121925
- added tcl-devel and tk-devel into BuildRequires.
121925
121925
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
121925
- rebuilt
121925
121925
* Thu Nov 10 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.3.preview1
121925
- rebuilt against the latest openssl.
121925
121925
* Tue Nov  1 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.2.preview1
121925
- build-deps libX11-devel instead of xorg-x11-devel.
121925
121925
* Mon Oct 31 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.4-0.1.preview1
121925
- New upstream release.
121925
- ruby-1.8.2-strscan-memset.patch: removed because it's no longer needed.
121925
121925
* Tue Oct  4 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-4
121925
- moved the documents from ruby-libs to ruby-docs, which contains the arch
121925
  specific thing and to be multilib support. (#168826)
121925
121925
* Mon Oct  3 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-3
121925
- fixed the wrong file list. the external library for tcl/tk was included
121925
  in ruby-libs unexpectedly.
121925
121925
* Mon Sep 26 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-2
121925
- ruby-multilib.patch: added another chunk for multilib. (#169127)
121925
121925
* Wed Sep 21 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-1
121925
- New upstream release.
121925
- Build-Requires xorg-x11-devel instead of XFree86-devel.
121925
- ruby-multilib.patch: applied for only 64-bit archs.
121925
- ruby-1.8.2-xmlrpc-CAN-2005-1992.patch: removed. it has already been in upstream.
121925
121925
* Tue Jun 21 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-9
121925
- ruby-1.8.2-xmlrpc-CAN-2005-1992.patch: fixed the arbitrary command execution
121925
  on XMLRPC server. (#161096)
121925
121925
* Thu Jun 16 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-8
121925
- ruby-1.8.2-tcltk-multilib.patch: applied to get tcltklib.so built. (#160194)
121925
121925
* Thu Apr  7 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-7
121925
- ruby-1.8.2-deadcode.patch: removed the dead code from the source. (#146108)
121925
- make sure that all documentation files in ruby-docs are the world-
121925
  readable. (#147279)
121925
121925
* Tue Mar 22 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-6
121925
- ruby-1.8.2-strscan-memset.patch: fixed an wrong usage of memset(3).
121925
121925
* Tue Mar 15 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-5
121925
- rebuilt
121925
121925
* Tue Jan 25 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-4
121925
- fixed the wrong generation of file manifest. (#146055)
121925
- spec file clean up.
121925
121925
* Mon Jan 24 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-3
121925
- separated out to rdoc package.
121925
- make the dependency of irb for rdoc. (#144708)
121925
121925
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> - 1.8.2-2
121925
- Rebuilt for new readline.
121925
121925
* Wed Jan  5 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.2-1
121925
- New upstream release.
121925
- ruby-1.8.1-ia64-stack-limit.patch: removed - it's no longer needed.
121925
- ruby-1.8.1-cgi_session_perms.patch: likewise.
121925
- ruby-1.8.1-cgi-dos.patch: likewise.
121925
- generated Ruby interactive documentation - senarated package.
121925
  it's now provided as ri package. (#141806)
121925
121925
* Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 1.8.1-10
121925
- rebuild against db-4.3.21.
121925
121925
* Wed Nov 10 2004 Akira TAGOH <tagoh@redhat.com> - 1.8.1-9
121925
- ruby-1.8.1-cgi-dos.patch: security fix [CAN-2004-0983]
121925
- ruby-1.8.1-cgi_session_perms.patch: security fix [CAN-2004-0755]
121925
121925
* Fri Oct 29 2004 Akira TAGOH <tagoh@redhat.com> - 1.8.1-8
121925
- added openssl-devel and db4-devel into BuildRequires (#137479)
121925
121925
* Wed Oct  6 2004 Akira TAGOH <tagoh@redhat.com> - 1.8.1-7
121925
- require emacs-common instead of emacs.
121925
121925
* Wed Jun 23 2004 Akira TAGOH <tagoh@redhat.com> 1.8.1-4
121925
- updated the documentation.
121925
121925
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
121925
- rebuilt
121925
121925
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
121925
- rebuilt
121925
121925
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
121925
- rebuilt
121925
121925
* Wed Feb 04 2004 Akira TAGOH <tagoh@redhat.com> 1.8.1-1
121925
- New upstream release.
121925
- don't use any optimization for ia64 to avoid the build failure.
121925
- ruby-1.8.1-ia64-stack-limit.patch: applied to fix SystemStackError when the optimization is disabled.
121925
121925
* Sat Dec 13 2003 Jeff Johnson <jbj@jbj.org> 1.8.0-3
121925
- rebuild against db-4.2.52.
121925
121925
* Thu Sep 25 2003 Jeff Johnson <jbj@jbj.org> 1.8.0-2
121925
- rebuild against db-4.2.42.
121925
121925
* Tue Aug  5 2003 Akira TAGOH <tagoh@redhat.com> 1.8.0-1
121925
- New upstream release.
121925
121925
* Thu Jul 24 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-9.1
121925
- rebuilt
121925
121925
* Thu Jul 24 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-9
121925
- ruby-1.6.8-castnode.patch: handling the nodes with correct cast.
121925
  use this patch now instead of ruby-1.6.8-fix-x86_64.patch.
121925
121925
* Fri Jul 04 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-8
121925
- rebuilt
121925
121925
* Fri Jul 04 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-7
121925
- fix the gcc warnings. (#82192)
121925
- ruby-1.6.8-fix-x86_64.patch: correct a patch.
121925
  NOTE: DON'T USE THIS PATCH FOR BIG ENDIAN ARCHITECTURE.
121925
- ruby-1.6.7-long2int.patch: removed.
121925
121925
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
121925
- rebuilt
121925
121925
* Fri Feb  7 2003 Jens Petersen <petersen@redhat.com> - 1.6.8-5
121925
- rebuild against ucs4 tcltk
121925
121925
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
121925
- rebuilt
121925
121925
* Wed Jan 22 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-3
121925
- ruby-1.6.8-multilib.patch: applied to fix the search path issue on x86_64
121925
121925
* Tue Jan 21 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-2
121925
- ruby-1.6.8-require.patch: applied to fix the search bug in require.
121925
- don't apply long2int patch to s390 and s390x. it doesn't work.
121925
121925
* Wed Jan 15 2003 Akira TAGOH <tagoh@redhat.com> 1.6.8-1
121925
- New upstream release.
121925
- removed some patches. it's no longer needed.
121925
  - ruby-1.6.7-100.patch
121925
  - ruby-1.6.7-101.patch
121925
  - ruby-1.6.7-102.patch
121925
  - ruby-1.6.7-103.patch
121925
  - 801_extmk.rb-shellwords.patch
121925
  - 801_mkmf.rb-shellwords.patch
121925
  - 804_parse.y-new-bison.patch
121925
  - 805_uri-bugfix.patch
121925
  - ruby-1.6.6-900_XXX_strtod.patch
121925
  - ruby-1.6.7-sux0rs.patch
121925
  - ruby-1.6.7-libobj.patch
121925
121925
* Wed Jan 15 2003 Jens Petersen <petersen@redhat.com> 1.6.7-14
121925
- rebuild to update tcltk deps
121925
121925
* Mon Dec 16 2002 Elliot Lee <sopwith@redhat.com> 1.6.7-13
121925
- Remove ExcludeArch: x86_64
121925
- Fix x86_64 ruby with long2int.patch (ruby was assuming that sizeof(long)
121925
  == sizeof(int). The patch does not fix the source of the problem, just
121925
  makes it a non-issue.)
121925
- _smp_mflags
121925
121925
* Tue Dec 10 2002 Tim Powers <timp@redhat.com> 1.6.7-12
121925
- rebuild to fix broken tcltk deps
121925
121925
* Tue Oct 22 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-11
121925
- use %%configure macro instead of configure script.
121925
- use the latest config.{sub,guess}.
121925
- get archname from rbconfig.rb for %%dir
121925
- applied some patches from Debian:
121925
  - 801_extmk.rb-shellwords.patch: use Shellwords
121925
  - 801_mkmf.rb-shellwords.patch: mkmf.rb creates bad Makefile. the Makefile
121925
    links libruby.a to the target.
121925
  - 803_sample-fix-shbang.patch: all sample codes should be
121925
    s|/usr/local/bin|/usr/bin|g
121925
  - 804_parse.y-new-bison.patch: fix syntax warning.
121925
  - 805_uri-bugfix.patch: uri.rb could not handle correctly broken mailto-uri.
121925
- add ExcludeArch x86_64 temporarily to fix Bug#74581. Right now ruby can't be
121925
  built on x86_64.
121925
121925
* Tue Aug 27 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-10
121925
- moved sitedir to /usr/lib/ruby/site_ruby again according as our perl and
121925
  python.
121925
- ruby-1.6.7-resolv1.patch, ruby-1.6.7-resolv2.patch: applied to fix 'Too many
121925
  open files - "/etc/resolv.conf"' issue. (Bug#64830)
121925
121925
* Thu Jul 18 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-9
121925
- add the owned directory.
121925
121925
* Fri Jul 12 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-8
121925
- fix typo.
121925
121925
* Thu Jul 04 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-7
121925
- removed the ruby-mode-xemacs because it's merged to the xemacs sumo.
121925
121925
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
121925
- automated rebuild
121925
121925
* Wed Jun 19 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-5
121925
- fix the stripped binary.
121925
- use the appropriate macros.
121925
121925
* Sun May 26 2002 Tim Powers <timp@redhat.com>
121925
- automated rebuild
121925
121925
* Thu May 23 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-3
121925
- ruby-1.6.7-libobj.patch: applied to fix autoconf2.53 error.
121925
121925
* Mon Mar 18 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-2
121925
- ruby-man-1.4.6-jp.tar.bz2: removed.
121925
- ruby-refm-rdp-1.4.7-ja-html.tar.bz2: uses it instead of.
121925
- ruby-1.6.7-500-marshal-proc.patch, ruby-1.6.7-501-class-var.patch:
121925
  removed.
121925
- ruby-1.6.7-100.patch: applied a bug fix patch.
121925
  (ruby-dev#16274: patch for 'wm state')
121925
  (PR#206ja: SEGV handle EXIT)
121925
- ruby-1.6.7-101.patch: applied a bug fix patch.
121925
  (ruby-list#34313: singleton should not be Marshal.dump'ed)
121925
  (ruby-dev#16411: block local var)
121925
- ruby-1.6.7-102.patch: applied a bug fix patch.
121925
  (handling multibyte chars is partially broken)
121925
- ruby-1.6.7-103.patch: applied a bug fix patch.
121925
  (ruby-dev#16462: preserve reference for GC, but link should be cut)
121925
121925
* Fri Mar  8 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-1
121925
- New upstream release.
121925
- ruby-1.6.6-100.patch, ruby-1.6.6-501-ruby-mode.patch:
121925
  removed. these patches no longer should be needed.
121925
- ruby-1.6.7-500-marshal-proc.patch: applied a fix patch.
121925
  (ruby-dev#16178: Marshal::dump should call Proc#call.)
121925
- ruby-1.6.7-501-class-var.patch: applied a fix patch.
121925
  (ruby-talk#35157: class vars broken in 1.6.7)
121925
121925
* Wed Feb 27 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-5
121925
- Disable alpha because nothing is xemacs for alpha now.
121925
121925
* Tue Feb  5 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-3
121925
- Fixed the duplicate files.
121925
121925
* Tue Feb  5 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-2
121925
- Fixed the missing %%defattr
121925
121925
* Fri Feb  1 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-1
121925
- New upstream release.
121925
- Applied bug fix patches:
121925
  - ruby-1.6.6-501-ruby-mode.patch: ruby-talk#30479: disables font-lock
121925
    coloring.
121925
  - ruby-1.6.6-100.patch: ruby-talk#30203: Ruby 1.6.6 bug and fix
121925
                          ruby-list#33047: regex bug
121925
                          PR#230: problem with -d in 1.6.6
121925
- Added ruby-mode and ruby-mode-xemacs packages.
121925
- Ruby works fine for ia64. so re-enable to build with ia64.
121925
  (probably it should be worked for alpha)
121925
121925
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
121925
- automated rebuild
121925
121925
* Thu Jul 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.6.4-2
121925
- Remove Japanese description and summaries; they belong in specspo and
121925
  break rpm
121925
- Clean up specfile
121925
- Mark language specific files (README.jp) as such
121925
- bzip2 sources
121925
- rename the libruby package to ruby-libs for consistency
121925
- Exclude ia64 (doesn't build - the code doesn't seem to be 64-bit clean
121925
  [has been excluded on alpha forever])
121925
121925
* Tue Jul 17 2001 Akira TAGOH <tagoh@redhat.com> 1.6.4-1
121925
- rebuild for Red Hat 7.2
121925
121925
* Mon Jun 04 2001 akira yamada <akira@vinelinux.org>
121925
- upgrade to nwe upstream version 1.6.4.
121925
121925
* Mon Apr 02 2001 akira yamada <akira@vinelinux.org>
121925
- applied patch:
121925
  - fixed method cache bug. etc. (Patch103, Patch104)
121925
121925
* Tue Mar 27 2001 akira yamada <akira@vinelinux.org>
121925
- applied patch:
121925
  - fixed marshal for bignum bug.
121925
  - fixed scope of constant variables bug.
121925
121925
* Tue Mar 20 2001 akira yamada <akira@vinelinux.org>
121925
- upgraded to new upstream version 1.6.3.
121925
121925
* Fri Feb 09 2001 akira yamada <akira@vinelinux.org>
121925
- fixed bad group for libruby.
121925
- Applied patch: upgraded to cvs version (2001-02-08):
121925
  fixed minor bugs.
121925
121925
* Thu Jan 18 2001 akira yamada <akira@vinelinux.org>
121925
- Applied patch: upgraded to cvs version (2001-01-15):
121925
  fixed minor bugs(e.g. ruby makes extention librares too large...).
121925
121925
* Wed Jan 10 2001 akira yamada <akira@vinelinux.org>
121925
- Applied patch: upgraded to cvs version (2001-01-09):
121925
  fixed minor bugs.
121925
121925
* Sat Dec 30 2000 akira yamada <akira@vinelinux.org>
121925
- Applied bug fix patch.
121925
121925
* Mon Dec 25 2000 akira yamada <akira@vinelinux.org>
121925
- Updated to new upstream version 1.6.2.
121925
121925
* Fri Dec 22 2000 akira yamada <akira@vinelinux.org>
121925
- Removed ruby_cvs.2000122019.patch, added ruby_cvs.2000122215.patch
121925
  (upgraded ruby to latest cvs version, 1.6.2-preview4).
121925
121925
* Wed Dec 20 2000 akira yamada <akira@vinelinux.org>
121925
- Removed ruby_cvs.2000121413.patch, added ruby_cvs.2000122019.patch
121925
  (upgraded ruby to latest cvs version).
121925
- new package: libruby
121925
121925
* Thu Dec 14 2000 akira yamada <akira@vinelinux.org>
121925
- Removed ruby_cvs.2000101901.patch, added ruby_cvs.2000121413.patch
121925
  (upgraded ruby to latest cvs version).
121925
- Removed ruby-dev.11262.patch, ruby-dev.11265.patch,
121925
  and ruby-dev.11268.patch (included into above patch).
121925
121925
* Sun Nov 12 2000 MACHINO, Satoshi <machino@vinelinux.org> 1.6.1-0vl9
121925
- build on gcc-2.95.3
121925
121925
* Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
121925
- Added ruby-dev.11268.patch.
121925
121925
* Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
121925
- Removed ruby_cvs.2000101117.patch and added ruby_cvs.2000101901.patch
121925
  (upgraded ruby to latest cvs version).
121925
- Added ruby-dev.11262.patch.
121925
- Added ruby-dev.11265.patch.
121925
121925
* Wed Oct 11 2000 akira yamada <akira@vinelinux.org>
121925
- Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000101117.patch
121925
  (upgraded ruby to latest cvs version).
121925
121925
* Mon Oct 09 2000 akira yamada <akira@vinelinux.org>
121925
- Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000100313.patch
121925
  (upgraded ruby to latest cvs version).
121925
121925
* Tue Oct 03 2000 akira yamada <akira@vinelinux.org>
121925
- Removed ruby_cvs.2000100218.patch and added ruby_cvs.2000100313.patch
121925
  (upgraded ruby to latest cvs version).
121925
121925
* Mon Oct 02 2000 akira yamada <akira@vinelinux.org>
121925
- Removed ruby_cvs.2000092718.patch and added ruby_cvs.2000100218.patch
121925
  (upgraded ruby to latest cvs version).
121925
121925
* Wed Sep 27 2000 akira yamada <akira@vinelinux.org>
121925
- Updated to upstream version 1.6.1.
121925
- Removed ruby_cvs.2000082901.patch and added ruby_cvs.2000092718.patch
121925
  (upgraded ruby to latest cvs version).
121925
121925
* Tue Aug 29 2000 akira yamada <akira@redhat.com>
121925
- Updated to version 1.4.6.
121925
- removed ruby-dev.10123.patch(included into ruby-1.4.6).
121925
- Added ruby_cvs.2000082901.patch(upgraded ruby to latest cvs version).
121925
121925
* Tue Jun 27 2000 akira yamada <akira@redhat.com>
121925
- Updated manuals to version 1.4.5.
121925
121925
* Sun Jun 25 2000 akira yamada <akira@redhat.com>
121925
- Added ruby-dev.10123.patch.
121925
121925
* Sat Jun 24 2000 akira yamada <akira@redhat.com>
121925
- Updated to version 1.4.5.
121925
- Removed ruby_cvs.2000062401.patch(included into ruby-1.4.5).
121925
121925
* Thu Jun 22 2000 akira yamada <akira@redhat.com>
121925
- Updated to version 1.4.4(06/22/2000 CVS).
121925
- Removed ruby-dev.10054.patch(included into ruby_cvs.patch).
121925
121925
* Thu Jun 22 2000 akira yamada <akira@redhat.com>
121925
- Renamed to ruby_cvs20000620.patch from ruby_cvs.patch.
121925
121925
* Tue Jun 20 2000 akira yamada <akira@redhat.com>
121925
- Updated to version 1.4.4(06/20/2000 CVS).
121925
- Removed ruby-list.23190.patch(included into ruby_cvs.patch).
121925
- Added ruby-dev.10054.patch.
121925
121925
* Thu Jun 15 2000 akira yamada <akira@redhat.com>
121925
- Updated to version 1.4.4(06/12/2000 CVS).
121925
- Added manuals and FAQs.
121925
- Split into ruby, ruby-devel, ruby-tcltk, ruby-docs, irb.
121925
121925
* Tue Jun 13 2000 Mitsuo Hamada <mhamada@redhat.com>
121925
- Updated to version 1.4.4
121925
121925
* Wed Dec 08 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
121925
- Updated to version 1.4.3
121925
121925
* Mon Sep 20 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
121925
- Updated to version 1.4.2 (Sep 18)
121925
121925
* Fri Sep 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
121925
- Updated to version 1.4.2
121925
121925
* Tue Aug 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
121925
- Updated to version 1.4.0
121925
121925
* Fri Jul 23 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
121925
- 2nd release
121925
- Updated to version 1.2.6(15 Jul 1999)
121925
- striped %%{prefix}/bin/ruby
121925
121925
* Mon Jun 28 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
121925
- Updated to version 1.2.6(21 Jun 1999)
121925
121925
* Wed Apr 14 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
121925
- Updated to version 1.2.5
121925
121925
* Fri Apr 09 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
121925
- Updated to version 1.2.4
121925
121925
* Fri Dec 25 1998 Toru Hoshina <hoshina@best.com>
121925
- Version up to 1.2 stable.
121925
121925
* Fri Nov 27 1998 Toru Hoshina <hoshina@best.com>
121925
- Version up to 1.1c9.
121925
121925
* Thu Nov 19 1998 Toru Hoshina <hoshina@best.com>
121925
- Version up to 1.1c8, however it appear short life :-P
121925
121925
* Fri Nov 13 1998 Toru Hoshina <hoshina@best.com>
121925
- Version up.
121925
121925
* Tue Sep 22 1998 Toru Hoshina <hoshina@best.com>
121925
- To make a libruby.so.
121925
121925
* Mon Sep 21 1998 Toru Hoshina <hoshina@best.com>
121925
- Modified SPEC in order to install libruby.a so that it should be used by
121925
  another ruby entention.
121925
- 2nd release.
121925
121925
* Mon Mar 9 1998 Shoichi OZAWA <shoch@jsdi.or.jp>
121925
- Added a powerPC arch part. Thanks, MURATA Nobuhiro <nob@makioka.y-min.or.jp>