Merge remote-tracking branch 'origin/master' into f17

This commit is contained in:
Mamoru Tasaka 2013-01-20 01:47:49 +09:00
commit effa5c1162
5 changed files with 70 additions and 50 deletions

View file

@ -1,7 +1,7 @@
%global major_version 1
%global minor_version 9
%global teeny_version 3
%global patch_level 362
%global patch_level 374
%global major_minor_version %{major_version}.%{minor_version}
@ -56,7 +56,7 @@ Version: %{ruby_version_patch_level}
# we cannot reset the release number to 1 even when the main (ruby) version
# is updated - because it may be that the versions of sub-components don't
# change.
Release: 25%{?dist}
Release: 27%{?dist}
Group: Development/Languages
# Public Domain for example for: include/ruby/st.h, strftime.c, ...
License: (Ruby or BSD) and Public Domain
@ -103,7 +103,11 @@ Patch12: ruby-1.9.3-mkmf-verbose.patch
# http://bugs.ruby-lang.org/issues/7629
# https://bugzilla.redhat.com/show_bug.cgi?id=895173
# save the proc made from the given block
Patch13: ruby-1.9.3-p327-PR7629-save-proc.patch
# Fixed in p374
#Patch13: ruby-1.9.3-p327-PR7629-save-proc.patch
# Fixes issues mentioned in rhbz#789532, comment 8.
# TODO: Should be probably upstreamed with #5281.
Patch14: ruby-2.0.0-Expand-ruby.pc-variable-by-configuration-process.patch
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
Requires: ruby(rubygems) >= %{rubygems_version}
@ -116,7 +120,11 @@ Requires: rubygem(bigdecimal) >= %{bigdecimal_version}
BuildRequires: autoconf
BuildRequires: gdbm-devel
BuildRequires: ncurses-devel
%if 0%{?fedora} >= 19
BuildRequires: libdb-devel
%else
BuildRequires: db4-devel
%endif
BuildRequires: libffi-devel
BuildRequires: openssl-devel
BuildRequires: libyaml-devel
@ -346,7 +354,8 @@ Tcl/Tk interface for the object-oriented scripting language Ruby.
%patch10 -p1
#%%patch11 -p1
%patch12 -p1
%patch13 -p1
#%%patch13 -p1
%patch14 -p1
%build
autoconf
@ -360,6 +369,7 @@ autoconf
--with-vendorarchdir='%{ruby_vendorarchdir}' \
--with-rubyhdrdir='%{_includedir}' \
--with-rubygemsdir='%{rubygems_dir}' \
--with-ruby_pc='%{name}.pc' \
--disable-rpath \
--enable-shared \
--disable-versioned-paths
@ -373,6 +383,11 @@ make %{?_smp_mflags} COPY="cp -p" Q=
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
# On F-18 and below, also provide %%{hame}-%%{major_minor_version}.pc
%if 0%{?fedora} <= 18
cp -p %{buildroot}%{_libdir}/pkgconfig/%{name}{,-%{major_minor_version}}.pc
%endif
# Dump the macros into macro.ruby to use them to build other Ruby libraries.
mkdir -p %{buildroot}%{_sysconfdir}/rpm
cat >> %{buildroot}%{_sysconfdir}/rpm/macros.ruby << \EOF
@ -518,7 +533,12 @@ make check TESTS="-v $DISABLE_TESTS"
%{_includedir}/*
%{_libdir}/libruby.so
# TODO
# ruby.pc still needs fixing, see bug 789532 comment 8
%{_libdir}/pkgconfig/ruby.pc
%if 0%{?fedora} <= 18
%{_libdir}/pkgconfig/ruby-%{major_minor_version}.pc
%endif
%files libs
%doc COPYING
@ -758,6 +778,15 @@ make check TESTS="-v $DISABLE_TESTS"
%{ruby_libdir}/tkextlib
%changelog
* Sat Jan 19 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.374-27
- Update to 1.9.3 p374
- Fix provided variables in pkgconfig (bug 789532:
Vít Ondruch <vondruch@redhat.com>)
* Fri Jan 18 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-26
- Provide non-versioned pkgconfig file (bug 789532)
- Use db5 on F-19 (bug 894022)
* Wed Jan 16 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.3.362-25
- Backport fix for the upstream PR7629, save the proc made from the given block
(bug 895173)