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/posix-spawn/
Date: Sun, 27 Mar 2022 07:13:25
Message-Id: 1648365191.4b3d5835727241fd2dc9706505655992848674da.graaff@gentoo
1 commit: 4b3d5835727241fd2dc9706505655992848674da
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 05:38:10 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 07:13:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b3d5835
7
8 dev-ruby/posix-spawn: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/posix-spawn/posix-spawn-0.3.15.ebuild | 32 --------------------------
13 1 file changed, 32 deletions(-)
14
15 diff --git a/dev-ruby/posix-spawn/posix-spawn-0.3.15.ebuild b/dev-ruby/posix-spawn/posix-spawn-0.3.15.ebuild
16 deleted file mode 100644
17 index 98035318b1db..000000000000
18 --- a/dev-ruby/posix-spawn/posix-spawn-0.3.15.ebuild
19 +++ /dev/null
20 @@ -1,32 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -USE_RUBY="ruby25 ruby26 ruby27"
27 -
28 -RUBY_FAKEGEM_EXTRADOC="README.md TODO HACKING"
29 -
30 -inherit ruby-fakegem
31 -
32 -DESCRIPTION="Library that implements a subset of the Ruby 1.9 Process::spawn"
33 -HOMEPAGE="https://github.com/rtomayko/posix-spawn/"
34 -
35 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -IUSE="test"
40 -
41 -each_ruby_configure() {
42 - ${RUBY} -Cext extconf.rb || die
43 -}
44 -
45 -each_ruby_compile() {
46 - emake V=1 -Cext
47 - cp ext/*$(get_modname) lib/ || die
48 -}
49 -
50 -each_ruby_test() {
51 - ${RUBY} -Ilib:.:test -e 'Dir["test/test_*.rb"].each {|f| require f}' || die
52 -}