Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
Vít Ondruch
1aee5e42b6 Merge branch 'f18' into f17 2013-04-10 12:17:33 +02:00
Vít Ondruch
21a0726cb1 Add dependency on RubyGems to fix possible SEGFAULT (rhbz#858135). 2013-04-10 12:17:00 +02:00
Vít Ondruch
d7cf1b0fac Merge branch 'f18' into f17 2012-08-22 07:47:16 +02:00
Vít Ondruch
e9a6decd37 Merge branch 'master' into f18 2012-08-22 07:40:10 +02:00

View file

@ -7,7 +7,7 @@
Name: vim-command-t Name: vim-command-t
Version: 1.4 Version: 1.4
Release: 1%{?dist} Release: 4%{?dist}
Summary: An extremely fast, intuitive mechanism for opening files in VIM Summary: An extremely fast, intuitive mechanism for opening files in VIM
Group: Applications/Editors Group: Applications/Editors
License: BSD License: BSD
@ -18,6 +18,12 @@ URL: https://wincent.com/products/command-t
# git archive 1.4 -o command-t-1.4.tar.gz # git archive 1.4 -o command-t-1.4.tar.gz
Source0: command-t-%{version}.tar.gz Source0: command-t-%{version}.tar.gz
Requires: ruby(abi) = %{rubyabi} Requires: ruby(abi) = %{rubyabi}
# Although command-t does not depend on rubygems directly, the RubyGems are
# required by Ruby, but not always (rhbz#845011). So it is necessary to enforce
# the RubyGems dependency, to fix possile SEGFAULT (rhbz#858135). There is
# unfortunately nothing better to do about it, as long as RPM/YUM does not
# support some conditional requires.
Requires: ruby(rubygems)
Requires: vim-common Requires: vim-common
BuildRequires: ruby(abi) = %{rubyabi} BuildRequires: ruby(abi) = %{rubyabi}
BuildRequires: ruby-devel BuildRequires: ruby-devel
@ -95,5 +101,8 @@ vim -c ":helptags %{vimfiles}/doc" -c :q &> /dev/null
%changelog %changelog
* Wed Apr 10 2013 Vít Ondruch <vondruch@redhat.com> - 1.4-4
- Add dependency on RubyGems to fix possible SEGFAULT (rhbz#858135).
* Fri Aug 03 2012 Vít Ondruch <vondruch@redhat.com> - 1.4-1 * Fri Aug 03 2012 Vít Ondruch <vondruch@redhat.com> - 1.4-1
- Initial package. - Initial package.