66 lines
1.6 KiB
RPMSpec
66 lines
1.6 KiB
RPMSpec
%global gem_name mini_mime
|
|
Name: rubygem-%{gem_name}
|
|
Version: 1.1.0
|
|
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
|
|
BuildRequires: ruby(release) rubygems-devel ruby rubygem(minitest)
|
|
BuildArch: noarch
|
|
%description
|
|
Minimal mime type implementation for use with the mail and rest-client gem.
|
|
|
|
%package help
|
|
Summary: Documentation for %{name}
|
|
Requires: %{name} = %{version}-%{release}
|
|
BuildArch: noarch
|
|
|
|
%description help
|
|
Documentation for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n %{gem_name}-%{version} -b1
|
|
|
|
%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)'
|
|
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}
|
|
|
|
%files help
|
|
%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
|
|
* Thu Mar 3 2022 liqiuyu <liqiuyu@kylinos.cn> - 1.1.0-1
|
|
- update to 1.1.0
|
|
|
|
* Sat Aug 22 2020 liyanan <liyanan32@huawei.com> - 1.0.0-1
|
|
- package init
|