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.11.ebuild
Date: Thu, 10 Jul 2014 06:17:16
Message-Id: 20140710061712.55A812004E@flycatcher.gentoo.org
1 graaff 14/07/10 06:17:12
2
3 Modified: ChangeLog
4 Added: i18n-0.6.11.ebuild
5 Log:
6 Version bump. Drop ppc,ppc64,x86 keywords, bug 501152.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.65 dev-ruby/i18n/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/ChangeLog?rev=1.65&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/ChangeLog?rev=1.65&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/ChangeLog?r1=1.64&r2=1.65
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
20 retrieving revision 1.64
21 retrieving revision 1.65
22 diff -u -r1.64 -r1.65
23 --- ChangeLog 21 May 2014 02:32:10 -0000 1.64
24 +++ ChangeLog 10 Jul 2014 06:17:12 -0000 1.65
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/i18n
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.64 2014/05/21 02:32:10 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.65 2014/07/10 06:17:12 graaff Exp $
30 +
31 +*i18n-0.6.11 (10 Jul 2014)
32 +
33 + 10 Jul 2014; Hans de Graaff <graaff@g.o> +i18n-0.6.11.ebuild:
34 + Version bump. Drop ppc,ppc64,x86 keywords, bug 501152.
35
36 21 May 2014; Manuel RĂ¼ger <mrueg@g.o> i18n-0.6.9.ebuild:
37 Remove ruby18 target.
38
39
40
41 1.1 dev-ruby/i18n/i18n-0.6.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/i18n-0.6.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/i18n-0.6.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: i18n-0.6.11.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/i18n/i18n-0.6.11.ebuild,v 1.1 2014/07/10 06:17:12 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21 jruby"
55
56 RUBY_FAKEGEM_RECIPE_TEST="test"
57 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
58 RUBY_FAKEGEM_EXTRADOC="README.md"
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 ~hppa ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
68 IUSE=""
69
70 ruby_add_bdepend "test? ( dev-ruby/activesupport
71 dev-ruby/mocha:1.0
72 dev-ruby/test_declarative
73 dev-ruby/test-unit:2 )"
74
75 each_ruby_test() {
76 ${RUBY} -w -Ilib -Itest test/all.rb || die
77 }
78
79 all_ruby_prepare() {
80 #Bundler isn't really necessary here, and it doesn't work with jruby
81 #Tests fail for jruby with >=mocha-0.13 unless we also include the
82 #test-unit gem. jruby also requires an explicit require of 'set'.
83 sed -i -e "/require 'bundler\/setup'/ s:^:#:" \
84 -e '1irequire "set"' \
85 -e "/require 'test\\/unit'/i gem 'test-unit'" test/test_helper.rb || die
86 }