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-3.0.7.ebuild ChangeLog
Date: Tue, 26 Apr 2011 18:01:01
Message-Id: 20110426180052.7A3C620054@flycatcher.gentoo.org
1 graaff 11/04/26 18:00:52
2
3 Modified: ChangeLog
4 Added: activesupport-3.0.7.ebuild
5 Log:
6 Version bump for Rails 3.0.7.
7
8 (Portage version: 2.1.9.42/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.137 dev-ruby/activesupport/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.137&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.137&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?r1=1.136&r2=1.137
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
20 retrieving revision 1.136
21 retrieving revision 1.137
22 diff -u -r1.136 -r1.137
23 --- ChangeLog 26 Apr 2011 12:08:50 -0000 1.136
24 +++ ChangeLog 26 Apr 2011 18:00:52 -0000 1.137
25 @@ -1,6 +1,12 @@
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.136 2011/04/26 12:08:50 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.137 2011/04/26 18:00:52 graaff Exp $
30 +
31 +*activesupport-3.0.7 (26 Apr 2011)
32 +
33 + 26 Apr 2011; Hans de Graaff <graaff@g.o>
34 + +activesupport-3.0.7.ebuild:
35 + Version bump for Rails 3.0.7.
36
37 26 Apr 2011; Hans de Graaff <graaff@g.o>
38 activesupport-2.3.11.ebuild:
39
40
41
42 1.1 dev-ruby/activesupport/activesupport-3.0.7.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-3.0.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-3.0.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: activesupport-3.0.7.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.0.7.ebuild,v 1.1 2011/04/26 18:00:52 graaff Exp $
52
53 EAPI=2
54 USE_RUBY="ruby18 ree18"
55
56 RUBY_FAKEGEM_TASK_DOC=""
57
58 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
59
60 RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec"
61
62 inherit ruby-fakegem
63
64 DESCRIPTION="Utility Classes and Extension to the Standard Library"
65 HOMEPAGE="http://rubyforge.org/projects/activesupport/"
66 SRC_URI="https://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
67
68 LICENSE="MIT"
69 SLOT="3.0"
70 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
71 IUSE=""
72
73 S="${WORKDIR}/rails-rails-*/${PN}"
74
75 ruby_add_rdepend ">=dev-ruby/memcache-client-1.5.8"
76
77 # libxml-ruby and nokogiri are not strictly needed, but there are tests
78 # using this code.
79 ruby_add_bdepend "test? ( virtual/ruby-test-unit >=dev-ruby/libxml-2.0.0 dev-ruby/nokogiri )"
80
81 all_ruby_prepare() {
82 # don't support older mocha versions as the optional codepath
83 # breaks JRuby
84 epatch "${FILESDIR}"/${PN}-3.0.3-mocha-0.9.5.patch
85
86 # Set test environment to our hand.
87 rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
88 sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths"
89 }