Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/nio4r: ChangeLog nio4r-1.0.1.ebuild
Date: Sat, 01 Nov 2014 08:26:46
Message-Id: 20141101082641.88BB99324@oystercatcher.gentoo.org
1 graaff 14/11/01 08:26:41
2
3 Modified: ChangeLog
4 Added: nio4r-1.0.1.ebuild
5 Log:
6 Version bump. Use bundled and patched libev, fixing bug 527330.
7
8 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.4 dev-ruby/nio4r/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nio4r/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nio4r/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nio4r/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/nio4r/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 12 Aug 2014 22:46:53 -0000 1.3
24 +++ ChangeLog 1 Nov 2014 08:26:41 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/nio4r
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nio4r/ChangeLog,v 1.3 2014/08/12 22:46:53 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nio4r/ChangeLog,v 1.4 2014/11/01 08:26:41 graaff Exp $
30 +
31 +*nio4r-1.0.1 (01 Nov 2014)
32 +
33 + 01 Nov 2014; Hans de Graaff <graaff@g.o> +nio4r-1.0.1.ebuild:
34 + Version bump. Use bundled and patched libev, fixing bug 527330.
35
36 12 Aug 2014; Anthony G. Basile <blueness@g.o> nio4r-1.0.0.ebuild:
37 Keyword ~ppc and ~ppc64, bug #519596
38
39
40
41 1.1 dev-ruby/nio4r/nio4r-1.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nio4r/nio4r-1.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nio4r/nio4r-1.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: nio4r-1.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/nio4r/nio4r-1.0.1.ebuild,v 1.1 2014/11/01 08:26:41 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 RUBY_FAKEGEM_RECIPE_TEST="rspec"
57
58 RUBY_FAKEGEM_TASK_DOC=""
59 RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="A high performance selector API for monitoring IO objects"
64 HOMEPAGE="https://github.com/celluloid/nio4r"
65
66 LICENSE="MIT"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ppc ~ppc64"
69 IUSE=""
70
71 # Note that nio4r bundles a patched copy of libev, and without these
72 # patches the tests fail: https://github.com/celluloid/nio4r/issues/15
73
74 all_ruby_prepare() {
75 sed -i -e '/[Cc]overalls/d' -e '/[Bb]undler/d' spec/spec_helper.rb || die
76 sed -e '/extension/ s:^:#:' -i Rakefile || die
77 }
78
79 each_ruby_configure() {
80 ${RUBY} -Cext/${PN} extconf.rb || die
81 }
82
83 each_ruby_compile() {
84 emake V=1 -Cext/${PN}
85 cp ext/${PN}/*$(get_modname) lib/ || die
86 }