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: actionpack-2.3.9.ebuild ChangeLog
Date: Sun, 05 Sep 2010 09:20:34
Message-Id: 20100905092031.BAF8520051@flycatcher.gentoo.org
1 graaff 10/09/05 09:20:31
2
3 Modified: ChangeLog
4 Added: actionpack-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.157 dev-ruby/actionpack/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/ChangeLog?rev=1.157&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/ChangeLog?rev=1.157&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/ChangeLog?r1=1.156&r2=1.157
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v
19 retrieving revision 1.156
20 retrieving revision 1.157
21 diff -u -r1.156 -r1.157
22 --- ChangeLog 18 Aug 2010 10:47:37 -0000 1.156
23 +++ ChangeLog 5 Sep 2010 09:20:31 -0000 1.157
24 @@ -1,6 +1,11 @@
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.156 2010/08/18 10:47:37 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.157 2010/09/05 09:20:31 graaff Exp $
29 +
30 +*actionpack-2.3.9 (05 Sep 2010)
31 +
32 + 05 Sep 2010; Hans de Graaff <graaff@g.o> +actionpack-2.3.9.ebuild:
33 + Version bump for Rails 2.3.9
34
35 18 Aug 2010; Diego E. Pettenò <flameeyes@g.o>
36 actionpack-2.3.8-r1.ebuild:
37
38
39
40 1.1 dev-ruby/actionpack/actionpack-2.3.9.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/actionpack-2.3.9.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/actionpack/actionpack-2.3.9.ebuild?rev=1.1&content-type=text/plain
44
45 Index: actionpack-2.3.9.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/actionpack-2.3.9.ebuild,v 1.1 2010/09/05 09:20:31 graaff Exp $
50
51 EAPI=2
52
53 USE_RUBY="ruby18 ree18 jruby"
54
55 # The default test task tries to test activerecord with SQLite as well.
56 RUBY_FAKEGEM_TASK_TEST="test_action_pack"
57
58 RUBY_FAKEGEM_DOCDIR="doc"
59 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="Eases web-request routing, handling, and response."
64 HOMEPAGE="http://rubyforge.org/projects/actionpack/"
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_PATCHES=( "${P}-custom-cookie-fix.patch" )
72
73 ruby_add_rdepend "~dev-ruby/activesupport-${PV}
74 >=dev-ruby/rack-1.1.0"
75
76 ruby_add_bdepend "
77 test? (
78 dev-ruby/activerecord:${SLOT}
79 dev-ruby/actionmailer:${SLOT}
80 !dev-ruby/test-unit:2
81 )"
82
83 all_ruby_prepare() {
84 # Custom template not found in package
85 sed -i -e '/horo/d' Rakefile || die
86
87 # This tries to load a “vendorized” copy of activerecord that we
88 # will never have.
89 sed -i -e '/PATH_TO_AR/s:^:#:' test/active_record_unit.rb || die
90
91 # Fix the testsuite, the symlink is not present in the gem for
92 # some reason
93 ln -s ../../symlink_parent test/fixtures/layout_tests/layouts/symlinked
94
95 # Remove test that works fine by itself but causes other tests to fail
96 # https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/5554-actionpack-239-form_helper_test-test-failures
97 rm test/template/record_tag_helper_test.rb || die
98 }