Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: metadata.xml ChangeLog i18n-0.3.2.ebuild
Date: Sat, 02 Jan 2010 00:28:25
Message-Id: E1NQrqt-0003V4-Va@stork.gentoo.org
1 flameeyes 10/01/02 00:28:19
2
3 Added: metadata.xml ChangeLog i18n-0.3.2.ebuild
4 Log:
5 Initial import of i18n support for Rails. USE=doc is missing because of missing jeweler.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ruby/i18n/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/i18n/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/i18n/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>ruby</herd>
20 </pkgmetadata>
21
22
23
24 1.1 dev-ruby/i18n/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/i18n/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/i18n/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for dev-ruby/i18n
32 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.1 2010/01/02 00:28:19 flameeyes Exp $
34
35 *i18n-0.3.2 (02 Jan 2010)
36
37 02 Jan 2010; Diego E. Pettenò <flameeyes@g.o> +i18n-0.3.2.ebuild,
38 +metadata.xml:
39 Initial import of i18n support for Rails. USE=doc is missing because of
40 missing jeweler.
41
42
43
44
45 1.1 dev-ruby/i18n/i18n-0.3.2.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/i18n/i18n-0.3.2.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/i18n/i18n-0.3.2.ebuild?rev=1.1&content-type=text/plain
49
50 Index: i18n-0.3.2.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.3.2.ebuild,v 1.1 2010/01/02 00:28:19 flameeyes Exp $
55
56 EAPI=2
57
58 USE_RUBY="ruby18"
59
60 RUBY_FAKEGEM_EXTRAINSTALL="vendor"
61
62 # doc regeneration seem to need Jeweler, which is not currently
63 # available
64 RUBY_FAKEGEM_TASK_DOC=""
65
66 RUBY_FAKEGEM_EXTRADOC="README.textile CHANGELOG.textile"
67
68 inherit ruby-fakegem
69
70 DESCRIPTION="Add Internationalization support to your Ruby application."
71 HOMEPAGE="http://rails-i18n.org/"
72
73 LICENSE="MIT"
74 SLOT="0"
75 KEYWORDS="~amd64"
76 IUSE=""
77
78 DEPEND="!<dev-ruby/activesupport-2.3.5-r2"
79 RDEPEND="${DEPEND}"
80
81 # This is an optional runtime dependency, for now consider it only a
82 # dependency for tests.
83 ruby_add_bdepend test dev-ruby/activerecord
84
85 src_prepare() {
86 ruby-ng_src_prepare
87 chmod 0755 ${WORKDIR/work/homedir} || die "Failed to fix permissions on home"
88 }
89
90 src_test() {
91 chmod 0755 ${WORKDIR/work/homedir} || die "Failed to fix permissions on home"
92 ruby-ng_src_test
93 }