2.6.0 rc4
This commit is contained in:
parent
d92004717e
commit
2cb9d42d20
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/rspec-expectations-2.5.0.gem
|
/rspec-expectations-2.5.0.gem
|
||||||
|
/rspec-expectations-2.6.0.rc4.gem
|
||||||
|
@ -1,6 +1,13 @@
|
|||||||
%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
|
%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
|
||||||
|
%global majorver 2.6.0
|
||||||
|
%global preminorver .rc4
|
||||||
|
%global rpmminorver .%(echo %preminorver | sed -e 's|^\\.\\.*||')
|
||||||
|
%global fullver %{majorver}%{?preminorver}
|
||||||
|
|
||||||
|
%global fedorarel 1
|
||||||
|
|
||||||
%global gemname rspec-expectations
|
%global gemname rspec-expectations
|
||||||
%global geminstdir %{gemdir}/gems/%{gemname}-%{version}
|
%global geminstdir %{gemdir}/gems/%{gemname}-%{fullver}
|
||||||
|
|
||||||
%global rubyabi 1.8
|
%global rubyabi 1.8
|
||||||
|
|
||||||
@ -8,20 +15,20 @@
|
|||||||
# runtime part of rspec-expectaions does not depend on rspec-core
|
# runtime part of rspec-expectaions does not depend on rspec-core
|
||||||
%global need_bootstrap_set 1
|
%global need_bootstrap_set 1
|
||||||
%if 0%{?fedora} >= 16
|
%if 0%{?fedora} >= 16
|
||||||
%global need_bootstrap_set 0
|
%global need_bootstrap_set 1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%{!?need_bootstrap: %global need_bootstrap %{need_bootstrap_set}}
|
%{!?need_bootstrap: %global need_bootstrap %{need_bootstrap_set}}
|
||||||
|
|
||||||
Summary: Rspec-2 expectations (should and matchers)
|
Summary: Rspec-2 expectations (should and matchers)
|
||||||
Name: rubygem-%{gemname}
|
Name: rubygem-%{gemname}
|
||||||
Version: 2.5.0
|
Version: %{majorver}
|
||||||
Release: 3%{?dist}
|
Release: %{?preminorver:0.}%{fedorarel}%{?preminorver:%{rpmminorver}}%{?dist}
|
||||||
|
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://github.com/rspec/rspec-expectations
|
URL: http://github.com/rspec/rspec-expectations
|
||||||
Source0: http://rubygems.org/gems/%{gemname}-%{version}.gem
|
Source0: http://rubygems.org/gems/%{gemname}-%{fullver}.gem
|
||||||
|
|
||||||
BuildRequires: ruby(abi) = %{rubyabi}
|
BuildRequires: ruby(abi) = %{rubyabi}
|
||||||
BuildRequires: rubygems
|
BuildRequires: rubygems
|
||||||
@ -58,7 +65,7 @@ gem install \
|
|||||||
--rdoc \
|
--rdoc \
|
||||||
%{SOURCE0}
|
%{SOURCE0}
|
||||||
|
|
||||||
chmod 0644 .%{gemdir}/cache/%{gemname}-%{version}.gem
|
chmod 0644 .%{gemdir}/cache/%{gemname}-%{fullver}.gem
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
@ -67,7 +74,7 @@ mkdir -p %{buildroot}%{gemdir}
|
|||||||
cp -a .%{gemdir}/* %{buildroot}%{gemdir}/
|
cp -a .%{gemdir}/* %{buildroot}%{gemdir}/
|
||||||
|
|
||||||
# cleanups
|
# cleanups
|
||||||
rm -f %{buildroot}%{geminstdir}/{.document,.gitignore}
|
rm -f %{buildroot}%{geminstdir}/{.document,.gitignore,.travis.yml}
|
||||||
|
|
||||||
%if 0%{?need_bootstrap} < 1
|
%if 0%{?need_bootstrap} < 1
|
||||||
%check
|
%check
|
||||||
@ -84,13 +91,13 @@ popd
|
|||||||
%doc %{geminstdir}/*.md
|
%doc %{geminstdir}/*.md
|
||||||
%{geminstdir}/lib/
|
%{geminstdir}/lib/
|
||||||
|
|
||||||
%{gemdir}/cache/%{gemname}-%{version}.gem
|
%{gemdir}/cache/%{gemname}-%{fullver}.gem
|
||||||
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
|
%{gemdir}/specifications/%{gemname}-%{fullver}.gemspec
|
||||||
|
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{gemdir}/doc/%{gemname}-%{version}
|
%{gemdir}/doc/%{gemname}-%{fullver}
|
||||||
%{geminstdir}/Gemfile
|
%{geminstdir}/Gemfile
|
||||||
%{geminstdir}/Guardfile
|
%{geminstdir}/Guardfile
|
||||||
%{geminstdir}/Rakefile
|
%{geminstdir}/Rakefile
|
||||||
@ -101,6 +108,9 @@ popd
|
|||||||
%{geminstdir}/spec/
|
%{geminstdir}/spec/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue May 3 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.6.0-0.1.rc4
|
||||||
|
- 2.6.0 rc4
|
||||||
|
|
||||||
* Sat Feb 26 2011 Mamoru Tasaka <mtasaka@fedoraproject.org>
|
* Sat Feb 26 2011 Mamoru Tasaka <mtasaka@fedoraproject.org>
|
||||||
- And enable check on rawhide
|
- And enable check on rawhide
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user