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/actionpack: ChangeLog actionpack-2.3.8.ebuild
Date: Mon, 31 May 2010 05:59:59
Message-Id: 20100531055954.1FB172CF37@corvid.gentoo.org
1 graaff 10/05/31 05:59:54
2
3 Modified: ChangeLog
4 Added: actionpack-2.3.8.ebuild
5 Log:
6 Bump for Rails 2.3.8. Drop ppc/ppc64 keywords due to new unkeyworded dependency.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.154 dev-ruby/actionpack/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/ChangeLog?rev=1.154&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/ChangeLog?rev=1.154&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/ChangeLog?r1=1.153&r2=1.154
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v
19 retrieving revision 1.153
20 retrieving revision 1.154
21 diff -u -r1.153 -r1.154
22 --- ChangeLog 23 May 2010 10:49:20 -0000 1.153
23 +++ ChangeLog 31 May 2010 05:59:53 -0000 1.154
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/actionpack
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.153 2010/05/23 10:49:20 a3li Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.154 2010/05/31 05:59:53 graaff Exp $
29 +
30 +*actionpack-2.3.8 (31 May 2010)
31 +
32 + 31 May 2010; Hans de Graaff <graaff@g.o> +actionpack-2.3.8.ebuild:
33 + Bump for Rails 2.3.8. Drop ppc/ppc64 keywords due to new unkeyworded
34 + dependency.
35
36 23 May 2010; Alex Legler <a3li@g.o> actionpack-2.3.5-r1.ebuild:
37 Add REE18 support
38
39
40
41 1.1 dev-ruby/actionpack/actionpack-2.3.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/actionpack-2.3.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/actionpack-2.3.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: actionpack-2.3.8.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/actionpack/actionpack-2.3.8.ebuild,v 1.1 2010/05/31 05:59:53 graaff Exp $
51
52 EAPI=2
53
54 USE_RUBY="ruby18 ree18 jruby"
55
56 # The default test task tries to test activerecord with SQLite as well.
57 RUBY_FAKEGEM_TASK_TEST="test_action_pack"
58
59 RUBY_FAKEGEM_DOCDIR="doc"
60 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README"
61
62 inherit ruby-fakegem
63
64 DESCRIPTION="Eases web-request routing, handling, and response."
65 HOMEPAGE="http://rubyforge.org/projects/actionpack/"
66
67 LICENSE="MIT"
68 SLOT="2.3"
69 KEYWORDS="~amd64 ~ia64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
70 IUSE=""
71
72 ruby_add_rdepend "~dev-ruby/activesupport-${PV}
73 >=dev-ruby/rack-1.1.0"
74
75 ruby_add_bdepend test "dev-ruby/activerecord:${SLOT} dev-ruby/actionmailer:${SLOT}"
76
77 all_ruby_prepare() {
78 # Custom template not found in package
79 sed -i -e '/horo/d' Rakefile || die
80
81 # This tries to load a “vendorized” copy of activerecord that we
82 # will never have.
83 sed -i -e '/PATH_TO_AR/s:^:#:' test/active_record_unit.rb || die
84
85 # Fix the testsuite, the symlink is not present in the gem for
86 # some reason
87 ln -s ../../symlink_parent test/fixtures/layout_tests/layouts/symlinked
88 }