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/gettext_i18n_rails: gettext_i18n_rails-1.0.5.ebuild ChangeLog
Date: Thu, 03 Jul 2014 09:36:01
Message-Id: 20140703093557.C3B262004E@flycatcher.gentoo.org
1 graaff 14/07/03 09:35:57
2
3 Modified: ChangeLog
4 Added: gettext_i18n_rails-1.0.5.ebuild
5 Log:
6 Version bump. Add ruby20. Drop x86 keyword, bug 508836.
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.27 dev-ruby/gettext_i18n_rails/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/gettext_i18n_rails/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/gettext_i18n_rails/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/gettext_i18n_rails/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gettext_i18n_rails/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 2 May 2014 14:48:54 -0000 1.26
24 +++ ChangeLog 3 Jul 2014 09:35:57 -0000 1.27
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/gettext_i18n_rails
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gettext_i18n_rails/ChangeLog,v 1.26 2014/05/02 14:48:54 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gettext_i18n_rails/ChangeLog,v 1.27 2014/07/03 09:35:57 graaff Exp $
30 +
31 +*gettext_i18n_rails-1.0.5 (03 Jul 2014)
32 +
33 + 03 Jul 2014; Hans de Graaff <graaff@g.o>
34 + +gettext_i18n_rails-1.0.5.ebuild:
35 + Version bump. Add ruby20. Drop x86 keyword, bug 508836.
36
37 02 May 2014; Hans de Graaff <graaff@g.o>
38 -gettext_i18n_rails-0.9.2.ebuild, -gettext_i18n_rails-0.9.4.ebuild:
39
40
41
42 1.1 dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.0.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.0.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.0.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gettext_i18n_rails-1.0.5.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.0.5.ebuild,v 1.1 2014/07/03 09:35:57 graaff Exp $
52
53 EAPI=5
54
55 # jruby support requires sqlite3 support for jruby.
56 USE_RUBY="ruby19 ruby20"
57
58 RUBY_FAKEGEM_TASK_DOC=""
59 RUBY_FAKEGEM_EXTRADOC="Readme.md"
60
61 RUBY_FAKEGEM_RECIPE_TEST="rspec"
62
63 RUBY_FAKEGEM_EXTRAINSTALL="init.rb"
64
65 inherit ruby-fakegem
66
67 DESCRIPTION="FastGettext / Rails integration."
68 HOMEPAGE="https://github.com/grosser/gettext_i18n_rails"
69 SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
70
71 LICENSE="public-domain"
72 SLOT="0"
73 KEYWORDS="~amd64"
74 IUSE=""
75
76 ruby_add_bdepend "test? ( dev-ruby/activerecord:3.2[sqlite3] dev-ruby/temple )"
77 ruby_add_rdepend ">=dev-ruby/fast_gettext-0.4.8"
78
79 all_ruby_prepare() {
80 rm Gemfile Gemfile.lock || die
81
82 # Remove specs for slim and hamlet, template engines we don't package.
83 rm spec/gettext_i18n_rails/slim_parser_spec.rb spec/gettext_i18n_rails/haml_parser_spec.rb || die
84
85 # Test against Rails 3.2 (newer versions don't work and we don't use
86 # appraisals for now.
87 sed -e '2igem "rails", "~>3.2.0"' -i spec/spec_helper.rb || die
88 }