56 lines
1.5 KiB
RPMSpec
56 lines
1.5 KiB
RPMSpec
%global gem_name ruby-progressbar
|
|
Name: rubygem-%{gem_name}
|
|
Version: 1.13.0
|
|
Release: 1
|
|
Summary: Ruby/ProgressBar is a flexible text progress bar library
|
|
License: MIT
|
|
URL: https://github.com/jfelchner/ruby-progressbar
|
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
|
BuildRequires: ruby(release) rubygems-devel ruby
|
|
BuildArch: noarch
|
|
%description
|
|
Ruby/ProgressBar is an extremely flexible text progress bar library for Ruby.
|
|
The output can be customized with a flexible formatting system including:
|
|
percentage, bars of various formats, elapsed time and estimated time
|
|
remaining.
|
|
|
|
%package doc
|
|
Summary: Documentation for %{name}
|
|
Requires: %{name} = %{version}-%{release}
|
|
BuildArch: noarch
|
|
%description doc
|
|
Documentation for %{name}.
|
|
|
|
%prep
|
|
%autosetup -n %{gem_name}-%{version}
|
|
|
|
%build
|
|
gem build ../%{gem_name}-%{version}.gemspec
|
|
%gem_install
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{gem_dir}
|
|
cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}/
|
|
|
|
%files
|
|
%license %{gem_instdir}/LICENSE.txt
|
|
%dir %{gem_instdir}
|
|
%{gem_libdir}
|
|
%exclude %{gem_cache}
|
|
%{gem_spec}
|
|
|
|
%files doc
|
|
%doc %{gem_docdir}
|
|
%doc %{gem_instdir}/README.md
|
|
%{gem_instdir}/Rakefile
|
|
|
|
%changelog
|
|
* Fri Nov 10 2023 liyanan <liyanan61@h-partners.com> - 1.13.0-1
|
|
- Update to 1.13.0
|
|
|
|
* Wed Jun 29 2022 chenchen <chen_aka_jan@163.com> - 1.11.0-1
|
|
- Update to 1.11.0
|
|
|
|
* Sun Aug 23 2020 xiezheng <xiezheng4@huawei.com> - 1.10.1-1
|
|
- package init
|