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/activesupport: activesupport-2.3.9.ebuild ChangeLog
Date: Sun, 05 Sep 2010 09:17:08
Message-Id: 20100905091704.CF34A20051@flycatcher.gentoo.org
1 graaff 10/09/05 09:17:04
2
3 Modified: ChangeLog
4 Added: activesupport-2.3.9.ebuild
5 Log:
6 Version bump for Rails 2.3.9
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.122 dev-ruby/activesupport/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.122&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.122&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?r1=1.121&r2=1.122
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
19 retrieving revision 1.121
20 retrieving revision 1.122
21 diff -u -r1.121 -r1.122
22 --- ChangeLog 31 May 2010 05:55:46 -0000 1.121
23 +++ ChangeLog 5 Sep 2010 09:17:04 -0000 1.122
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/activesupport
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.121 2010/05/31 05:55:46 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.122 2010/09/05 09:17:04 graaff Exp $
29 +
30 +*activesupport-2.3.9 (05 Sep 2010)
31 +
32 + 05 Sep 2010; Hans de Graaff <graaff@g.o>
33 + +activesupport-2.3.9.ebuild, +files/activesupport-2.3.9-unvendorize.patch:
34 + Version bump for Rails 2.3.9
35
36 *activesupport-2.3.8 (31 May 2010)
37
38
39
40
41 1.1 dev-ruby/activesupport/activesupport-2.3.9.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-2.3.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-2.3.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: activesupport-2.3.9.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-2.3.9.ebuild,v 1.1 2010/09/05 09:17:04 graaff Exp $
51
52 EAPI=2
53 USE_RUBY="ruby18 ree18 jruby"
54
55 RUBY_FAKEGEM_TASK_TEST=""
56 RUBY_FAKEGEM_TASK_DOC=""
57
58 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Utility Classes and Extension to the Standard Library"
63 HOMEPAGE="http://rubyforge.org/projects/activesupport/"
64
65 LICENSE="MIT"
66 SLOT="2.3"
67 KEYWORDS="~amd64 ~ia64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
68 IUSE=""
69
70 ruby_add_rdepend ">=dev-ruby/builder-2.1.2 >=dev-ruby/tzinfo-0.3.16 >=dev-ruby/i18n-0.4.1:0.4"
71
72 all_ruby_prepare() {
73 # Remove the bundled packages!
74 rm -r lib/active_support/vendor/{tzinfo,builder,i18n}-* \
75 || die "failed to remove vendor packages"
76
77 # This patch removes the fallback to local vendorized gems, as
78 # well as fixing the dependencies for i18n to use the correct
79 # slot.
80 epatch "${FILESDIR}"/${P}-unvendorize.patch
81
82 # don't support older mocha versions as the optional codepath
83 # breaks JRuby
84 epatch "${FILESDIR}"/${PN}-2.3.5-mocha-0.9.5.patch
85 }