commit: 6573baca3909c895986deba6aac3b63294f19a42 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com> AuthorDate: Mon Sep 26 16:25:02 2016 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Mon Oct 31 12:00:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6573baca
dev-ruby/sinatra: remove unused patch. Closes: https://github.com/gentoo/gentoo/pull/2417 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org> .../sinatra/files/sinatra-1.4.4-fix-tests.patch | 25 ---------------------- 1 file changed, 25 deletions(-) diff --git a/dev-ruby/sinatra/files/sinatra-1.4.4-fix-tests.patch b/dev-ruby/sinatra/files/sinatra-1.4.4-fix-tests.patch deleted file mode 100644 index 25ed730..00000000 --- a/dev-ruby/sinatra/files/sinatra-1.4.4-fix-tests.patch +++ /dev/null @@ -1,25 +0,0 @@ -commit c5c9f6b5501a366d5809faa44e50fad371c14870 -Author: Jon Rowe <he...@jonrowe.co.uk> -Date: Tue Oct 29 14:18:46 2013 +1100 - - fixes the build by disabling path traversal protection for this test - - Seems that this test is in direct competition with the desired - behaviour of path traversal protection. - -diff --git a/test/routing_test.rb b/test/routing_test.rb -index 410bfda..5584601 100644 ---- a/test/routing_test.rb -+++ b/test/routing_test.rb -@@ -90,7 +90,10 @@ class RoutingTest < Test::Unit::TestCase - end - - it "it handles encoded slashes correctly" do -- mock_app { get("/:a") { |a| a } } -+ mock_app { -+ set :protection, :except => :path_traversal -+ get("/:a") { |a| a } -+ } - get '/foo%2Fbar' - assert_equal 200, status - assert_body "foo/bar"