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