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.7.0.ebuild
Date: Wed, 31 Dec 2014 12:15:13
Message-Id: 20141231121509.B1EDEE8FF@oystercatcher.gentoo.org
1 graaff 14/12/31 12:15:09
2
3 Modified: ChangeLog
4 Added: i18n-0.7.0.ebuild
5 Log:
6 Version bump for Rails 4.2.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.69 dev-ruby/i18n/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/ChangeLog?rev=1.69&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/ChangeLog?rev=1.69&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/ChangeLog?r1=1.68&r2=1.69
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
20 retrieving revision 1.68
21 retrieving revision 1.69
22 diff -u -r1.68 -r1.69
23 --- ChangeLog 17 Aug 2014 00:43:07 -0000 1.68
24 +++ ChangeLog 31 Dec 2014 12:15:09 -0000 1.69
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.68 2014/08/17 00:43:07 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.69 2014/12/31 12:15:09 graaff Exp $
30 +
31 +*i18n-0.7.0 (31 Dec 2014)
32 +
33 + 31 Dec 2014; Hans de Graaff <graaff@g.o> +i18n-0.7.0.ebuild:
34 + Version bump for Rails 4.2.
35
36 17 Aug 2014; Anthony G. Basile <blueness@g.o> i18n-0.6.11.ebuild:
37 Keyword on ~ppc and ~ppc64, request by mrueg
38
39
40
41 1.1 dev-ruby/i18n/i18n-0.7.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/i18n-0.7.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/i18n/i18n-0.7.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: i18n-0.7.0.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.7.0.ebuild,v 1.1 2014/12/31 12:15:09 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 RUBY_FAKEGEM_RECIPE_TEST="test"
57 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
58 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
59
60 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
61
62 inherit ruby-fakegem versionator
63
64 DESCRIPTION="Add Internationalization support to your Ruby application"
65 HOMEPAGE="http://rails-i18n.org/"
66 SRC_URI="https://github.com/svenfuchs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
67
68 LICENSE="MIT"
69 SLOT="$(get_version_component_range 1-2)"
70 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
71 IUSE=""
72
73 ruby_add_bdepend "test? (
74 >=dev-ruby/activesupport-3.2 <dev-ruby/activesupport-4.3
75 dev-ruby/bundler
76 dev-ruby/mocha:0.13
77 dev-ruby/test_declarative )"
78
79 all_ruby_prepare() {
80 # Remove bundler lock files since we cannot depend on specific
81 # versions in Gentoo.
82 rm gemfiles/*.lock || die
83 }
84
85 each_ruby_test() {
86 for version in 3.2 4.0 4.1 4.2 ; do
87 if has_version "dev-ruby/activesupport:${version}" ; then
88 einfo "Running tests with activesupport ${version}"
89 BUNDLE_GEMFILE="${S}/gemfiles/Gemfile.rails-${version}.x" ${RUBY} -S bundle exec ${RUBY} -S rake test || die
90 fi
91 done
92 }