commit:     bb9a9e347d320c00617779581d5694921e8c29d5
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail 
<DOT> com>
AuthorDate: Wed Sep 21 17:03:13 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Sep 29 20:33:11 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9a9e34

dev-ruby/packetfu: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2381

Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 .../files/packetfu-1.1.10-ruby2x-encoding.patch    | 49 ----------------------
 1 file changed, 49 deletions(-)

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
deleted file mode 100644
index 7d21833..00000000
--- a/dev-ruby/packetfu/files/packetfu-1.1.10-ruby2x-encoding.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From ba3ef1af81b494248db230b4f7fdcc155fe256d5 Mon Sep 17 00:00:00 2001
-From: Jonathan Claudius <[email protected]>
-Date: Sat, 5 Apr 2014 22:15:00 -0400
-Subject: [PATCH] Fix encoding issues in specs for Ruby 2.x
-
----
- spec/structfu_spec.rb | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/spec/structfu_spec.rb b/spec/structfu_spec.rb
-index c48c856..84b7e22 100644
---- a/spec/structfu_spec.rb
-+++ b/spec/structfu_spec.rb
-@@ -78,7 +78,7 @@ class StructClass
-               @int.to_s.should == "\x02"
-               @int.read(254)
-               @int.to_i.should == 254
--              @int.to_s.should == "\xfe"
-+              @int.to_s.should == "\xfe".force_encoding("binary")
-       end
- 
- end
-@@ -98,7 +98,7 @@ class StructClass
-       end
- 
-       it "should print a two character packed string" do
--              @int.to_s.should == "\x00\x0b"
-+              @int.to_s.should == "\x00\x0b".force_encoding("binary")
-       end
- 
-       it "should have a value of 11" do
-@@ -113,7 +113,7 @@ class StructClass
-               @int.to_s.should == "\x00\x02"
-               @int.read(254)
-               @int.to_i.should == 254
--              @int.to_s.should == "\x00\xfe"
-+              @int.to_s.should == "\x00\xfe".force_encoding("binary")
-       end
- 
-       it "should be able to set endianness" do
-@@ -198,7 +198,7 @@ class StructClass
-               @int.to_s.should == "\x00\x00\x00\x02"
-               @int.read(254)
-               @int.to_i.should == 254
--              @int.to_s.should == "\x00\x00\x00\xfe"
-+              @int.to_s.should == "\x00\x00\x00\xfe".force_encoding("binary")
-       end
- 
-       it "should be able to set endianness" do

Reply via email to