2013-02-04 03:28:09 +00:00
|
|
|
%global majorver 2.12.2
|
2011-05-15 16:43:43 +00:00
|
|
|
#%%global preminorver .rc6
|
2011-05-03 05:02:28 +00:00
|
|
|
%global rpmminorver .%(echo %preminorver | sed -e 's|^\\.\\.*||')
|
|
|
|
%global fullver %{majorver}%{?preminorver}
|
|
|
|
|
2013-02-24 11:50:21 +00:00
|
|
|
%global fedorarel 2
|
2011-05-03 05:02:28 +00:00
|
|
|
|
2013-01-02 05:56:21 +00:00
|
|
|
%global gem_name rspec-mocks
|
2011-02-25 18:03:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
# %%check section needs rspec-core, however rspec-core depends on rspec-mocks
|
|
|
|
# runtime part of rspec-mocks does not depend on rspec-core
|
2013-02-24 11:50:21 +00:00
|
|
|
%global need_bootstrap_set 0
|
2011-02-25 18:03:25 +00:00
|
|
|
|
|
|
|
%{!?need_bootstrap: %global need_bootstrap %{need_bootstrap_set}}
|
|
|
|
|
|
|
|
Summary: Rspec-2 doubles (mocks and stubs)
|
2013-01-02 05:56:21 +00:00
|
|
|
Name: rubygem-%{gem_name}
|
2011-05-03 05:02:28 +00:00
|
|
|
Version: %{majorver}
|
2013-02-24 11:50:21 +00:00
|
|
|
Release: %{?preminorver:0.}%{fedorarel}%{?preminorver:%{rpmminorver}}%{?dist}
|
2011-02-25 18:03:25 +00:00
|
|
|
|
|
|
|
Group: Development/Languages
|
|
|
|
License: MIT
|
|
|
|
URL: http://github.com/rspec/rspec-mocks
|
2013-01-02 05:56:21 +00:00
|
|
|
Source0: http://rubygems.org/gems/%{gem_name}-%{fullver}.gem
|
2011-02-25 18:03:25 +00:00
|
|
|
|
2013-02-20 08:02:29 +00:00
|
|
|
BuildRequires: ruby(release)
|
2012-01-21 21:38:18 +00:00
|
|
|
BuildRequires: rubygems-devel
|
2011-02-25 18:03:25 +00:00
|
|
|
%if 0%{?need_bootstrap} < 1
|
2012-10-11 09:12:31 +00:00
|
|
|
BuildRequires: rubygem(rspec)
|
2011-02-25 18:03:25 +00:00
|
|
|
%endif
|
2013-02-20 08:02:29 +00:00
|
|
|
Requires: ruby(release)
|
2011-02-25 18:03:25 +00:00
|
|
|
Requires: rubygems
|
2013-01-02 05:56:21 +00:00
|
|
|
Provides: rubygem(%{gem_name}) = %{version}-%{release}
|
2011-02-25 18:03:25 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
rspec-mocks provides a test-double framework for rspec including support
|
|
|
|
for method stubs, fakes, and message expectations.
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
Group: Documentation
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
This package contains documentation for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -c -T
|
|
|
|
|
2013-01-02 05:56:21 +00:00
|
|
|
TOPDIR=$(pwd)
|
|
|
|
mkdir tmpunpackdir
|
|
|
|
pushd tmpunpackdir
|
|
|
|
|
|
|
|
gem unpack %{SOURCE0}
|
|
|
|
cd %{gem_name}-%{version}
|
|
|
|
gem specification -l --ruby %{SOURCE0} > %{gem_name}.gemspec
|
|
|
|
gem build %{gem_name}.gemspec
|
|
|
|
mv %{gem_name}-%{version}.gem $TOPDIR
|
|
|
|
|
|
|
|
popd
|
|
|
|
rm -rf tmpunpackdir
|
|
|
|
|
|
|
|
%build
|
2013-02-20 08:02:29 +00:00
|
|
|
%gem_install
|
2011-02-25 18:03:25 +00:00
|
|
|
|
2013-01-02 05:56:21 +00:00
|
|
|
#chmod 0644 ./%{gem_cache}
|
2011-02-25 18:03:25 +00:00
|
|
|
|
|
|
|
%install
|
2013-01-02 05:56:21 +00:00
|
|
|
mkdir -p %{buildroot}%{gem_dir}
|
|
|
|
cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}/
|
2011-02-25 18:03:25 +00:00
|
|
|
|
|
|
|
# cleanups
|
2013-01-02 05:56:21 +00:00
|
|
|
rm -f %{buildroot}%{gem_instdir}/{.document,.gitignore,.travis.yml,.yardopts}
|
2011-02-25 18:03:25 +00:00
|
|
|
|
|
|
|
%if 0%{?need_bootstrap} < 1
|
|
|
|
%check
|
2013-01-02 05:56:21 +00:00
|
|
|
pushd .%{gem_instdir}
|
2011-02-25 18:03:25 +00:00
|
|
|
ruby -rubygems -Ilib/ -S rspec spec/
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2013-01-02 05:56:21 +00:00
|
|
|
%dir %{gem_instdir}
|
2011-02-25 18:03:25 +00:00
|
|
|
|
2013-01-02 05:56:21 +00:00
|
|
|
%doc %{gem_instdir}/License.txt
|
|
|
|
%doc %{gem_instdir}/*.md
|
|
|
|
%{gem_instdir}/lib/
|
2011-02-25 18:03:25 +00:00
|
|
|
|
2013-01-02 05:56:21 +00:00
|
|
|
%exclude %{gem_cache}
|
|
|
|
%{gem_spec}
|
2011-02-25 18:03:25 +00:00
|
|
|
|
|
|
|
%files doc
|
|
|
|
%defattr(-,root,root,-)
|
2013-01-02 05:56:21 +00:00
|
|
|
%{gem_docdir}
|
|
|
|
%{gem_instdir}/features/
|
|
|
|
%exclude %{gem_instdir}/spec/
|
2011-02-25 18:03:25 +00:00
|
|
|
|
|
|
|
%changelog
|
2013-02-20 08:02:29 +00:00
|
|
|
* Wed Feb 20 2013 Vít Ondruch <vondruch@redhat.com> - 2.12.2-2
|
|
|
|
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
|
|
|
|
|
2013-02-04 03:28:09 +00:00
|
|
|
* Mon Feb 4 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.12.2-1
|
|
|
|
- 2.12.2
|
|
|
|
|
2013-01-02 06:26:50 +00:00
|
|
|
* Wed Jan 2 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.12.1-2
|
|
|
|
- Enable test suite again
|
|
|
|
|
2013-01-02 05:56:21 +00:00
|
|
|
* Wed Jan 2 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.12.1-1
|
|
|
|
- 2.12.1
|
|
|
|
|
2012-10-11 09:12:31 +00:00
|
|
|
* Thu Oct 11 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.11.3-1
|
|
|
|
- 2.11.3
|
|
|
|
|
2012-07-21 18:26:55 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-1.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-21 21:18:52 +00:00
|
|
|
* Sun Jan 21 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.8.0-1
|
|
|
|
- 2.8.0
|
|
|
|
|
2012-01-14 03:23:10 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0-1.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-05-15 16:43:43 +00:00
|
|
|
* Mon May 16 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.6.0-1
|
|
|
|
- 2.6.0
|
|
|
|
|
2011-05-10 21:47:09 +00:00
|
|
|
* Tue May 10 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.6.0-0.3.rc6
|
|
|
|
- 2.6.0 rc6
|
|
|
|
|
2011-05-03 07:45:41 +00:00
|
|
|
* Tue May 3 2011 Mamoru Tasaka <mtasaka@fedoraproject.org>
|
|
|
|
- And enable check on rawhide
|
|
|
|
|
2011-05-03 05:02:28 +00:00
|
|
|
* Tue May 3 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.6.0-0.1.rc4
|
|
|
|
- 2.6.0 rc4
|
|
|
|
|
2011-02-25 18:33:07 +00:00
|
|
|
* Sat Feb 26 2011 Mamoru Tasaka <mtasaka@fedoraproject.org>
|
|
|
|
- And enable check on rawhide
|
|
|
|
|
2011-02-25 18:03:25 +00:00
|
|
|
* Sat Feb 26 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.5.0-2
|
|
|
|
- Cleanups
|
|
|
|
|
|
|
|
* Thu Feb 17 2011 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.5.0-1
|
|
|
|
- 2.5.0
|
|
|
|
|
|
|
|
* Fri Nov 05 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.0.1-1
|
|
|
|
- Initial package
|