rubygem-mini_mime/rubygem-mini_mime.spec

66 lines
1.6 KiB
RPMSpec
Raw Normal View History

2020-08-21 14:31:58 +08:00
%global gem_name mini_mime
Name: rubygem-%{gem_name}
Version: 1.1.0
2020-08-21 14:31:58 +08:00
Release: 1
Summary: A lightweight mime type lookup toy
License: MIT
URL: https://github.com/discourse/mini_mime
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
Source1: %{gem_name}-%{version}-test.txz
2020-08-21 14:31:58 +08:00
BuildRequires: ruby(release) rubygems-devel ruby rubygem(minitest)
BuildArch: noarch
%description
Minimal mime type implementation for use with the mail and rest-client gem.
2020-08-24 09:45:41 +08:00
%package help
2020-08-21 14:31:58 +08:00
Summary: Documentation for %{name}
Requires: %{name} = %{version}-%{release}
BuildArch: noarch
2020-08-24 09:45:41 +08:00
%description help
2020-08-21 14:31:58 +08:00
Documentation for %{name}.
%prep
%setup -q -n %{gem_name}-%{version} -b1
2020-08-21 14:31:58 +08:00
%build
gem build ../%{gem_name}-%{version}.gemspec
%gem_install
%install
mkdir -p %{buildroot}%{gem_dir}
cp -a .%{gem_dir}/* \
%{buildroot}%{gem_dir}/
%check
pushd .%{gem_instdir}
ln -s %{_builddir}/test .
ruby -Ilib:test -e 'Dir.glob "./test/**/*_test.rb", &method(:require)'
2020-08-21 14:31:58 +08:00
popd
%files
%dir %{gem_instdir}
%exclude %{gem_instdir}/.*
%license %{gem_instdir}/LICENSE.txt
%{gem_instdir}/bench
%{gem_instdir}/bin
%{gem_libdir}
%exclude %{gem_instdir}/%{gem_name}.gemspec
%exclude %{gem_cache}
%{gem_spec}
2020-08-24 09:45:41 +08:00
%files help
2020-08-21 14:31:58 +08:00
%doc %{gem_docdir}
%doc %{gem_instdir}/CODE_OF_CONDUCT.md
%doc %{gem_instdir}/CHANGELOG
%{gem_instdir}/Gemfile
%doc %{gem_instdir}/README.md
%{gem_instdir}/Rakefile
%changelog
* Thur Mar 3 2022 liqiuyu <liqiuyu@kylinos.cn> - 1.1.0-1
- update to 1.1.0
2020-08-24 09:45:41 +08:00
* Sat Aug 22 2020 liyanan <liyanan32@huawei.com> - 1.0.0-1
- package init