Gentoo Archives: gentoo-commits

From: "Peter Wilmott (p8952)" <p8952@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/RubyInline: RubyInline-3.12.3-r1.ebuild ChangeLog
Date: Mon, 26 May 2014 13:22:07
Message-Id: 20140526132203.D163F2004E@flycatcher.gentoo.org
1 p8952 14/05/26 13:22:03
2
3 Modified: ChangeLog
4 Added: RubyInline-3.12.3-r1.ebuild
5 Log:
6 Fix tests and add ruby21 target
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.20 dev-ruby/RubyInline/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/RubyInline/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/RubyInline/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/RubyInline/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/RubyInline/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 4 May 2014 13:36:27 -0000 1.19
24 +++ ChangeLog 26 May 2014 13:22:03 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/RubyInline
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/RubyInline/ChangeLog,v 1.19 2014/05/04 13:36:27 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/RubyInline/ChangeLog,v 1.20 2014/05/26 13:22:03 p8952 Exp $
30 +
31 +*RubyInline-3.12.3-r1 (26 May 2014)
32 +
33 + 26 May 2014; Peter Wilmott <p8952@g.o> +RubyInline-3.12.3-r1.ebuild:
34 + Fix tests and add ruby21 target
35
36 *RubyInline-3.12.3 (04 May 2014)
37
38
39
40
41 1.1 dev-ruby/RubyInline/RubyInline-3.12.3-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/RubyInline/RubyInline-3.12.3-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/RubyInline/RubyInline-3.12.3-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: RubyInline-3.12.3-r1.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/RubyInline/RubyInline-3.12.3-r1.ebuild,v 1.1 2014/05/26 13:22:03 p8952 Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
57 RUBY_FAKEGEM_DOCDIR="doc"
58 RUBY_FAKEGEM_EXTRADOC="README.txt History.txt"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Allows to embed C/C++ in Ruby code"
63 HOMEPAGE="http://www.zenspider.com/ZSS/Products/RubyInline/"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
68 IUSE="doc test"
69
70 ruby_add_rdepend "dev-ruby/zentest"
71
72 ruby_add_bdepend "
73 test? (
74 >=dev-ruby/hoe-3
75 dev-ruby/hoe-seattlerb
76 dev-ruby/minitest:5
77 )"
78
79 RUBY_PATCHES=(
80 ruby-inline-3.12.2-gentoo.patch
81 ruby-inline-3.11.1-ldflags.patch
82 )
83
84 all_ruby_prepare() {
85 sed -i -e '/isolate/ s:^:#:' Rakefile || die
86 }
87
88 all_ruby_install() {
89 all_fakegem_install
90
91 docinto examples
92 dodoc example.rb example2.rb demo/*.rb
93 }