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.2.3.ebuild
Date: Fri, 26 Jun 2015 08:31:32
Message-Id: 20150626083122.C75D4A54@oystercatcher.gentoo.org
1 graaff 15/06/26 08:31:22
2
3 Modified: ChangeLog
4 Added: activesupport-4.2.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.288 dev-ruby/activesupport/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.288&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.288&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?r1=1.287&r2=1.288
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
20 retrieving revision 1.287
21 retrieving revision 1.288
22 diff -u -r1.287 -r1.288
23 --- ChangeLog 26 Jun 2015 06:24:59 -0000 1.287
24 +++ ChangeLog 26 Jun 2015 08:31:22 -0000 1.288
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/activesupport
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.287 2015/06/26 06:24:59 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.288 2015/06/26 08:31:22 graaff Exp $
30 +
31 +*activesupport-4.2.3 (26 Jun 2015)
32 +
33 + 26 Jun 2015; Hans de Graaff <graaff@g.o> +activesupport-4.2.3.ebuild:
34 + Version bump.
35
36 *activesupport-4.1.12 (26 Jun 2015)
37
38
39
40
41 1.1 dev-ruby/activesupport/activesupport-4.2.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-4.2.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-4.2.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: activesupport-4.2.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.2.3.ebuild,v 1.1 2015/06/26 08:31:22 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="https://github.com/rails/rails"
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="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
73 IUSE=""
74
75 RUBY_S="rails-${PV}/${PN}"
76
77 ruby_add_rdepend "
78 >=dev-ruby/i18n-0.7:0.7
79 >=dev-ruby/json-1.7.7:0
80 >=dev-ruby/tzinfo-1.1:1
81 >=dev-ruby/minitest-5.1:5
82 >=dev-ruby/thread_safe-0.3.4:0"
83
84 # memcache-client, nokogiri, and builder are not strictly
85 # needed, but there are tests using this code.
86 ruby_add_bdepend "test? (
87 >=dev-ruby/dalli-2.2.1
88 >=dev-ruby/nokogiri-1.4.5
89 >=dev-ruby/builder-3.1.0
90 >=dev-ruby/libxml-2.0.0
91 )"
92
93 all_ruby_prepare() {
94 # Set the secure permissions that tests expect.
95 chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
96
97 # Set test environment to our hand.
98 # rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
99 sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths"
100
101 # Avoid test that seems to be broken by lack of DST.
102 sed -i -e '369 s:^:#:' test/core_ext/string_ext_test.rb || die
103
104 # Avoid test that fails with Minitest 5.4 since that already defines
105 # a string E in its TestCase.
106 rm test/core_ext/marshal_test.rb || die
107 sed -i -e '/test_const_missing_in_anonymous_modules/askip "gentoo minitest"' test/dependencies_test.rb || die
108 }