Gentoo Archives: gentoo-commits

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