initial checkin
This commit is contained in:
parent
b0c380a7bf
commit
81b51c8d05
4 changed files with 114 additions and 0 deletions
72
rubygem-test-unit-ruby-core.spec
Normal file
72
rubygem-test-unit-ruby-core.spec
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
%global gem_name test-unit-ruby-core
|
||||
|
||||
Name: rubygem-%{gem_name}
|
||||
Version: 1.0.1
|
||||
Release: 2%{?dist}
|
||||
|
||||
Summary: Additional test assertions for Ruby standard libraries
|
||||
# SPDX confirmed
|
||||
License: BSD-2-Clause
|
||||
URL: https://github.com/ruby/test-unit-ruby-core
|
||||
|
||||
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||
Source1: %{gem_name}-%{version}-additional.tar.gz
|
||||
# Source1 is created by $ bash %%SOURCE2 %%version
|
||||
Source2: test-unit-ruby-core-create-missing-files.sh
|
||||
BuildRequires: ruby(release)
|
||||
BuildRequires: rubygems-devel
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Additional test assertions for Ruby standard libraries.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for %{name}
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
Documentation for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{gem_name}-%{version} -b 1
|
||||
|
||||
%build
|
||||
gem build ../%{gem_name}-%{version}.gemspec
|
||||
%gem_install
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{gem_dir}
|
||||
cp -a .%{gem_dir}/* \
|
||||
%{buildroot}%{gem_dir}/
|
||||
|
||||
# Install additional files
|
||||
cp -a \
|
||||
LICENSE.txt \
|
||||
README.md \
|
||||
%{buildroot}%{gem_instdir}/
|
||||
|
||||
rm -f %{buildroot}%{gem_cache}
|
||||
|
||||
%check
|
||||
# No available test suite currently
|
||||
exit 0
|
||||
|
||||
%files
|
||||
%dir %{gem_instdir}
|
||||
%doc %{gem_instdir}/README.md
|
||||
%license %{gem_instdir}/LICENSE.txt
|
||||
%{gem_libdir}
|
||||
%{gem_spec}
|
||||
|
||||
%files doc
|
||||
%doc %{gem_docdir}
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 7 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.1-2
|
||||
- Fix comment for source
|
||||
|
||||
* Thu Jun 22 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.0.1-1
|
||||
- Initial package
|
||||
Loading…
Add table
Add a link
Reference in a new issue