Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/aws-sdk/files: aws-sdk-1.6.7.patch
Date: Tue, 02 Oct 2012 03:15:53
Message-Id: 20121002031536.A1C9420E47@flycatcher.gentoo.org
1 flameeyes 12/10/02 03:15:36
2
3 Modified: aws-sdk-1.6.7.patch
4 Log:
5 Revision bump to fix broken base64 value.
6
7 (Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-ruby/aws-sdk/files/aws-sdk-1.6.7.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/aws-sdk/files/aws-sdk-1.6.7.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/aws-sdk/files/aws-sdk-1.6.7.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/aws-sdk/files/aws-sdk-1.6.7.patch?r1=1.1&r2=1.2
15
16 Index: aws-sdk-1.6.7.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/aws-sdk/files/aws-sdk-1.6.7.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- aws-sdk-1.6.7.patch 2 Oct 2012 01:29:04 -0000 1.1
23 +++ aws-sdk-1.6.7.patch 2 Oct 2012 03:15:36 -0000 1.2
24 @@ -1,5 +1,5 @@
25 diff --git a/lib/aws/core/option_grammar.rb b/lib/aws/core/option_grammar.rb
26 -index bb612bb..8d00eff 100644
27 +index bb612bb..39d6464 100644
28 --- a/lib/aws/core/option_grammar.rb
29 +++ b/lib/aws/core/option_grammar.rb
30 @@ -11,7 +11,6 @@
31 @@ -15,12 +15,12 @@
32
33 def encode_value(value)
34 - Base64.strict_encode64(value.to_s)
35 -+ [value.to_s].pack("m0").chomp
36 ++ [value.to_s].pack("m0").gsub("\n", '')
37 end
38
39 def hash_format(value)
40 - Base64.strict_encode64(value.to_s)
41 -+ [value.to_s].pack("m0").chomp
42 ++ [value.to_s].pack("m0").gsub("\n", '')
43 end
44
45 end