Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/packetfu/files/
Date: Thu, 29 Sep 2016 20:33:29
Message-Id: 1475181191.bb9a9e347d320c00617779581d5694921e8c29d5.monsieurp@gentoo
1 commit: bb9a9e347d320c00617779581d5694921e8c29d5
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Sep 21 17:03:13 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 29 20:33:11 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9a9e34
7
8 dev-ruby/packetfu: remove unused patch.
9
10 Closes: https://github.com/gentoo/gentoo/pull/2381
11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 .../files/packetfu-1.1.10-ruby2x-encoding.patch | 49 ----------------------
15 1 file changed, 49 deletions(-)
16
17 diff --git a/dev-ruby/packetfu/files/packetfu-1.1.10-ruby2x-encoding.patch b/dev-ruby/packetfu/files/packetfu-1.1.10-ruby2x-encoding.patch
18 deleted file mode 100644
19 index 7d21833..00000000
20 --- a/dev-ruby/packetfu/files/packetfu-1.1.10-ruby2x-encoding.patch
21 +++ /dev/null
22 @@ -1,49 +0,0 @@
23 -From ba3ef1af81b494248db230b4f7fdcc155fe256d5 Mon Sep 17 00:00:00 2001
24 -From: Jonathan Claudius <jclaudius@×××××××××.com>
25 -Date: Sat, 5 Apr 2014 22:15:00 -0400
26 -Subject: [PATCH] Fix encoding issues in specs for Ruby 2.x
27 -
28 ----
29 - spec/structfu_spec.rb | 8 ++++----
30 - 1 file changed, 4 insertions(+), 4 deletions(-)
31 -
32 -diff --git a/spec/structfu_spec.rb b/spec/structfu_spec.rb
33 -index c48c856..84b7e22 100644
34 ---- a/spec/structfu_spec.rb
35 -+++ b/spec/structfu_spec.rb
36 -@@ -78,7 +78,7 @@ class StructClass
37 - @int.to_s.should == "\x02"
38 - @int.read(254)
39 - @int.to_i.should == 254
40 -- @int.to_s.should == "\xfe"
41 -+ @int.to_s.should == "\xfe".force_encoding("binary")
42 - end
43 -
44 - end
45 -@@ -98,7 +98,7 @@ class StructClass
46 - end
47 -
48 - it "should print a two character packed string" do
49 -- @int.to_s.should == "\x00\x0b"
50 -+ @int.to_s.should == "\x00\x0b".force_encoding("binary")
51 - end
52 -
53 - it "should have a value of 11" do
54 -@@ -113,7 +113,7 @@ class StructClass
55 - @int.to_s.should == "\x00\x02"
56 - @int.read(254)
57 - @int.to_i.should == 254
58 -- @int.to_s.should == "\x00\xfe"
59 -+ @int.to_s.should == "\x00\xfe".force_encoding("binary")
60 - end
61 -
62 - it "should be able to set endianness" do
63 -@@ -198,7 +198,7 @@ class StructClass
64 - @int.to_s.should == "\x00\x00\x00\x02"
65 - @int.read(254)
66 - @int.to_i.should == 254
67 -- @int.to_s.should == "\x00\x00\x00\xfe"
68 -+ @int.to_s.should == "\x00\x00\x00\xfe".force_encoding("binary")
69 - end
70 -
71 - it "should be able to set endianness" do