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/activesupport: ChangeLog activesupport-2.3.5-r4.ebuild activesupport-2.3.5-r3.ebuild
Date: Mon, 01 Feb 2010 16:40:32
Message-Id: E1NbzKA-0004wu-6T@stork.gentoo.org
1 flameeyes 10/02/01 16:40:30
2
3 Modified: ChangeLog
4 Added: activesupport-2.3.5-r4.ebuild
5 Removed: activesupport-2.3.5-r3.ebuild
6 Log:
7 Add patch to force support for mocha 0.9.5 or later, and adds support for JRuby.
8 (Portage version: 2.2_rc62/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.117 dev-ruby/activesupport/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.117&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.117&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/activesupport/ChangeLog?r1=1.116&r2=1.117
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
20 retrieving revision 1.116
21 retrieving revision 1.117
22 diff -u -r1.116 -r1.117
23 --- ChangeLog 18 Jan 2010 19:04:49 -0000 1.116
24 +++ ChangeLog 1 Feb 2010 16:40:29 -0000 1.117
25 @@ -1,6 +1,14 @@
26 # ChangeLog for dev-ruby/activesupport
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.116 2010/01/18 19:04:49 flameeyes Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.117 2010/02/01 16:40:29 flameeyes Exp $
30 +
31 +*activesupport-2.3.5-r4 (01 Feb 2010)
32 +
33 + 01 Feb 2010; Diego E. Pettenò <flameeyes@g.o>
34 + -activesupport-2.3.5-r3.ebuild, +activesupport-2.3.5-r4.ebuild,
35 + +files/activesupport-2.3.5-mocha-0.9.5.patch:
36 + Add patch to force support for mocha 0.9.5 or later, and adds support for
37 + JRuby.
38
39 *activesupport-2.3.5-r3 (18 Jan 2010)
40
41
42
43
44 1.1 dev-ruby/activesupport/activesupport-2.3.5-r4.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/activesupport/activesupport-2.3.5-r4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/activesupport/activesupport-2.3.5-r4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: activesupport-2.3.5-r4.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-2.3.5-r4.ebuild,v 1.1 2010/02/01 16:40:29 flameeyes Exp $
54
55 EAPI=2
56 USE_RUBY="ruby18 jruby"
57
58 RUBY_FAKEGEM_TASK_TEST=""
59 RUBY_FAKEGEM_TASK_DOC=""
60
61 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="Utility Classes and Extension to the Standard Library"
66 HOMEPAGE="http://rubyforge.org/projects/activesupport/"
67
68 LICENSE="MIT"
69 SLOT="2.3"
70 KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
71 IUSE=""
72
73 ruby_add_rdepend ">=dev-ruby/builder-2.1.2 >=dev-ruby/tzinfo-0.3.12 >=dev-ruby/i18n-0.1.3:0.1"
74
75 all_ruby_prepare() {
76 # Remove the bundled packages!
77 rm -r lib/active_support/vendor/{tzinfo,builder,i18n}-* \
78 || die "failed to remove vendor packages"
79
80 # This patch removes the fallback to local vendorized gems, as
81 # well as fixing the dependencies for i18n to use only the 0.1
82 # slot.
83 epatch "${FILESDIR}"/${P}-unvendorize.patch
84
85 # don't support older mocha versions as the optional codepath
86 # breaks JRuby
87 epatch "${FILESDIR}"/${P}-mocha-0.9.5.patch
88 }