%global gem_name safe_yaml # Although there are tests # the dependancies aren't in Fedora yet %global enable_tests 0 Summary: Parse YAML safely Name: rubygem-%{gem_name} Version: 1.0.4 Release: 8%{?dist} Group: Development/Languages License: MIT URL: http://dtao.github.com/safe_yaml/ Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem # Fix Ruby 2.5 compatibility. # https://github.com/dtao/safe_yaml/pull/90 Patch0: rubygem-safe_yaml-1.0.4-Fix-uninitialized-constant-DateTime.patch BuildRequires: ruby(release) BuildRequires: rubygems-devel %if 0%{?enable_tests} BuildRequires: rubygem(hashie) #BuildRequires: rubygem(heredoc_unindent) #BuildRequires: rubygem(ostruct) BuildRequires: rubygem(rspec) #BuildRequires: rubygem(yaml) %endif BuildArch: noarch %description The SafeYAML gem provides an alternative implementation of YAML.load suitable for accepting user input in Ruby applications. Unlike Ruby's built-in implementation of YAML.load, SafeYAML's version will not expose apps to arbitrary code execution exploits. %package doc Summary: Documentation for %{name} Group: Documentation Requires: %{name} = %{version}-%{release} BuildArch: noarch %description doc Documentation for %{name} %prep gem unpack %{SOURCE0} %setup -q -D -T -n %{gem_name}-%{version} gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec %patch0 -p1 %build gem build %{gem_name}.gemspec %gem_install %install mkdir -p %{buildroot}%{gem_dir} cp -a ./%{gem_dir}/* %{buildroot}%{gem_dir}/ mkdir -p %{buildroot}%{_bindir} cp -a ./%{_bindir}/* %{buildroot}%{_bindir} find %{buildroot}%{gem_instdir}/bin -type f | xargs chmod a+x # Remove build leftovers. rm -rf %{buildroot}%{gem_instdir}/{.rvmrc,.document,.require_paths,.gitignore,.travis.yml,.rspec,.gemtest,.yard*} rm -rf %{buildroot}%{gem_instdir}/%{gem_name}.gemspec rm -rf %{buildroot}%{gem_instdir}/bundle_install_all_ruby_versions.sh %if 0%{?enable_tests} %check pushd .%{gem_instdir} rspec -Ilib spec popd %endif %files %{_bindir}/safe_yaml %doc %{gem_instdir}/LICENSE.txt %dir %{gem_instdir} %{gem_instdir}/bin %{gem_libdir} %exclude %{gem_cache} %{gem_spec} %files doc %doc %{gem_instdir}/CHANGES.md %doc %{gem_instdir}/README.md %doc %{gem_docdir} %{gem_instdir}/Rakefile %{gem_instdir}/Gemfile %{gem_instdir}/run_specs_all_ruby_versions.sh %{gem_instdir}/spec %changelog * Sat Jul 14 2018 Fedora Release Engineering - 1.0.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Fri Feb 09 2018 Fedora Release Engineering - 1.0.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Tue Jan 09 2018 Vít Ondruch - 1.0.4-6 - Fix "unitialized constant DateTime" issues in Ruby 2.5. * Thu Jul 27 2017 Fedora Release Engineering - 1.0.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Sat Feb 11 2017 Fedora Release Engineering - 1.0.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Thu Feb 04 2016 Fedora Release Engineering - 1.0.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Thu Jun 18 2015 Fedora Release Engineering - 1.0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Mon Oct 27 2014 Troy Dawson - 1.0.4-1 - Updated to latest release * Sun Jun 08 2014 Fedora Release Engineering - 1.0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Tue Apr 29 2014 Troy Dawson - 1.0.3-1 - Updated to version 1.0.3 * Tue Feb 04 2014 Troy Dawson - 1.0.1-1 - Updated to version 1.0.1 * Mon Jul 22 2013 Troy Dawson - 0.9.4-2 - Updated tests * Wed Jul 17 2013 Troy Dawson - 0.9.4-1 - Update to 0.9.4 * Fri Jun 14 2013 Troy Dawson - 0.9.3-1 - Initial package