75 lines
2.0 KiB
RPMSpec
75 lines
2.0 KiB
RPMSpec
%global gem_name crack
|
|
|
|
Summary: Really simple JSON and XML parsing, ripped from Merb and Rails
|
|
Name: rubygem-%{gem_name}
|
|
Version: 0.4.5
|
|
Release: 2
|
|
License: MIT
|
|
URL: https://github.com/jnunemaker/crack
|
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
|
Source1: crack-%{version}-tests.tar.gz
|
|
# https://github.com/jnunemaker/crack/pull/73
|
|
Patch0: rubygem-crack-0.4.5-Use-named-parameters-for-safe_load.patch
|
|
# ruby package has just soft dependency on rubygem(bigdecimal), while
|
|
# crack always requires it.
|
|
Requires: rubygem(bigdecimal)
|
|
BuildRequires: rubygems-devel rubygem(bigdecimal) rubygem(minitest)
|
|
BuildRequires: rubygem-rexml
|
|
BuildArch: noarch
|
|
#BZ 781829
|
|
Epoch: 1
|
|
|
|
%description
|
|
Really simple JSON and XML parsing, ripped from Merb and Rails.
|
|
|
|
%package doc
|
|
Summary: Documentation for %{name}
|
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
This package contains documentation for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n %{gem_name}-%{version} -b 1
|
|
%patch0 -p1
|
|
|
|
%build
|
|
# Create the gem as gem install only works on a gem file
|
|
gem build ../%{gem_name}-%{version}.gemspec
|
|
|
|
# %%gem_install compiles any C extensions and installs the gem into ./%%gem_dir
|
|
# by default, so that we can move it into the buildroot in %%install
|
|
%gem_install
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{gem_dir}
|
|
cp -a .%{gem_dir}/* \
|
|
%{buildroot}%{gem_dir}/
|
|
|
|
%check
|
|
pushd .%{gem_instdir}
|
|
ln -s %{_builddir}/test test
|
|
ruby -Ilib:test -e 'Dir.glob "./test/**/*_test.rb", &method(:require)'
|
|
popd
|
|
|
|
%files
|
|
%dir %{gem_instdir}
|
|
%{gem_libdir}
|
|
%exclude %{gem_cache}
|
|
%{gem_spec}
|
|
|
|
%files doc
|
|
%doc %{gem_docdir}
|
|
|
|
%changelog
|
|
* Wed Jan 4 2023 liyanan <liyanan32@h-partners.com> - 1:0.4.5-2
|
|
- Fix Ruby 3.1 / Psych 4.0 compatibility
|
|
|
|
* Tue Mar 29 2022 liyanan <liyanan32@huawei.com> - 0.4.5-1
|
|
- update to 0.4.5
|
|
|
|
* Mon Jul 27 2020 wangxiao <wangxiao65@huawei.com> - 0.4.2-1
|
|
- package init
|