-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../.git/annex/objects/F8/kX/SHA256E-s220160--885c5f5dfa23007132df6d34992067f867968fcef8071e371ca5378ef88bb321.2.gem/SHA256E-s220160--885c5f5dfa23007132df6d34992067f867968fcef8071e371ca5378ef88bb321.2.gem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
# template: scl | ||
%{?scl:%scl_package rubygem-%{gem_name}} | ||
%{!?scl:%global pkg_name %{name}} | ||
|
||
%global gem_name rbnacl | ||
%global gem_require_name %{gem_name} | ||
|
||
Name: %{?scl_prefix}rubygem-%{gem_name} | ||
Version: 4.0.2 | ||
Release: 1%{?dist} | ||
Summary: Ruby binding to the Networking and Cryptography (NaCl) library | ||
Group: Development/Languages | ||
License: MIT | ||
URL: https://github.com/cryptosphere/rbnacl | ||
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem | ||
|
||
# start specfile generated dependencies | ||
Requires: %{?scl_prefix_ruby}ruby(release) | ||
Requires: %{?scl_prefix_ruby}ruby >= 2.2.6 | ||
Requires: %{?scl_prefix_ruby}ruby(rubygems) | ||
Requires: %{?scl_prefix}rubygem(ffi) | ||
BuildRequires: %{?scl_prefix_ruby}ruby(release) | ||
BuildRequires: %{?scl_prefix_ruby}ruby >= 2.2.6 | ||
BuildRequires: %{?scl_prefix_ruby}rubygems-devel | ||
BuildArch: noarch | ||
Provides: %{?scl_prefix}rubygem(%{gem_name}) = %{version} | ||
# end specfile generated dependencies | ||
|
||
%description | ||
The Networking and Cryptography (NaCl) library provides a high-level toolkit | ||
for building cryptographic systems and protocols. | ||
|
||
|
||
%package doc | ||
Summary: Documentation for %{pkg_name} | ||
Group: Documentation | ||
Requires: %{?scl_prefix}%{pkg_name} = %{version}-%{release} | ||
BuildArch: noarch | ||
|
||
%description doc | ||
Documentation for %{pkg_name}. | ||
|
||
%prep | ||
%{?scl:scl enable %{scl} - << \EOF} | ||
gem unpack %{SOURCE0} | ||
%{?scl:EOF} | ||
%setup -q -D -T -n %{gem_name}-%{version} | ||
%{?scl:scl enable %{scl} - << \EOF} | ||
gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec | ||
%{?scl:EOF} | ||
%build | ||
# Create the gem as gem install only works on a gem file | ||
%{?scl:scl enable %{scl} - << \EOF} | ||
gem build %{gem_name}.gemspec | ||
%{?scl:EOF} | ||
# %%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 | ||
%{?scl:scl enable %{scl} - << \EOF} | ||
%gem_install | ||
%{?scl:EOF} | ||
%install | ||
mkdir -p %{buildroot}%{gem_dir} | ||
cp -a .%{gem_dir}/* \ | ||
%{buildroot}%{gem_dir}/ | ||
%files | ||
%dir %{gem_instdir} | ||
%{gem_instdir}/.coveralls.yml | ||
%exclude %{gem_instdir}/.gitignore | ||
%exclude %{gem_instdir}/.rubocop.yml | ||
%{gem_instdir}/.ruby-version | ||
%exclude %{gem_instdir}/.travis.yml | ||
%exclude %{gem_instdir}/.yardopts | ||
%exclude %{gem_instdir}/Guardfile | ||
%license %{gem_instdir}/LICENSE.txt | ||
%{gem_instdir}/images | ||
%{gem_libdir} | ||
%{gem_instdir}/tasks | ||
%exclude %{gem_cache} | ||
%{gem_spec} | ||
%files doc | ||
%doc %{gem_docdir} | ||
%exclude %{gem_instdir}/.rspec | ||
%doc %{gem_instdir}/CHANGES.md | ||
%{gem_instdir}/Gemfile | ||
%doc %{gem_instdir}/README.md | ||
%{gem_instdir}/Rakefile | ||
%{gem_instdir}/rbnacl.gemspec | ||
%{gem_instdir}/spec | ||
%changelog | ||
* Tue Jul 20 2021 Adam Ruzicka <[email protected]> 4.0.2-1 | ||
- Add rubygem-rbnacl generated by gem2rpm using the scl template | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters