- fixed the wrong file list. the external library for tcl/tk was included

in ruby-libs unexpectedly.
This commit is contained in:
Akira TAGOH 2005-10-03 06:36:25 +00:00
parent 1424a6b963
commit f62bb2380a

View File

@ -4,7 +4,7 @@
Name: ruby Name: ruby
Version: 1.8.3 Version: 1.8.3
Release: 2 Release: 3
License: Distributable License: Distributable
URL: http://www.ruby-lang.org/ URL: http://www.ruby-lang.org/
BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRoot: %{_tmppath}/%{name}-%{version}-root
@ -294,11 +294,11 @@ egrep '(\.[ah]|libruby\.so)$' ruby-all.files > ruby-devel.files
# for ruby-tcltk.rpm # for ruby-tcltk.rpm
cp /dev/null ruby-tcltk.files cp /dev/null ruby-tcltk.files
for f in `find %{name}-%{version}/ext/tk/lib -type f; find %{name}-%{version}/ext/tk -type f -name '*.so'` for f in `find %{name}-%{version}/ext/tk/lib -type f; find %{name}-%{version}/.ext/ -type f -name '*.so'`
do do
egrep "tcl|tk" ruby-all.files | grep "/`basename $f`$" >> ruby-tcltk.files || : egrep "tcl|tk" ruby-all.files | grep "/`basename $f`$" >> ruby-tcltk.files || :
done done
for f in `find %{name}-%{version}/ext/tcltklib/lib -type f; find %{name}-%{version}/ext/tcltklib -type f -name '*.so'` for f in `find %{name}-%{version}/ext/tcltklib/lib -type f; find %{name}-%{version}/.ext -type f -name '*.so'`
do do
egrep "tcl|tk" ruby-all.files | grep "/`basename $f`$" >> ruby-tcltk.files || : egrep "tcl|tk" ruby-all.files | grep "/`basename $f`$" >> ruby-tcltk.files || :
done done
@ -414,6 +414,10 @@ rm -rf tmp-ruby-docs
%dir %{_datadir}/emacs/site-lisp/ruby-mode %dir %{_datadir}/emacs/site-lisp/ruby-mode
%changelog %changelog
* Mon Oct 3 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-3
- fixed the wrong file list. the external library for tcl/tk was included
in ruby-libs unexpectedly.
* Mon Sep 26 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-2 * Mon Sep 26 2005 Akira TAGOH <tagoh@redhat.com> - 1.8.3-2
- ruby-multilib.patch: added another chunk for multilib. (#169127) - ruby-multilib.patch: added another chunk for multilib. (#169127)