dev-ruby/packetfu: remove unused patch.
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Wed, 21 Sep 2016 17:03:13 +0000 (19:03 +0200)
committerPatrice Clement <monsieurp@gentoo.org>
Thu, 29 Sep 2016 20:33:11 +0000 (22:33 +0200)
Closes: https://github.com/gentoo/gentoo/pull/2381

Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
dev-ruby/packetfu/files/packetfu-1.1.10-ruby2x-encoding.patch [deleted file]

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 (file)
index 7d21833..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-From ba3ef1af81b494248db230b4f7fdcc155fe256d5 Mon Sep 17 00:00:00 2001
-From: Jonathan Claudius <jclaudius@trustwave.com>
-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