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