2014-03-18 11:14:22 +00:00
|
|
|
%global gem_name rspec-support
|
|
|
|
|
|
|
|
%global mainver 3.0.0
|
|
|
|
%global prever .beta2
|
|
|
|
|
2014-03-18 11:47:41 +00:00
|
|
|
%global mainrel 4
|
2014-03-18 11:14:22 +00:00
|
|
|
%global prerpmver %(echo "%{?prever}" | sed -e 's|\\.||g')
|
|
|
|
|
|
|
|
|
|
|
|
Name: rubygem-%{gem_name}
|
|
|
|
Version: %{mainver}
|
2014-06-08 05:16:18 +00:00
|
|
|
Release: %{?prever:0.}%{mainrel}%{?prever:.%{prerpmver}}%{?dist}.1
|
2014-03-18 11:14:22 +00:00
|
|
|
|
|
|
|
Summary: Common functionality to Rspec series
|
|
|
|
Group: Development/Languages
|
|
|
|
License: MIT
|
|
|
|
URL: https://github.com/rspec/rspec-support
|
|
|
|
Source0: https://rubygems.org/gems/%{gem_name}-%{mainver}%{?prever}.gem
|
|
|
|
Requires: ruby(release)
|
|
|
|
Requires: ruby(rubygems)
|
|
|
|
BuildRequires: ruby(release)
|
|
|
|
BuildRequires: rubygems-devel
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
# Need fix
|
|
|
|
Provides: rubygem(%{gem_name}) = %{version}-%{release}
|
|
|
|
|
|
|
|
%description
|
|
|
|
`RSpec::Support` provides common functionality to `RSpec::Core`,
|
|
|
|
`RSpec::Expectations` and `RSpec::Mocks`. It is considered
|
|
|
|
suitable for internal use only at this time.
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
Group: Documentation
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
Documentation for %{name}
|
|
|
|
|
|
|
|
%global version_orig %{version}
|
|
|
|
%global version %{version_orig}%{?prever}
|
|
|
|
|
|
|
|
%prep
|
|
|
|
gem unpack %{SOURCE0}
|
|
|
|
%setup -q -D -T -n %{gem_name}-%{version}
|
|
|
|
gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec
|
|
|
|
|
|
|
|
%build
|
|
|
|
gem build %{gem_name}.gemspec
|
|
|
|
%gem_install
|
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p %{buildroot}%{gem_dir}
|
|
|
|
cp -pa .%{gem_dir}/* \
|
|
|
|
%{buildroot}%{gem_dir}/
|
|
|
|
|
|
|
|
# No tests available currently
|
|
|
|
|
|
|
|
%files
|
|
|
|
%dir %{gem_instdir}
|
|
|
|
%doc %{gem_instdir}/[A-Z]*
|
|
|
|
|
|
|
|
%{gem_libdir}
|
|
|
|
%exclude %{gem_cache}
|
|
|
|
%{gem_spec}
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
%doc %{gem_docdir}
|
|
|
|
|
|
|
|
%changelog
|
2014-06-08 05:16:18 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.0-0.4.beta2.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-03-18 11:47:41 +00:00
|
|
|
* Tue Mar 18 2014 Mamoru TASAKA <mtasaka@tbz.t-com.ne.jp> - 3.0.0-0.4.beta1
|
2014-03-18 11:14:22 +00:00
|
|
|
- 3.0.0 beta 2
|
|
|
|
|
|
|
|
* Mon Feb 10 2014 Mamoru TASAKA <mtasaka@tbz.t-com.ne.jp> - 3.0.0-0.2.beta1
|
|
|
|
- Modify Provides EVR
|
|
|
|
|
|
|
|
* Mon Feb 03 2014 Mamoru TASAKA <mtasaka@tbz.t-com.ne.jp> - 3.0.0-0.1.beta1
|
|
|
|
- Initial package
|