summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2023-12-30 10:22:39 +0100
committerHans de Graaff <graaff@gentoo.org>2023-12-30 10:28:26 +0100
commitec8d373c92c81388ef52ff0e3516b06f7cbd3ee5 (patch)
treefad9c399dd34882c127bb55ef5d144a22728d548 /dev-ruby/async-io/async-io-1.34.3-r1.ebuild
parentapp-doc/devmanual: drop 0_pre20230121 (diff)
downloadgentoo-ec8d373c92c81388ef52ff0e3516b06f7cbd3ee5.tar.gz
gentoo-ec8d373c92c81388ef52ff0e3516b06f7cbd3ee5.tar.bz2
gentoo-ec8d373c92c81388ef52ff0e3516b06f7cbd3ee5.zip
dev-ruby/async-io: drop 1.34.3-r1, 1.36.0, 1.36.1
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/async-io/async-io-1.34.3-r1.ebuild')
-rw-r--r--dev-ruby/async-io/async-io-1.34.3-r1.ebuild40
1 files changed, 0 insertions, 40 deletions
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
deleted file mode 100644
index 5af21f42ca5a..000000000000
--- a/dev-ruby/async-io/async-io-1.34.3-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
-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
-)"
-
-PATCHES=(
- "${FILESDIR}"/${P}-tests.patch
-)
-
-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
-}