commit: 5a32f1ac84951ac81f5d590f71626aa57b61d828
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 13 20:04:38 2025 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Dec 13 20:04:38 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a32f1ac
dev-ruby/concurrent-ruby: add 1.3.6
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/concurrent-ruby/Manifest | 1 +
.../concurrent-ruby/concurrent-ruby-1.3.6.ebuild | 41 ++++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/dev-ruby/concurrent-ruby/Manifest
b/dev-ruby/concurrent-ruby/Manifest
index eacf47a9aebf..27c03d1d8ad0 100644
--- a/dev-ruby/concurrent-ruby/Manifest
+++ b/dev-ruby/concurrent-ruby/Manifest
@@ -1 +1,2 @@
DIST concurrent-ruby-1.3.5.tar.gz 1155186 BLAKE2B
11c4dc45094b505d5a9104f9cf797358ac1fe9e3fd649df2a5560d4f030017df7ef0d936b0f948a83f40946872cb615345d9b1c607258be4591bc2c836007789
SHA512
0bf85fb3d9c5b1107768e2175c9f6958449de4033be403ef92d73f3f665ce04fca1a6d1437493b83ce7a1928c79ec89bda7ec47d9d7053435b7de0b5158afba7
+DIST concurrent-ruby-1.3.6.tar.gz 1156131 BLAKE2B
d1703967eb913d1df094b2e7915f5803d9075b952b547506a9b8a49ef69c98587dc6e380493ad80f4506feb3eb87133b134119663cde52fbab3c7bab1645a6fc
SHA512
a1bd69f850c60a55e7a3f14d15e2aa7ee32c92be2da824c981204de6cf2cfed2791580f2549f5221f9be1d9f72c8ab13f460fe5005f5361465ea0f4b29b55080
diff --git a/dev-ruby/concurrent-ruby/concurrent-ruby-1.3.6.ebuild
b/dev-ruby/concurrent-ruby/concurrent-ruby-1.3.6.ebuild
new file mode 100644
index 000000000000..0512e5c32f96
--- /dev/null
+++ b/dev-ruby/concurrent-ruby/concurrent-ruby-1.3.6.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby32 ruby33 ruby34"
+
+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
+}