diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2021-09-14 12:28:43 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2021-09-14 12:28:43 +0000 |
commit | 428f1fdcab813d600a41afd713ef4f42a8a56482 (patch) | |
tree | ebcbd7620c849df0c71901ac6550cdc945502206 | |
parent | a6b31cc2fcc9c90a134e84c77ae1da6ed29691cd (diff) |
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | rubygem-passert.spec | 72 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 74 insertions, 0 deletions
@@ -0,0 +1 @@ +/passert-0.3.1.gem diff --git a/rubygem-passert.spec b/rubygem-passert.spec new file mode 100644 index 0000000..40b3ebe --- /dev/null +++ b/rubygem-passert.spec @@ -0,0 +1,72 @@ +# Generated from passert-0.3.1.gem by gem2rpm -*- rpm-spec -*- +%global gem_name passert + +Name: rubygem-%{gem_name} +Version: 0.3.1 +Release: 1%{?dist} +Summary: Simple assertions in Ruby +License: MIT +URL: https://github.com/chanks/passert +Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem +BuildRequires: ruby(release) +BuildRequires: rubygems-devel +BuildRequires: ruby +# BuildRequires: rubygem(minitest) >= 5.0 +# BuildRequires: rubygem(minitest) < 6 +BuildArch: noarch + +%description +Simple assertions in Ruby. + + +%package doc +Summary: Documentation for %{name} +Requires: %{name} = %{version}-%{release} +BuildArch: noarch + +%description doc +Documentation for %{name}. + +%prep +%setup -q -n %{gem_name}-%{version} + +%build +# Create the gem as gem install only works on a gem file +gem build ../%{gem_name}-%{version}.gemspec + +# %%gem_install compiles any C extensions and installs the gem into ./%%gem_dir +# by default, so that we can move it into the buildroot in %%install +%gem_install + +%install +mkdir -p %{buildroot}%{gem_dir} +cp -a .%{gem_dir}/* \ + %{buildroot}%{gem_dir}/ + + + +%check +pushd .%{gem_instdir} +# ruby -e 'Dir.glob "./test/**/*_test.rb", &method(:require)' +popd + +%files +%dir %{gem_instdir} +%exclude %{gem_instdir}/.gitignore +%exclude %{gem_instdir}/.travis.yml +%{gem_instdir}/CODE_OF_CONDUCT.md +%license %{gem_instdir}/LICENSE.txt +%{gem_libdir} +%exclude %{gem_cache} +%{gem_spec} + +%files doc +%doc %{gem_docdir} +%{gem_instdir}/Gemfile +%doc %{gem_instdir}/README.md +%{gem_instdir}/Rakefile +%{gem_instdir}/passert.gemspec + +%changelog +* Tue Sep 14 2021 mockbuilder - 0.3.1-1 +- Initial package @@ -0,0 +1 @@ +20c8d51b7ae8086c7355540df747124e passert-0.3.1.gem |