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: Fri, 31 Jul 2020 06:28:30
Message-Id: 1596176901.84b979822a076d6a25223490cd466a49f968daa6.graaff@gentoo
1 commit: 84b979822a076d6a25223490cd466a49f968daa6
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 06:00:58 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 06:28:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84b97982
7
8 dev-ruby/posix-spawn: cleanup
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/posix-spawn/Manifest | 1 -
14 dev-ruby/posix-spawn/posix-spawn-0.3.13-r1.ebuild | 37 -----------------------
15 2 files changed, 38 deletions(-)
16
17 diff --git a/dev-ruby/posix-spawn/Manifest b/dev-ruby/posix-spawn/Manifest
18 index 8c3857d8506..52862f18b7e 100644
19 --- a/dev-ruby/posix-spawn/Manifest
20 +++ b/dev-ruby/posix-spawn/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST posix-spawn-0.3.13.gem 28160 BLAKE2B 68b1c241310c7b35bf8bea055e63a60320ae3fc877f9bc9f4e2dc0d30c1484eb5081be8c7d60309ed04900c410d52624dae6e37a0f134993f334526f2d9de98d SHA512 a9cd878571440cc0aaee541cbb97b6f4dcb03e48a8ef8588693f4c68990eb530e3b1685d615546763c9bba5d3109134442285023938eb2f116e9749f0da12bb9
23 DIST posix-spawn-0.3.14.gem 29696 BLAKE2B 6c3cf234b8754b2757e0360f2b2bfd008628891ecec813dc3644f9a378317f3645908539588a3fbfae5a6fc4a0b9c5beb6fb925fdd9f6fb3cf8cdddbf6db448e SHA512 85d34d8301e1d0923831890d4ac3191e81cc4c716671bc3b71d44be92e9b0c278bd4ce17b9387fc10359266bbdee1e1aad5cb4bbf1c08ab385b023ba2fec74d7
24 DIST posix-spawn-0.3.15.gem 29696 BLAKE2B 224cca09cbac983cb35dd2c25fe4ea485f6c5ec20fe46dfafcfb4f3586da9eb77ba8328dcdc3fde6f389dc0953ae4b7e5a600af67db421837a6610b0770c8146 SHA512 bdfecdbb0d470d23643de1c5b40c4f4b8b7f8970c14a2d3bd7c15e59d388b24857fb740c5c87573cbb6ac83483a29bf87f856a949a1fc014be8ad09e5cb2a9e7
25
26 diff --git a/dev-ruby/posix-spawn/posix-spawn-0.3.13-r1.ebuild b/dev-ruby/posix-spawn/posix-spawn-0.3.13-r1.ebuild
27 deleted file mode 100644
28 index 6818b5a420e..00000000000
29 --- a/dev-ruby/posix-spawn/posix-spawn-0.3.13-r1.ebuild
30 +++ /dev/null
31 @@ -1,37 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -USE_RUBY="ruby23 ruby24 ruby25 ruby26"
38 -
39 -RUBY_FAKEGEM_TASK_DOC=""
40 -RUBY_FAKEGEM_EXTRADOC="README.md TODO HACKING"
41 -
42 -inherit ruby-fakegem
43 -
44 -DESCRIPTION="Library that implements a subset of the Ruby 1.9 Process::spawn"
45 -HOMEPAGE="https://github.com/rtomayko/posix-spawn/"
46 -
47 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
48 -
49 -LICENSE="MIT LGPL-2.1"
50 -SLOT="0"
51 -IUSE="test"
52 -
53 -all_ruby_prepare() {
54 - eapply "${FILESDIR}/${P}-x86.patch"
55 -}
56 -
57 -each_ruby_configure() {
58 - ${RUBY} -Cext extconf.rb || die
59 -}
60 -
61 -each_ruby_compile() {
62 - emake V=1 -Cext
63 - cp ext/*$(get_modname) lib/ || die
64 -}
65 -
66 -each_ruby_test() {
67 - ${RUBY} -Ilib:.:test -e 'Dir["test/test_*.rb"].each {|f| require f}' || die
68 -}