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