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/i18n: ChangeLog i18n-0.6.9-r1.ebuild
Date: Wed, 25 Dec 2013 09:43:38
Message-Id: 20131225094335.1E3C02004C@flycatcher.gentoo.org
1 graaff 13/12/25 09:43:35
2
3 Modified: ChangeLog
4 Added: i18n-0.6.9-r1.ebuild
5 Log:
6 Add a new revision for ruby20 with Rails 4.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.58 dev-ruby/i18n/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/ChangeLog?rev=1.58&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/ChangeLog?rev=1.58&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/ChangeLog?r1=1.57&r2=1.58
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
20 retrieving revision 1.57
21 retrieving revision 1.58
22 diff -u -r1.57 -r1.58
23 --- ChangeLog 4 Dec 2013 07:19:15 -0000 1.57
24 +++ ChangeLog 25 Dec 2013 09:43:34 -0000 1.58
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/i18n
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.57 2013/12/04 07:19:15 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.58 2013/12/25 09:43:34 graaff Exp $
30 +
31 +*i18n-0.6.9-r1 (25 Dec 2013)
32 +
33 + 25 Dec 2013; Hans de Graaff <graaff@g.o> +i18n-0.6.9-r1.ebuild:
34 + Add a new revision for ruby20 with Rails 4.
35
36 *i18n-0.6.9 (04 Dec 2013)
37
38
39
40
41 1.1 dev-ruby/i18n/i18n-0.6.9-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/i18n-0.6.9-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/i18n-0.6.9-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: i18n-0.6.9-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.6.9-r1.ebuild,v 1.1 2013/12/25 09:43:34 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby18 jruby ruby19 ruby20"
55
56 RUBY_FAKEGEM_RECIPE_TEST="test"
57 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
58 RUBY_FAKEGEM_EXTRADOC="README.textile"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Add Internationalization support to your Ruby application."
63 HOMEPAGE="http://rails-i18n.org/"
64
65 LICENSE="MIT"
66 SLOT="0.6"
67 KEYWORDS="~amd64 ~arm"
68 IUSE=""
69
70 ruby_add_bdepend "test? ( dev-ruby/activesupport
71 dev-ruby/mocha:0.12
72 dev-ruby/test_declarative )"
73
74 each_ruby_test() {
75 ${RUBY} -w -Ilib -Itest test/all.rb || die
76 }
77
78 all_ruby_prepare() {
79 #Bundler isn't really necessary here, and it doesn't work with jruby
80 #Tests fail for ruby18 with >=mocha-0.13
81 sed -i -e "15s/require 'bundler\/setup'//"\
82 -e "/require 'mocha'/i gem 'mocha', '~>0.12.0'" test/test_helper.rb || die
83 }