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/atomic/
Date: Wed, 24 Nov 2021 10:25:36
Message-Id: 1637749524.525fc7e0464e9d4da4ae4f2e61f8bdf57258903e.graaff@gentoo
1 commit: 525fc7e0464e9d4da4ae4f2e61f8bdf57258903e
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 24 10:24:14 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 24 10:25:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=525fc7e0
7
8 dev-ruby/atomic: 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/atomic/atomic-1.1.101.ebuild | 33 ---------------------------------
14 1 file changed, 33 deletions(-)
15
16 diff --git a/dev-ruby/atomic/atomic-1.1.101.ebuild b/dev-ruby/atomic/atomic-1.1.101.ebuild
17 deleted file mode 100644
18 index b2301eb94cfe..000000000000
19 --- a/dev-ruby/atomic/atomic-1.1.101.ebuild
20 +++ /dev/null
21 @@ -1,33 +0,0 @@
22 -# Copyright 1999-2020 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_TASK_DOC=""
30 -
31 -inherit multilib ruby-fakegem
32 -
33 -DESCRIPTION="An atomic reference implementation for JRuby, Rubinius, and MRI"
34 -HOMEPAGE="https://github.com/headius/ruby-atomic"
35 -
36 -LICENSE="Apache-2.0"
37 -SLOT="0"
38 -KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~sparc x86"
39 -IUSE=""
40 -
41 -all_ruby_prepare() {
42 - # Avoid compilation dependencies since we compile directly.
43 - sed -i -e '/:test => :compile/ s:^:#:' \
44 - -e '/extensiontask/,/end/ s:^:#:' Rakefile || die
45 -}
46 -
47 -each_ruby_configure() {
48 - ${RUBY} -Cext extconf.rb || die
49 -}
50 -
51 -each_ruby_compile() {
52 - emake V=1 -Cext
53 - cp ext/atomic_reference$(get_modname) lib/ || die
54 -}