rubygem-multi_json/rubygem-multi_json.spec

103 lines
2.8 KiB
RPMSpec
Raw Normal View History

2021-06-07 15:43:15 +08:00
%global pkg_name %{name}
2020-08-28 14:18:44 +08:00
%global gem_name multi_json
2021-06-07 15:43:15 +08:00
Summary: A gem to provide swappable JSON backends
Name: rubygem-%{gem_name}
Version: 1.14.1
Release: 3
Group: Development/Languages
License: MIT
URL: https://github.com/intridea/multi_json
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
#git clone https://github.com/intridea/multi_json.git && cd multi_json
#git archive -v -o multi_json-1.14.1-tests.tgz v1.14.1 spec/
Source1: %{gem_name}-%{version}-tests.tgz
Source2: https://github.com/intridea/%{gem_name}/archive/refs/tags/%{gem_name}-%{version}.tar.gz
Source3: 0001-RSpec-3.11.0-distinguish-between-hashes-and-Ruby-3-keywords.patch
Requires: ruby(release)
2021-06-07 15:43:15 +08:00
BuildRequires: ruby(release)
Requires: ruby(rubygems)
Requires: ruby
2021-06-07 15:43:15 +08:00
BuildRequires: rubygems-devel
BuildRequires: ruby
BuildRequires: rubygem(rspec)
BuildRequires: rubygem(json_pure)
BuildRequires: ruby(rubygems)
BuildArch: noarch
Provides: rubygem(%{gem_name}) = %{version}
2021-06-07 15:43:15 +08:00
# OkJson is allowed to be bundled:
Provides: bundled(okjson) = 20110719
2021-06-07 15:43:15 +08:00
2020-08-28 14:18:44 +08:00
%description
2021-06-07 15:43:15 +08:00
A gem to provide swappable JSON backends utilizing Yajl::Ruby, the JSON gem,
JSON pure, or a vendored version of okjson.
2020-08-28 14:18:44 +08:00
%package doc
Summary: Documentation for %{pkg_name}
Group: Documentation
Requires: %{pkg_name} = %{version}-%{release}
BuildArch: noarch
2021-06-07 15:43:15 +08:00
2020-08-28 14:18:44 +08:00
%description doc
2021-06-07 15:43:15 +08:00
Documentation for %{pkg_name}
2020-08-28 14:18:44 +08:00
%prep
%setup -q -c -T
%gem_install -n %{SOURCE0}
%build
%install
mkdir -p %{buildroot}%{gem_dir}
cp -a .%{gem_dir}/* \
%{buildroot}%{gem_dir}/
%check
pushd .%{gem_instdir}
tar xf %{SOURCE1}
cp %{SOURCE3} .
patch -p1 < 0001-RSpec-3.11.0-distinguish-between-hashes-and-Ruby-3-keywords.patch
2020-08-28 14:18:44 +08:00
sed -i "/expect(MultiJson.adapter.to_s).to eq('MultiJson::Adapters::Oj')/ s/Oj/JsonGem/" spec/multi_json_spec.rb
SKIP_ADAPTERS=jr_jackson rspec spec/{multi_json,options_cache}_spec.rb
2020-08-28 14:18:44 +08:00
for adapter in spec/*_adapter_spec.rb; do
SKIP_ADAPTERS=gson,jr_jackson,nsjsonserialization,oj,yajl rspec $adapter
2020-08-28 14:18:44 +08:00
done
popd
%files
%dir %{gem_instdir}
2021-06-07 15:43:15 +08:00
%exclude %{gem_instdir}/.*
%doc %{gem_instdir}/LICENSE.md
2020-08-28 14:18:44 +08:00
%{gem_libdir}
%exclude %{gem_cache}
%{gem_spec}
%files doc
%doc %{gem_docdir}
%doc %{gem_instdir}/CHANGELOG.md
%doc %{gem_instdir}/CONTRIBUTING.md
2021-06-07 15:43:15 +08:00
%doc %{gem_instdir}/LICENSE.md
2020-08-28 14:18:44 +08:00
%doc %{gem_instdir}/README.md
2021-06-07 15:43:15 +08:00
2020-08-28 14:18:44 +08:00
%changelog
* Thu Jan 12 2023 Ge Wang <wangge20@h-partners.com> - 1.14.1-3
- Distinguish between hashes and Ruby 3 keywords
* Mon Feb 14 2022 xu_ping <xuping33@huawei.com> - 1.14.1-2
- Modify the tests file to correct version 1.14.1
- Fix jr_jackson remove due to tests failed
2021-06-07 15:43:15 +08:00
* Mon Jun 07 2021 jiangxinyu <jiangxinyu@kylinos.cn> - 1.14.1-1
- Update version to 1.14.1
2020-08-28 14:18:44 +08:00
* Sat Aug 22 2020 Jeffery.Gao <gaojianxing@huawei.com> - 1.13.1-1
- Package init