public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/elastic-transport/
Date: Sat, 22 Feb 2025 10:25:42 +0000 (UTC)	[thread overview]
Message-ID: <1740219933.5297774725e8d8d56ca35e8fbd4a9b92e18b6c8f.graaff@gentoo> (raw)

commit:     5297774725e8d8d56ca35e8fbd4a9b92e18b6c8f
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 22 07:46:41 2025 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Feb 22 10:25:33 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52977747

dev-ruby/elastic-transport: add 8.4.0

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/elastic-transport/Manifest                |  1 +
 .../elastic-transport-8.4.0.ebuild                 | 78 ++++++++++++++++++++++
 2 files changed, 79 insertions(+)

diff --git a/dev-ruby/elastic-transport/Manifest b/dev-ruby/elastic-transport/Manifest
index cb1166067841..65f33bbb433a 100644
--- a/dev-ruby/elastic-transport/Manifest
+++ b/dev-ruby/elastic-transport/Manifest
@@ -1,2 +1,3 @@
 DIST elastic-transport-8.3.2.tar.gz 60159 BLAKE2B 1eac8f50148fd48f8421922d7d5d57403ea2874642958de71812522556103e63901072f9b35edc762430353d99c7b8a843ea53153cd98deee661939687bf2cec SHA512 81eaf0fd044cf20b024d3dc865c90dabc68a1b739e2db89dfd9b29410e2c2f47930ac6c8d540817046c6e69f37617f8f21127add0b1b7ae95ad7cf6c0ff6565c
 DIST elastic-transport-8.3.5.tar.gz 60375 BLAKE2B 7e5b62feb31b82f07ad5f538dbb5a7ad53808d5e8754274b0053f90ef5c16905ea65a81221484410cff2c7615fd673c10e3ebadaaf5b15296a0510be5891c86b SHA512 4bdeb1744e059784b3e618d098bbde5d731480fa4a8b79428a0e11d3f8026909e4282125820ae5f1a05a2cb908a9a13a7366dd1d881f506ebd236c595fd5f220
+DIST elastic-transport-8.4.0.tar.gz 61490 BLAKE2B 7da60867af275d9080a47438a5dc1b70e75a82e0bacfd5749dd82d14d7407958e13ad51fb9f8377fbb31591b23e7833ba39f1cfa25bb941ef95b0c88241ed8bc SHA512 719a1a4acff04386eadf1523ee5ca7dc10a7d26d96b50dd541a66eabaf4b5a767dfe81ebf3ab9bb225c803fd9740ebc0b58d00f38c59c22813ce4d217b18233a

diff --git a/dev-ruby/elastic-transport/elastic-transport-8.4.0.ebuild b/dev-ruby/elastic-transport/elastic-transport-8.4.0.ebuild
new file mode 100644
index 000000000000..1face1ee69bf
--- /dev/null
+++ b/dev-ruby/elastic-transport/elastic-transport-8.4.0.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="ruby31 ruby32 ruby33"
+
+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
+}


             reply	other threads:[~2025-02-22 10:25 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-22 10:25 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-24 10:22 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/elastic-transport/ Hans de Graaff
2024-11-15 10:32 Hans de Graaff
2024-07-18  6:05 Hans de Graaff
2024-07-18  6:05 Hans de Graaff
2024-02-23  6:20 Hans de Graaff
2024-02-19 14:59 Hans de Graaff
2024-01-26  8:46 Hans de Graaff
2023-09-29  6:14 Hans de Graaff
2023-09-26  4:14 Hans de Graaff
2023-09-02  5:45 Hans de Graaff
2023-07-14  6:47 Hans de Graaff
2023-07-13  8:56 Hans de Graaff

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1740219933.5297774725e8d8d56ca35e8fbd4a9b92e18b6c8f.graaff@gentoo \
    --to=graaff@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox