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-4.0.6.ebuild
Date: Thu, 26 Jun 2014 19:20:54
Message-Id: 20140626192042.D23042004E@flycatcher.gentoo.org
1 graaff 14/06/26 19:20:42
2
3 Modified: ChangeLog
4 Added: activesupport-4.0.6.ebuild
5 Log:
6 Version bump to Rails 4.0.6.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.258 dev-ruby/activesupport/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.258&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.258&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?r1=1.257&r2=1.258
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
20 retrieving revision 1.257
21 retrieving revision 1.258
22 diff -u -r1.257 -r1.258
23 --- ChangeLog 12 May 2014 19:03:25 -0000 1.257
24 +++ ChangeLog 26 Jun 2014 19:20:42 -0000 1.258
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/activesupport
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.257 2014/05/12 19:03:25 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.258 2014/06/26 19:20:42 graaff Exp $
30 +
31 +*activesupport-4.0.6 (26 Jun 2014)
32 +
33 + 26 Jun 2014; Hans de Graaff <graaff@g.o> +activesupport-4.0.6.ebuild:
34 + Version bump to Rails 4.0.6.
35
36 12 May 2014; Hans de Graaff <graaff@g.o> -activesupport-3.2.17.ebuild,
37 -activesupport-4.0.3.ebuild, -activesupport-4.0.4.ebuild,
38
39
40
41 1.1 dev-ruby/activesupport/activesupport-4.0.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-4.0.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-4.0.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: activesupport-4.0.6.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-4.0.6.ebuild,v 1.1 2014/06/26 19:20:42 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 RUBY_FAKEGEM_TASK_DOC=""
57
58 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
59
60 RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec"
61
62 RUBY_FAKEGEM_BINWRAP=""
63
64 inherit ruby-fakegem versionator
65
66 DESCRIPTION="Utility Classes and Extension to the Standard Library"
67 HOMEPAGE="http://rubyforge.org/projects/activesupport/"
68 SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz"
69
70 LICENSE="MIT"
71 SLOT="$(get_version_component_range 1-2)"
72 KEYWORDS="~amd64 ~arm ~hppa ~x86"
73 IUSE=""
74
75 RUBY_S="rails-${PV}/${PN}"
76
77 ruby_add_rdepend "
78 >=dev-ruby/multi_json-1.3:0
79 >=dev-ruby/i18n-0.6.9:0.6
80 >=dev-ruby/tzinfo-0.3.37:0
81 >=dev-ruby/minitest-4.2:0
82 >=dev-ruby/thread_safe-0.1:0
83 !!<dev-ruby/activesupport-3.0.11-r1:3.0"
84
85 # memcache-client, nokogiri, and builder are not strictly
86 # needed, but there are tests using this code.
87 ruby_add_bdepend "test? (
88 >=dev-ruby/dalli-2.2.1
89 >=dev-ruby/nokogiri-1.4.5
90 >=dev-ruby/builder-3.1.0
91 >=dev-ruby/libxml-2.0.0
92 )"
93
94 all_ruby_prepare() {
95 # Set the secure permissions that tests expect.
96 chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
97
98 # Set test environment to our hand.
99 # rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
100 sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths"
101
102 # Make sure a compatible version of minitest is used everywhere.
103 sed -i -e "s/gem 'minitest'/gem 'minitest', '~> 4.2'/" lib/active_support/test_case.rb || die
104 sed -i -e "1igem 'minitest', '~> 4.2'" test/abstract_unit.rb || die
105 }