summaryrefslogtreecommitdiff
path: root/dev-ruby/concurrent-ruby
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2025-08-17 16:03:57 +0200
committerHans de Graaff <graaff@gentoo.org>2025-08-18 11:51:56 +0200
commit5d35216bc384a07f1d3dadc24c188f6674923384 (patch)
tree73c69e317ff74ba75e24492d56870a3b016f3477 /dev-ruby/concurrent-ruby
parent71ea372afdff4c7a15b1085584842c0d42c42dae (diff)
downloadgentoo-5d35216bc384a07f1d3dadc24c188f6674923384.tar.gz
gentoo-5d35216bc384a07f1d3dadc24c188f6674923384.tar.bz2
gentoo-5d35216bc384a07f1d3dadc24c188f6674923384.zip
dev-ruby/concurrent-ruby: drop 1.3.4
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/concurrent-ruby')
-rw-r--r--dev-ruby/concurrent-ruby/Manifest1
-rw-r--r--dev-ruby/concurrent-ruby/concurrent-ruby-1.3.4.ebuild40
2 files changed, 0 insertions, 41 deletions
diff --git a/dev-ruby/concurrent-ruby/Manifest b/dev-ruby/concurrent-ruby/Manifest
index 2bb2c669ce28..eacf47a9aebf 100644
--- a/dev-ruby/concurrent-ruby/Manifest
+++ b/dev-ruby/concurrent-ruby/Manifest
@@ -1,2 +1 @@
-DIST concurrent-ruby-1.3.4.tar.gz 1154935 BLAKE2B f27a8b1deab77b7897d9faadc4ddef9a8dbe55988e0a7cbcfd88a32b0369fbf37ab3c98a8244bae1509ae128d01c283b18716a723b5a3173d8e8f5cef28a37b2 SHA512 d08a20ec465429875ddb1b1bcc7a75e74cfdb3113e4141e7d7f690ddd6fe50af978b7911bf0457a3e535fd79e463e423c34d23f77e645ecb6dd69704b17fdad6
DIST concurrent-ruby-1.3.5.tar.gz 1155186 BLAKE2B 11c4dc45094b505d5a9104f9cf797358ac1fe9e3fd649df2a5560d4f030017df7ef0d936b0f948a83f40946872cb615345d9b1c607258be4591bc2c836007789 SHA512 0bf85fb3d9c5b1107768e2175c9f6958449de4033be403ef92d73f3f665ce04fca1a6d1437493b83ce7a1928c79ec89bda7ec47d9d7053435b7de0b5158afba7
diff --git a/dev-ruby/concurrent-ruby/concurrent-ruby-1.3.4.ebuild b/dev-ruby/concurrent-ruby/concurrent-ruby-1.3.4.ebuild
deleted file mode 100644
index cfa37a53a205..000000000000
--- a/dev-ruby/concurrent-ruby/concurrent-ruby-1.3.4.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC=""
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Modern concurrency tools including agents, futures, promises, thread pools, more"
-HOMEPAGE="https://github.com/ruby-concurrency/concurrent-ruby"
-SRC_URI="https://github.com/ruby-concurrency/concurrent-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="1"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="test"
-
-ruby_add_bdepend "test? ( >=dev-ruby/timecop-0.9 )"
-
-all_ruby_prepare() {
- # Remove edge files as defined in support/file_map.rb
- rm -rf spec/concurrent/{actor,cancellation,channel,edge,lazy_register,processing,promises,throttle}* || die
- rm -r spec/concurrent/executor/wrapping_executor_spec.rb || die
- sed -i -e '/concurrent-edge/ s:^:#:' spec/spec_helper.rb || die
- sed -i -e 's:lib-edge:lib/concurrent-ruby:' .rspec || die
- sed -i -e 's:../../../::' spec/concurrent/executor/executor_quits.rb || die
-
- # Remove specs for the ext gem
- rm -rf spec/concurrent/atomic || die
-
- sed -e 's/git ls-files/find * -print/' \
- -e "s/__dir__/'.'/" \
- -i ${RUBY_FAKEGEM_GEMSPEC} || die
-}