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