From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1080C138334 for ; Sat, 21 Dec 2019 16:50:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3479E08E0; Sat, 21 Dec 2019 16:50:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 73DEFE08E0 for ; Sat, 21 Dec 2019 16:50:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EB3DD34D261 for ; Sat, 21 Dec 2019 16:50:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E1CB778 for ; Sat, 21 Dec 2019 16:50:43 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1576947037.b6eb3fa35ff0a27cf374f76701f655d4bc8ac9d4.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/crystal/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/crystal/files/crystal-0.26.1-gentoo-tests-network-sandbox-3.patch dev-lang/crystal/files/crystal-0.27.0-tcp-server-test.patch dev-lang/crystal/files/crystal-0.27.1-verbose.patch X-VCS-Directories: dev-lang/crystal/files/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: b6eb3fa35ff0a27cf374f76701f655d4bc8ac9d4 X-VCS-Branch: master Date: Sat, 21 Dec 2019 16:50:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4830558a-3902-407e-972d-fd049d902d2c X-Archives-Hash: 9e88f4a4c805275d2f4867900ba04112 commit: b6eb3fa35ff0a27cf374f76701f655d4bc8ac9d4 Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri Dec 20 20:50:59 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Dec 21 16:50:37 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6eb3fa3 dev-lang/crystal: remove unused patches Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/14065 Signed-off-by: Sergei Trofimovich gentoo.org> ...tal-0.26.1-gentoo-tests-network-sandbox-3.patch | 26 ---------------------- .../files/crystal-0.27.0-tcp-server-test.patch | 12 ---------- .../crystal/files/crystal-0.27.1-verbose.patch | 7 ------ 3 files changed, 45 deletions(-) diff --git a/dev-lang/crystal/files/crystal-0.26.1-gentoo-tests-network-sandbox-3.patch b/dev-lang/crystal/files/crystal-0.26.1-gentoo-tests-network-sandbox-3.patch deleted file mode 100644 index eb1b84ce618..00000000000 --- a/dev-lang/crystal/files/crystal-0.26.1-gentoo-tests-network-sandbox-3.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff --git a/spec/std/http/server/server_spec.cr b/spec/std/http/server/server_spec.cr -index 9de0c3f..59882db 100644 ---- a/spec/std/http/server/server_spec.cr -+++ b/spec/std/http/server/server_spec.cr -@@ -400,7 +400,9 @@ module HTTP - end - - describe "#bind_tls" do -- it "binds SSL server context" do -+ # gentoo's FEATURES=network-sandbox blocks external network: -+ # connect: Connection timed out (Errno) -+ pending "binds SSL server context" do - server = Server.new do |context| - context.response.puts "Test Server (#{context.request.headers["Host"]?})" - context.response.close -@@ -512,7 +514,9 @@ module HTTP - end - {% end %} - -- it "handles exception during SSL handshake (#6577)" do -+ # gentoo's FEATURES=network-sandbox blocks external network: -+ # connect: Connection timed out (Errno) -+ pending "handles exception during SSL handshake (#6577)" do - server = SilentErrorHTTPServer.new do |context| - context.response.print "ok" - context.response.close diff --git a/dev-lang/crystal/files/crystal-0.27.0-tcp-server-test.patch b/dev-lang/crystal/files/crystal-0.27.0-tcp-server-test.patch deleted file mode 100644 index 8f61c8aeef4..00000000000 --- a/dev-lang/crystal/files/crystal-0.27.0-tcp-server-test.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- a/spec/std/http/server/server_spec.cr -+++ b/spec/std/http/server/server_spec.cr -@@ -524,7 +524,8 @@ module HTTP - end - - describe "#close" do -- it "closes gracefully" do -+ # fails under gentoo's sandbox -+ pending "closes gracefully" do - server = Server.new do |context| - context.response.flush - context.response.puts "foo" diff --git a/dev-lang/crystal/files/crystal-0.27.1-verbose.patch b/dev-lang/crystal/files/crystal-0.27.1-verbose.patch deleted file mode 100644 index 33c3c5d61c4..00000000000 --- a/dev-lang/crystal/files/crystal-0.27.1-verbose.patch +++ /dev/null @@ -1,7 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -29,3 +29,3 @@ SOURCES := $(shell find src -name '*.cr') - SPEC_SOURCES := $(shell find spec -name '*.cr') --override FLAGS += -D preview_overflow -D compiler_rt $(if $(release),--release )$(if $(stats),--stats )$(if $(progress),--progress )$(if $(threads),--threads $(threads) )$(if $(debug),-d )$(if $(static),--static )$(if $(LDFLAGS),--link-flags="$(LDFLAGS)" ) -+override FLAGS += -D preview_overflow -D compiler_rt $(if $(release),--release )$(if $(stats),--stats )$(if $(progress),--progress )$(if $(threads),--threads $(threads) )$(if $(debug),-d )$(if $(static),--static )$(if $(LDFLAGS),--link-flags="$(LDFLAGS)" )$(if $(verbose),--verbose ) - SPEC_FLAGS := $(if $(verbose),-v )$(if $(junit_output),--junit_output $(junit_output) )