summaryrefslogtreecommitdiff
path: root/dev-ruby/async/async-2.5.0.ebuild
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-04-03 00:24:54 +0100
committerSam James <sam@gentoo.org>2023-04-03 01:46:28 +0100
commit69e727b964dd7a21a0c9d5f7a42bc73c75208d81 (patch)
tree85a7c0eebc63068c63e287d7e2aec7cd1cc113c7 /dev-ruby/async/async-2.5.0.ebuild
parentca906ed922ef32e0580b1ab1b1c6439e1abc0c64 (diff)
downloadgentoo-69e727b964dd7a21a0c9d5f7a42bc73c75208d81.tar.gz
gentoo-69e727b964dd7a21a0c9d5f7a42bc73c75208d81.tar.bz2
gentoo-69e727b964dd7a21a0c9d5f7a42bc73c75208d81.zip
dev-ruby/async: add 2.5.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-ruby/async/async-2.5.0.ebuild')
-rw-r--r--dev-ruby/async/async-2.5.0.ebuild43
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-ruby/async/async-2.5.0.ebuild b/dev-ruby/async/async-2.5.0.ebuild
new file mode 100644
index 000000000000..46889e58cdfc
--- /dev/null
+++ b/dev-ruby/async/async-2.5.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# It really is >=ruby31 only, see:
+# https://github.com/socketry/async/issues/141
+# https://github.com/socketry/async/issues/136
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_RECIPE_TEST="sus"
+RUBY_FAKEGEM_EXTRADOC="readme.md"
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A concurrency framework for Ruby"
+HOMEPAGE="https://github.com/socketry/async"
+SRC_URI="https://github.com/socketry/async/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+
+ruby_add_rdepend ">=dev-ruby/console-1.10:1
+ dev-ruby/io-event:1.1
+ >=dev-ruby/timers-4.1:4"
+
+ruby_add_bdepend "test? (
+ dev-ruby/benchmark-ips
+ dev-ruby/sus-fixtures-async
+)"
+
+all_ruby_prepare() {
+ sed -i -E 's/require_relative "(.+)"/require File.expand_path("\1")/g' "${RUBY_FAKEGEM_GEMSPEC}" || die
+
+ # network tests
+ rm test/net/http.rb \
+ test/async/scheduler/address.rb \
+ test/async/scheduler/io.rb || die
+
+ sed -i -e '/covered/Id' config/sus.rb || die
+}