%{?scl:%scl_package rubygem-%{gem_name}} %{!?scl:%global pkg_name %{name}} %global gem_name spring Name: %{?scl_prefix}rubygem-%{gem_name} Version: 2.0.0 Release: 1%{?dist} Summary: Rails application preloader Group: Development/Languages License: MIT URL: https://github.com/rails/spring Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem # git clone https://github.com/rails/spring.git && cd spring # git checkout v2.0.0 && tar czvf rubygem-spring-2.0.0-tests.tar.gz ./test Source1: rubygem-%{gem_name}-%{version}-tests.tar.gz Requires: %{?scl_prefix_ruby}ruby(release) Requires: %{?scl_prefix_ruby}ruby(rubygems) # Needed by `spring status` %if 0%{?rhel} == 6 Requires: /bin/ps %else Requires: %{?_root_bindir}%{!?_root_bindir:%{_bindir}}/ps %endif BuildRequires: %{?scl_prefix_ruby}ruby(release) BuildRequires: %{?scl_prefix_ruby}ruby(rubygems) BuildRequires: %{?scl_prefix_ruby}ruby BuildRequires: %{?scl_prefix_ruby}rubygems-devel BuildRequires: %{?scl_prefix_ruby}rubygem(minitest) BuildRequires: %{?scl_prefix_ruby}rubygem(bundler) BuildRequires: %{?scl_prefix}rubygem(activesupport) BuildArch: noarch Provides: %{?scl_prefix}rubygem(%{gem_name}) = %{version} # Explicitly require runtime subpackage, as long as older scl-utils do not generate it %{?scl:Requires: %{?scl_prefix}runtime} # OkJson is allowed to be bundled: # https://fedorahosted.org/fpc/ticket/113 Provides: %{?scl_prefix}bundled(okjson) = 43 %description Spring is a Rails application preloader. It speeds up development by keeping your application running in the background so you don't need to boot it every time you run a test, rake task or migration. %package doc Summary: Documentation for %{pkg_name} Group: Documentation Requires: %{?scl_prefix}%{pkg_name} = %{version}-%{release} BuildArch: noarch %description doc Documentation for %{pkg_name} %prep %{?scl:scl enable %{scl} - << \EOF} set -e gem unpack %{SOURCE0} %setup -q -D -T -n %{gem_name}-%{version} gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec %{?scl:EOF} %build %{?scl:scl enable %{scl} - << \EOF} set -e gem build %{gem_name}.gemspec %gem_install %{?scl:EOF} %install mkdir -p %{buildroot}%{gem_dir} cp -pa .%{gem_dir}/* \ %{buildroot}%{gem_dir}/ mkdir -p %{buildroot}%{_bindir} cp -pa .%{_bindir}/* \ %{buildroot}%{_bindir}/ find %{buildroot}%{gem_instdir}/bin -type f | xargs chmod a+x %check pushd .%{gem_instdir} tar xf %{SOURCE1} # Run only unit test now, acceptance tests wants to compile gems extensions %{?scl:scl enable %{scl} - << \EOF} ruby -Ilib:test -e 'Dir.glob "./test/unit/**/*_test.rb", &method(:require)' %{?scl:EOF} popd %files # There is no %%license macro on RHEL6. # https://bugzilla.redhat.com/show_bug.cgi?id=1386246 %{!?_licensedir:%global license %%doc} %dir %{gem_instdir} %{_bindir}/spring %{gem_instdir}/bin %{gem_libdir} %exclude %{gem_cache} %{gem_spec} %license %{gem_instdir}/LICENSE.txt %files doc %doc %{gem_docdir} %doc %{gem_instdir}/README.md %changelog * Mon Jan 02 2017 Jun Aruga <jaruga@redhat.com> - 2.0.0-1 - Update to 2.0.0 * Fri Jul 29 2016 Pavel Valena <pvalena@redhat.com> - 1.4.0-6 - Fix build to be RHEL-6 compatible * Thu Mar 03 2016 Pavel Valena <pvalena@redhat.com> - 1.4.0-5 - Fix %%{_bindir}}/ps Require * Thu Mar 03 2016 Pavel Valena <pvalena@redhat.com> - 1.4.0-4 - Fix ps Require * Thu Mar 03 2016 Pavel Valena <pvalena@redhat.com> - 1.4.0-3 - Update to 1.4.0 * Tue Feb 03 2015 Vít Ondruch <vondruch@redhat.com> - ps is located on different path in different package on RHEL6. * Mon Feb 02 2015 Vít Ondruch <vondruch@redhat.com> - 1.1.3-3 - Fix ps binary path. * Mon Feb 02 2015 Vít Ondruch <vondruch@redhat.com> - 1.1.3-2 - Fix requires. * Wed Jul 09 2014 Josef Stribny <jstribny@redhat.com> - 1.1.3-1 - Update to 1.1.3 * Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Thu Mar 20 2014 Josef Stribny <jstribny@redhat.com> - 1.1.2-4 - Use macro for the ps bin path * Thu Mar 20 2014 Josef Stribny <jstribny@redhat.com> - 1.1.2-3 - Fix ps require * Tue Mar 18 2014 Josef Stribny <jstribny@redhat.com> - 1.1.2-2 - Add bundled okjson virtual provide - Add ps dependency - Exclude .gitignore from tests * Fri Mar 14 2014 Josef Stribny <jstribny@redhat.com> - 1.1.2-1 - Initial package