summaryrefslogtreecommitdiff
path: root/dev-ruby/async/async-1.31.0.ebuild
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2025-05-26 10:14:00 +0200
committerHans de Graaff <graaff@gentoo.org>2025-05-26 10:16:11 +0200
commitf9c82af00e11129b90fea34eb464be6fcb2ac6bb (patch)
tree4ac355393b08b0934ce3115aa55ff46d454afa47 /dev-ruby/async/async-1.31.0.ebuild
parent4ffb9e3008eb0b5aaf58ee5867f4643d4763389b (diff)
downloadgentoo-f9c82af00e11129b90fea34eb464be6fcb2ac6bb.tar.gz
gentoo-f9c82af00e11129b90fea34eb464be6fcb2ac6bb.tar.bz2
gentoo-f9c82af00e11129b90fea34eb464be6fcb2ac6bb.zip
dev-ruby/async: drop 1.31.0
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/async/async-1.31.0.ebuild')
-rw-r--r--dev-ruby/async/async-1.31.0.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-ruby/async/async-1.31.0.ebuild b/dev-ruby/async/async-1.31.0.ebuild
deleted file mode 100644
index 02e4dc6c7c94..000000000000
--- a/dev-ruby/async/async-1.31.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2022-2025 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_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 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/console-1.10:1
- >=dev-ruby/nio4r-2.3:2
- >=dev-ruby/timers-4.1:4"
-
-ruby_add_bdepend "test? (
- >=dev-ruby/async-rspec-1.1:1
- dev-ruby/benchmark-ips
-)"
-
-PATCHES=(
- "${FILESDIR}"/${P}-improve-robustness-test.patch
-)
-
-all_ruby_prepare() {
- sed -i -E 's/require_relative "(.+)"/require File.expand_path("\1")/g' "${RUBY_FAKEGEM_GEMSPEC}" || die
-
- # Avoid network tests
- sed -i -e '/can fetch website using Net::HTTP/askip "requires network"' spec/async/scheduler_spec.rb || die
-
- # Avoid test dependency on unpackaged covered
- sed -i -e '/covered/ s:^:#:' spec/spec_helper.rb || die
-}