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-2.3.16.ebuild
Date: Mon, 28 Jan 2013 21:37:07
Message-Id: 20130128213658.47C572171D@flycatcher.gentoo.org
1 graaff 13/01/28 21:36:58
2
3 Modified: ChangeLog
4 Added: activesupport-2.3.16.ebuild
5 Log:
6 Version bump for security bug 453844.
7
8 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.205 dev-ruby/activesupport/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.205&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?rev=1.205&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/ChangeLog?r1=1.204&r2=1.205
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v
20 retrieving revision 1.204
21 retrieving revision 1.205
22 diff -u -r1.204 -r1.205
23 --- ChangeLog 20 Jan 2013 15:05:26 -0000 1.204
24 +++ ChangeLog 28 Jan 2013 21:36:58 -0000 1.205
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/activesupport
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.204 2013/01/20 15:05:26 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/ChangeLog,v 1.205 2013/01/28 21:36:58 graaff Exp $
30 +
31 +*activesupport-2.3.16 (28 Jan 2013)
32 +
33 + 28 Jan 2013; Hans de Graaff <graaff@g.o> +activesupport-2.3.16.ebuild,
34 + +files/activesupport-2.3.16-unvendorize.patch:
35 + Version bump for security bug 453844.
36
37 20 Jan 2013; Hans de Graaff <graaff@g.o>
38 -activesupport-2.3.14-r1.ebuild, -activesupport-3.0.18.ebuild,
39
40
41
42 1.1 dev-ruby/activesupport/activesupport-2.3.16.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-2.3.16.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/activesupport-2.3.16.ebuild?rev=1.1&content-type=text/plain
46
47 Index: activesupport-2.3.16.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-2.3.16.ebuild,v 1.1 2013/01/28 21:36:58 graaff Exp $
52
53 EAPI=2
54 USE_RUBY="ruby18 ree18 jruby"
55
56 RUBY_FAKEGEM_TASK_TEST=""
57 RUBY_FAKEGEM_TASK_DOC=""
58
59 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="Utility Classes and Extension to the Standard Library"
64 HOMEPAGE="http://rubyforge.org/projects/activesupport/"
65
66 LICENSE="MIT"
67 SLOT="2.3"
68 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
69 IUSE=""
70
71 ruby_add_rdepend ">=dev-ruby/builder-2.1.2:0 >=dev-ruby/tzinfo-0.3.16 >=dev-ruby/i18n-0.4.1:0.4"
72
73 all_ruby_prepare() {
74 # Remove the bundled packages!
75 rm -r lib/active_support/vendor/{tzinfo,builder,i18n}-* \
76 || die "failed to remove vendor packages"
77
78 # This patch removes the fallback to local vendorized gems, as well
79 # as fixing the dependencies for i18n to use the correct slot. It
80 # also edits the metadata file so that the dependencies are added to
81 # the specification, which is required for bundler to pick them up
82 # (which in turn is required by radiant 1.0.0rc3 to
83 # work). Furthermore remove the references to the vendorized copies
84 # from the specification, to be safe.
85 mv ../metadata . || die
86 epatch "${FILESDIR}"/${PN}-2.3.16-unvendorize.patch
87 mv metadata .. || die
88 sed -i -e '/\/vendor\//d' ../metadata
89
90 # don't support older mocha versions as the optional codepath
91 # breaks JRuby
92 epatch "${FILESDIR}"/${PN}-2.3.5-mocha-0.9.5.patch
93 }