diff options
author | Hans de Graaff <graaff@gentoo.org> | 2022-11-05 08:40:42 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2022-11-06 08:07:55 +0100 |
commit | 6db3654981f7bb781a46860d171294c02950d47a (patch) | |
tree | afd7cdc750824185b582c7b1528c45efcf198d82 | |
parent | dev-ruby/capistrano: enable ruby30, ruby31 and disable ruby25, ruby26 (diff) | |
download | gentoo-6db3654981f7bb781a46860d171294c02950d47a.tar.gz gentoo-6db3654981f7bb781a46860d171294c02950d47a.tar.bz2 gentoo-6db3654981f7bb781a46860d171294c02950d47a.zip |
dev-ruby/ethon: add 0.16.0
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
-rw-r--r-- | dev-ruby/ethon/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/ethon/ethon-0.16.0.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-ruby/ethon/Manifest b/dev-ruby/ethon/Manifest index c2eb5654fb90..7c15501f642d 100644 --- a/dev-ruby/ethon/Manifest +++ b/dev-ruby/ethon/Manifest @@ -1,2 +1,3 @@ DIST ethon-0.14.0.gem 57344 BLAKE2B 10dd81966e3e11607f3954616d17fed79be4ba0793cb4e67b39d5b0768ce2adcea88551238c57889b6d14b3d4d9b8e96110d622f5fc40c3856788338a288d4c6 SHA512 765454c3c9132204d6cc0ff09478b252e5cbc78d4f3ca35654942ba19b5aa541d846f1c37ec16e51c54aa41e03debdf8fc084b8f4540d230431d0e6f885f1a51 DIST ethon-0.15.0.gem 59904 BLAKE2B 9a6bcec605d6133054c3ee9b4546aab4d9282266876cd9c6e9c923d3405a5541871ebe83385185dcc42f0cea37735cddd9977e2da72badbcaaac55b8c634b94c SHA512 6e04c70e105fb95f1e0ff62e1d6ae009bb7b39a60d85ec9e43b10c016f33f679620ded253089a738e0cef5010e9023d1093dd92b1caacdde8f6a745cbae2b5b5 +DIST ethon-0.16.0.gem 60416 BLAKE2B 6970554d8cbde18c0e08c95826f6444614d8378a3889e9347cc66170f80b947951312e3e65712106864351285f331ea0cb67c2e24e22ecc335fc0fbd571eb521 SHA512 3b31affcee0d5a5be05b5497d4a8d13515f8393f54579a3a9c8de49f78d3f065bb92659434b023f0a8bf8e0cccfbc94b617695b93c4d3f744cccd1eff2e68905 diff --git a/dev-ruby/ethon/ethon-0.16.0.ebuild b/dev-ruby/ethon/ethon-0.16.0.ebuild new file mode 100644 index 000000000000..6d7ded2b089d --- /dev/null +++ b/dev-ruby/ethon/ethon-0.16.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="Very lightweight libcurl wrapper" +HOMEPAGE="https://github.com/typhoeus/ethon" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +RDEPEND+=" net-misc/curl" + +ruby_add_rdepend ">=dev-ruby/ffi-1.15.0" + +ruby_add_bdepend "test? ( dev-ruby/sinatra dev-ruby/mime-types )" + +all_ruby_prepare() { + rm Gemfile || die + sed -e '/bundler/I s:^:#:' \ + -e '1igem "sinatra"' -i Rakefile spec/spec_helper.rb || die +} |