commit: e229328c7e4993be241a01f14921b528a6b0b0e8
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 9 06:55:14 2025 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Oct 9 06:58:32 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e229328c
dev-ruby/elastic-transport: add 8.4.1
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/elastic-transport/Manifest | 1 +
.../elastic-transport-8.4.1.ebuild | 78 ++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/dev-ruby/elastic-transport/Manifest
b/dev-ruby/elastic-transport/Manifest
index 8c30d78d3558..fef075376f71 100644
--- a/dev-ruby/elastic-transport/Manifest
+++ b/dev-ruby/elastic-transport/Manifest
@@ -1 +1,2 @@
DIST elastic-transport-8.4.0.tar.gz 61490 BLAKE2B
7da60867af275d9080a47438a5dc1b70e75a82e0bacfd5749dd82d14d7407958e13ad51fb9f8377fbb31591b23e7833ba39f1cfa25bb941ef95b0c88241ed8bc
SHA512
719a1a4acff04386eadf1523ee5ca7dc10a7d26d96b50dd541a66eabaf4b5a767dfe81ebf3ab9bb225c803fd9740ebc0b58d00f38c59c22813ce4d217b18233a
+DIST elastic-transport-8.4.1.tar.gz 61691 BLAKE2B
e1ae7f4f9b402d12c0aceaeba289e661abfd0c80e1de1c17e72a06a635fdc7d4b057307e63d0eb2c7cb3c68d7d41974bdd01c4e934fd8953961e8dda9d40dba0
SHA512
d3016566affa9c8888d202dfa3eb68b87352a7a2533c2d5bc9df8176d040d810e38b39ad285c16eba7c9b263151bd402da0396d0ea52c70b7da15fd18bd616f5
diff --git a/dev-ruby/elastic-transport/elastic-transport-8.4.1.ebuild
b/dev-ruby/elastic-transport/elastic-transport-8.4.1.ebuild
new file mode 100644
index 000000000000..141714635ad8
--- /dev/null
+++ b/dev-ruby/elastic-transport/elastic-transport-8.4.1.ebuild
@@ -0,0 +1,78 @@
+# 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_GEMSPEC="${PN}.gemspec"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Transport classes and utilities shared among Ruby Elastic client
libraries"
+HOMEPAGE="https://github.com/elastic/elastic-transport-ruby"
+SRC_URI="https://github.com/elastic/elastic-transport-ruby/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz"
+RUBY_S="elastic-transport-ruby-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+ruby_add_rdepend "
+ || ( dev-ruby/faraday:2 dev-ruby/faraday:1 )
+ dev-ruby/multi_json
+"
+ruby_add_bdepend "
+ doc? ( dev-ruby/yard )
+ test? (
+ dev-ruby/ansi
+ dev-ruby/hashie
+ || ( ( dev-ruby/faraday:2
dev-ruby/faraday-net_http_persistent:2 )
+ ( dev-ruby/faraday:1 dev-ruby/net-http-persistent ) )
+ dev-ruby/mocha:2
+ dev-ruby/pry
+ dev-ruby/rspec:3
+ dev-ruby/shoulda-context
+ dev-ruby/curb
+ )
+"
+
+all_ruby_prepare() {
+ # fix to work without git
+ sed -i -e 's/git ls-files/find * -type f/' ${RUBY_FAKEGEM_GEMSPEC} ||
die
+
+ # remove useless dependencies from Rakefile
+ sed -e '/bundler/d' \
+ -e '/require.*cane/,/end/d' \
+ -i Rakefile || die
+
+ # Tweak test setup to only run unit tests since we don't have a live
cluster
+ sed -e "s/RUBY_VERSION > '1.9'/false/" \
+ -e '/module Elasticsearch/,$ s:^:#:' \
+ -e '/reporters/ s:^:#: ; /Reporters::SpecReporter/,/^end/
s:^:#: ; /Reporters.use/ s:^:#:' \
+ -i test/test_helper.rb || die
+
+ sed -e '/pry/ s:^:#:' \
+ -e '/config.formatter/ s:^:#:' \
+ -i spec/spec_helper.rb || die
+
+ # Avoid specs that require a running elasticsearch instance
+ sed -e '/#perform_request/ s/describe/xdescribe/' \
+ -e '/when the client connects/ s/context/xcontext/' \
+ -i spec/elastic/transport/client_spec.rb || die
+ sed -e '/retries on 404 status the specified number of max_retries/
s/it/xit/' \
+ -i spec/elastic/transport/base_spec.rb || die
+
+ # Avoid specs that require unpackaged gems
+ sed -e '/when using the HTTPClient adapter/ s/context/xcontext/' \
+ -e '/require.*httpclient/ s:^:#:' \
+ -e '/when the adapter is
\(async-http\|excon\|patron\|typhoeus\)/ s/context/xcontext/' \
+ -e '/require.*\(patron\|typhoeus\)/ s:^:#:' \
+ -e '/when the adapter \(can be detected\|is specified as a
string key\)/ s/context/xcontext/' \
+ -e '/when the Faraday adapter is \(configured\|set in the
block\)/ s/context/xcontext/' \
+ -i spec/elastic/transport/client_spec.rb || die
+ sed -e '/using \(httpclient\|patron\|typhoeus\)/ s/context/xcontext/' \
+ -i spec/elastic/transport/meta_header_spec.rb || die
+}