diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-09-21 19:03:13 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-09-29 22:33:11 +0200 |
commit | bb9a9e347d320c00617779581d5694921e8c29d5 (patch) | |
tree | be893f058805d3b302d36cb49d98b5e95b161cf2 /dev-ruby/packetfu | |
parent | Remove some masked for removal packages (diff) | |
download | gentoo-bb9a9e347d320c00617779581d5694921e8c29d5.tar.gz gentoo-bb9a9e347d320c00617779581d5694921e8c29d5.tar.bz2 gentoo-bb9a9e347d320c00617779581d5694921e8c29d5.zip |
dev-ruby/packetfu: remove unused patch.
Closes: https://github.com/gentoo/gentoo/pull/2381
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-ruby/packetfu')
-rw-r--r-- | dev-ruby/packetfu/files/packetfu-1.1.10-ruby2x-encoding.patch | 49 |
1 files changed, 0 insertions, 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 7d21833757b2..000000000000 --- 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 <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 |