Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/thread_safe/
Date: Thu, 25 Nov 2021 09:23:10
Message-Id: 1637832179.f677faf6e3ef3ddc61a810626f8cde52219d095b.graaff@gentoo
1 commit: f677faf6e3ef3ddc61a810626f8cde52219d095b
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 25 09:19:23 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 25 09:22:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f677faf6
7
8 dev-ruby/thread_safe: cleanup
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/thread_safe/thread_safe-0.3.6.ebuild | 37 ---------------------------
14 1 file changed, 37 deletions(-)
15
16 diff --git a/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild b/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild
17 deleted file mode 100644
18 index c9a2e03f3517..000000000000
19 --- a/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild
20 +++ /dev/null
21 @@ -1,37 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
28 -
29 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
30 -RUBY_FAKEGEM_EXTRADOC="README.md"
31 -
32 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
33 -
34 -inherit ruby-fakegem
35 -
36 -DESCRIPTION="A collection of thread-safe versions of common core Ruby classes"
37 -HOMEPAGE="https://github.com/ruby-concurrency/thread_safe"
38 -
39 -LICENSE="Apache-2.0"
40 -SLOT="0"
41 -KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
42 -IUSE=""
43 -
44 -# Higher atomic dependency since earlier versions crash on ruby20 while
45 -# running thread_safe tests.
46 -ruby_add_bdepend "test? ( >=dev-ruby/atomic-1.1.16 )"
47 -
48 -each_ruby_prepare() {
49 - sed -i -e "/[Bb]undler/d" Rakefile || die
50 - sed -i -e '/coveralls/I s:^:#:' \
51 - -e '/simplecov/ s:^:#:' \
52 - -e '/SimpleCov/,/^end/ s:^:#:' spec/spec_helper.rb || die
53 -}
54 -
55 -each_ruby_test() {
56 - einfo "The test suite may take up to 10 minutes to run without apparent feedback"
57 - each_fakegem_test
58 -}