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/coolio/
Date: Wed, 27 Oct 2021 11:26:35
Message-Id: 1635333889.cb1ba7c26b4dfe06a411da0153c5e04843c89d44.graaff@gentoo
1 commit: cb1ba7c26b4dfe06a411da0153c5e04843c89d44
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 27 05:51:53 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 27 11:24:49 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb1ba7c2
7
8 dev-ruby/coolio: add ruby30
9
10 Switch to bundled iobuffer since the upstream version by the same author
11 it no longer maintained and does not work with ruby30.
12
13 Package-Manager: Portage-3.0.20, Repoman-3.0.3
14 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
15
16 dev-ruby/coolio/coolio-1.7.1-r1.ebuild | 44 ++++++++++++++++++++++++++++++++++
17 1 file changed, 44 insertions(+)
18
19 diff --git a/dev-ruby/coolio/coolio-1.7.1-r1.ebuild b/dev-ruby/coolio/coolio-1.7.1-r1.ebuild
20 new file mode 100644
21 index 00000000000..b7f9b1eec0b
22 --- /dev/null
23 +++ b/dev-ruby/coolio/coolio-1.7.1-r1.ebuild
24 @@ -0,0 +1,44 @@
25 +# Copyright 1999-2021 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=8
29 +
30 +USE_RUBY="ruby25 ruby26 ruby27 ruby30"
31 +
32 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
33 +RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
34 +RUBY_FAKEGEM_NAME="cool.io"
35 +
36 +RUBY_FAKEGEM_GEMSPEC="cool.io.gemspec"
37 +
38 +RUBY_FAKEGEM_EXTENSIONS=(ext/cool.io/extconf.rb ext/iobuffer/extconf.rb)
39 +
40 +inherit ruby-fakegem
41 +
42 +DESCRIPTION="A high performance event framework for Ruby which uses the libev C library"
43 +HOMEPAGE="https://coolio.github.io/"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +
50 +# cool.io includes a bundled version of libev that is patched to work correctly with ruby.
51 +
52 +all_ruby_prepare() {
53 + rm -r Gemfile* lib/.gitignore || die
54 +
55 + sed -i -e '/[Bb]undler/d' Rakefile || die
56 + sed -i -e '28i s.add_dependency "iobuffer"' ${RUBY_FAKEGEM_GEMSPEC} || die
57 + sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
58 +
59 + # Avoid dependency on rake-compiler
60 + sed -i -e '/extensiontask/ s:^:#:' \
61 + -e '/ExtensionTask/,/^end/ s:^:#:' Rakefile || die
62 +
63 + # Remove specs that require network connectivity
64 + rm -f spec/dns_spec.rb || die
65 +
66 + # Use one address consistently
67 + sed -i -e 's/localhost/127.0.0.1/' spec/{udp_socket,tcp_server,iobuffer}_spec.rb || die
68 +}