From 9ac738363d30bd624aa0ad640cb18cdadf3c11b6 Mon Sep 17 00:00:00 2001 From: Hans de Graaff Date: Thu, 21 Aug 2025 13:19:15 +0200 Subject: [PATCH] dev-ruby/ethon: add 0.17.0 Signed-off-by: Hans de Graaff --- dev-ruby/ethon/Manifest | 1 + dev-ruby/ethon/ethon-0.17.0.ebuild | 44 ++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 dev-ruby/ethon/ethon-0.17.0.ebuild diff --git a/dev-ruby/ethon/Manifest b/dev-ruby/ethon/Manifest index 7aa1b726c606..44b6883cca9d 100644 --- a/dev-ruby/ethon/Manifest +++ b/dev-ruby/ethon/Manifest @@ -1 +1,2 @@ DIST ethon-0.16.0.gem 60416 BLAKE2B 6970554d8cbde18c0e08c95826f6444614d8378a3889e9347cc66170f80b947951312e3e65712106864351285f331ea0cb67c2e24e22ecc335fc0fbd571eb521 SHA512 3b31affcee0d5a5be05b5497d4a8d13515f8393f54579a3a9c8de49f78d3f065bb92659434b023f0a8bf8e0cccfbc94b617695b93c4d3f744cccd1eff2e68905 +DIST ethon-0.17.0.tar.gz 57638 BLAKE2B 1fc4b5a9e4ea3d6658bc1d4c8b72e35d712c37abf5969ee0546e9410666836f4a84f1fb03edb2b252566cfc7fdfbfa6687c203bee556da42aeabceef3c1e7115 SHA512 89c47f45c7dda94c92a196e38ead57bceb0b0770fd6db3fd964bcbb2404eccfd7f25d4153c8c13365d9bdd8e2afa4e39814fc40de147b915fb299db0c417e978 diff --git a/dev-ruby/ethon/ethon-0.17.0.ebuild b/dev-ruby/ethon/ethon-0.17.0.ebuild new file mode 100644 index 000000000000..7cc8057f4811 --- /dev/null +++ b/dev-ruby/ethon/ethon-0.17.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby32 ruby33 ruby34" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" +RUBY_FAKEGEM_GEMSPEC="ethon.gemspec" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="Very lightweight libcurl wrapper" +HOMEPAGE="https://github.com/typhoeus/ethon" +SRC_URI="https://github.com/typhoeus/ethon/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" + +RDEPEND="net-misc/curl" + +ruby_add_rdepend ">=dev-ruby/ffi-1.15.0" + +ruby_add_bdepend "test? ( + || ( dev-ruby/rackup dev-ruby/rack:2.2 ) + dev-ruby/sinatra + dev-ruby/mime-types + dev-ruby/webrick +)" + +all_ruby_prepare() { + rm Gemfile || die + sed -e '/bundler/I s:^:#:' \ + -e '1igem "sinatra"' -i Rakefile spec/spec_helper.rb || die + + sed -e 's/__FILE__/"ethon.gemspec"/' \ + -e 's/__dir__/"."/' \ + -e 's/git ls-files -z/find * -print0/' \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die +}