diff options
author | Milan P. Stanić <mps@arvanta.net> | 2018-12-10 23:18:31 +0100 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-12-18 13:44:49 +0000 |
commit | 8ba9da3887a3d3030f4c85f2d148279c9bba012a (patch) | |
tree | 345e041f2c21e199ae76d0f1da2828695557a87d /community/crystal/fix-spec-http-server.patch | |
parent | fa82fcd9c616841057826c7051270502a9e3ddab (diff) | |
download | aports-8ba9da3887a3d3030f4c85f2d148279c9bba012a.tar.bz2 aports-8ba9da3887a3d3030f4c85f2d148279c9bba012a.tar.xz |
community/crystal upgrade to 0.27.0, remove libressl
upgrade to 0.27.0 version
build with openssl instead of libressl
remove paxmark build dependence
fix test specs according to advice from upstream
Diffstat (limited to 'community/crystal/fix-spec-http-server.patch')
-rw-r--r-- | community/crystal/fix-spec-http-server.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/community/crystal/fix-spec-http-server.patch b/community/crystal/fix-spec-http-server.patch new file mode 100644 index 0000000000..9ab3a511e9 --- /dev/null +++ b/community/crystal/fix-spec-http-server.patch @@ -0,0 +1,20 @@ +--- a/spec/std/http/server/server_spec.cr ++++ b/spec/std/http/server/server_spec.cr +@@ -491,7 +491,7 @@ + end + {% end %} + +- it "handles exception during SSL handshake (#6577)" do ++ pending "handles exception during SSL handshake (#6577)" do + server = SilentErrorHTTPServer.new do |context| + context.response.print "ok" + context.response.close +@@ -524,7 +524,7 @@ + end + + describe "#close" do +- it "closes gracefully" do ++ pending "closes gracefully" do + server = Server.new do |context| + context.response.flush + context.response.puts "foo" |