initial checkin
This commit is contained in:
parent
b25b18f4dc
commit
14a11bb261
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/rspec-support-3.0.0.beta2.gem
|
80
rubygem-rspec-support.spec
Normal file
80
rubygem-rspec-support.spec
Normal file
@ -0,0 +1,80 @@
|
||||
%global gem_name rspec-support
|
||||
|
||||
%global mainver 3.0.0
|
||||
%global prever .beta2
|
||||
|
||||
%global mainrel 3
|
||||
%global prerpmver %(echo "%{?prever}" | sed -e 's|\\.||g')
|
||||
|
||||
|
||||
Name: rubygem-%{gem_name}
|
||||
Version: %{mainver}
|
||||
Release: %{?prever:0.}%{mainrel}%{?prever:.%{prerpmver}}%{?dist}
|
||||
|
||||
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
|
||||
* Tue Mar 18 2014 Mamoru TASAKA <mtasaka@tbz.t-com.ne.jp> - 3.0.0-0.2.beta1
|
||||
- 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
|
Loading…
Reference in New Issue
Block a user