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/files: activesupport-2.3.8-unvendorize.patch
Date: Mon, 31 May 2010 05:55:52
Message-Id: 20100531055546.DB8E12CAD8@corvid.gentoo.org
1 graaff 10/05/31 05:55:46
2
3 Added: activesupport-2.3.8-unvendorize.patch
4 Log:
5 Bump for Rails 2.3.8. Drop hppa/ppc/ppc64/x86-fbsd keywords due to new unkeyworded dependency.
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ruby/activesupport/files/activesupport-2.3.8-unvendorize.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/files/activesupport-2.3.8-unvendorize.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/activesupport/files/activesupport-2.3.8-unvendorize.patch?rev=1.1&content-type=text/plain
13
14 Index: activesupport-2.3.8-unvendorize.patch
15 ===================================================================
16 Index: activesupport-2.3.5/lib/active_support/vendor.rb
17 ===================================================================
18 --- activesupport-2.3.5.orig/lib/active_support/vendor.rb
19 +++ activesupport-2.3.5/lib/active_support/vendor.rb
20 @@ -1,11 +1,7 @@
21 # Prefer gems to the bundled libs.
22 require 'rubygems'
23
24 -begin
25 - gem 'builder', '~> 2.1.2'
26 -rescue Gem::LoadError
27 - $:.unshift "#{File.dirname(__FILE__)}/vendor/builder-2.1.2"
28 -end
29 +gem 'builder', '~> 2.1.2'
30 require 'builder'
31
32 begin
33 @@ -14,15 +10,7 @@ rescue Gem::LoadError
34 $:.unshift "#{File.dirname(__FILE__)}/vendor/memcache-client-1.7.4"
35 end
36
37 -begin
38 - gem 'tzinfo', '~> 0.3.12'
39 -rescue Gem::LoadError
40 - $:.unshift "#{File.dirname(__FILE__)}/vendor/tzinfo-0.3.12"
41 -end
42 +gem 'tzinfo', '~> 0.3.12'
43
44 -begin
45 - gem 'i18n', '>= 0.3.3'
46 -rescue Gem::LoadError
47 - $:.unshift "#{File.dirname(__FILE__)}/vendor/i18n-0.3.7"
48 -end
49 +gem 'i18n', '~> 0.3.3'
50 require 'i18n'