commit: 61ffb3d6e46092265720237166a0a0c575c4d472
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 2 23:09:04 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 3 00:46:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61ffb3d6
dev-ruby/async-io: enable ruby32
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/async-io/async-io-1.34.3-r1.ebuild | 36 +++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/dev-ruby/async-io/async-io-1.34.3-r1.ebuild
b/dev-ruby/async-io/async-io-1.34.3-r1.ebuild
new file mode 100644
index 000000000000..18b62dfdce49
--- /dev/null
+++ b/dev-ruby/async-io/async-io-1.34.3-r1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRA_DOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides support for asynchronous TCP, UDP, UNIX and SSL sockets"
+HOMEPAGE="https://github.com/socketry/async-io"
+SRC_URI="https://github.com/socketry/async-io/archive/v${PV}.tar.gz ->
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/async"
+
+ruby_add_bdepend "test? (
+ >=dev-ruby/async-container-0.15:0
+ >=dev-ruby/async-rspec-1.10:1
+ dev-ruby/rack-test
+)"
+
+all_ruby_prepare() {
+ sed -i -E 's/require_relative "(.+)"/require File.expand_path("\1")/g'
"${RUBY_FAKEGEM_GEMSPEC}" || die
+
+ # Avoid test dependency on covered
+ sed -i -e '/covered/ s:^:#:' spec/spec_helper.rb || die
+}