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/nio4r/
Date: Thu, 24 Dec 2015 06:37:53
Message-Id: 1450936618.b11268917cf370758fc2b6226d905d64950b8a5c.graaff@gentoo
1 commit: b11268917cf370758fc2b6226d905d64950b8a5c
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 24 05:56:58 2015 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 24 05:56:58 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1126891
7
8 dev-ruby/nio4r: add 1.2.0
9
10 Package-Manager: portage-2.2.24
11
12 dev-ruby/nio4r/Manifest | 1 +
13 dev-ruby/nio4r/nio4r-1.2.0.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-ruby/nio4r/Manifest b/dev-ruby/nio4r/Manifest
17 index af7421e..e1d7b0c 100644
18 --- a/dev-ruby/nio4r/Manifest
19 +++ b/dev-ruby/nio4r/Manifest
20 @@ -1 +1,2 @@
21 DIST nio4r-1.1.1.gem 91648 SHA256 5d86fd9f8872982fd4fa623bdaafe45efe21353b64fd09632e486f1b4d40959e SHA512 3163fd7efe05200ff88d284e932244f9a8f2e3b0145c6e732cdf8cd253ca334e1ade5b7d9c61a2d69ce193fa86501f1756ab3602181754426c7a268996537ff6 WHIRLPOOL 29501589d7eac09717c898dfdf80107653e68dcf5e84a9f96d1609c377d371447f17c8119313de99e4a9b3d0d984dbf44ab8ce3cdf3358ce99667266aabbd8a9
22 +DIST nio4r-1.2.0.gem 93696 SHA256 3427522115c07a9326c5859ca3cb261d0d7075f4289e27dd3982806902de6cbc SHA512 6d51195658f32873ce7698ccf30b1b8852d1e5cd4fdaba46533dbb56a3a999df0d22badf7504193d5f8458b362f147f3a9768b5d981b2c696246e1f21c6f1579 WHIRLPOOL ce492b96af9ae27e90f501a900097ba75209a2afc3d7e18737ce3c01b3238fec7647a89fb453c19ecc83416791d2b81efd2004f4d7f8265f63d48957f9d190be
23
24 diff --git a/dev-ruby/nio4r/nio4r-1.2.0.ebuild b/dev-ruby/nio4r/nio4r-1.2.0.ebuild
25 new file mode 100644
26 index 0000000..d7f368b
27 --- /dev/null
28 +++ b/dev-ruby/nio4r/nio4r-1.2.0.ebuild
29 @@ -0,0 +1,39 @@
30 +# Copyright 1999-2015 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +USE_RUBY="ruby20 ruby21 ruby22"
37 +
38 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 +
40 +RUBY_FAKEGEM_TASK_DOC=""
41 +RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
42 +
43 +inherit ruby-fakegem
44 +
45 +DESCRIPTION="A high performance selector API for monitoring IO objects"
46 +HOMEPAGE="https://github.com/celluloid/nio4r"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 +IUSE=""
52 +
53 +# Note that nio4r bundles a patched copy of libev, and without these
54 +# patches the tests fail: https://github.com/celluloid/nio4r/issues/15
55 +
56 +all_ruby_prepare() {
57 + sed -i -e '/[Cc]overalls/d' -e '/[Bb]undler/d' spec/spec_helper.rb || die
58 + sed -e '/extension/ s:^:#:' -i Rakefile || die
59 +}
60 +
61 +each_ruby_configure() {
62 + ${RUBY} -Cext/${PN} extconf.rb || die
63 +}
64 +
65 +each_ruby_compile() {
66 + emake V=1 -Cext/${PN}
67 + cp ext/${PN}/*$(get_modname) lib/ || die
68 +}