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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A741315ACFB for ; Tue, 25 Apr 2023 13:00:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E67BFE09BF; Tue, 25 Apr 2023 13:00:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D34B4E09BF for ; Tue, 25 Apr 2023 13:00:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D43F8335D97 for ; Tue, 25 Apr 2023 13:00:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD6338AC for ; Tue, 25 Apr 2023 13:00:38 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1682427636.783ae0271796ea45b8a369e09a7f6b17b1ae5919.xgqt@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-sandbox.patch dev-lang/crystal/files/crystal-0.27.0-extra-spec-flags.patch X-VCS-Directories: dev-lang/crystal/files/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 783ae0271796ea45b8a369e09a7f6b17b1ae5919 X-VCS-Branch: master Date: Tue, 25 Apr 2023 13:00:38 +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: 588bc848-4b2b-4aa8-930d-a4fad60b0c11 X-Archives-Hash: e0de30934c8a533c3af52573b9ad5012 commit: 783ae0271796ea45b8a369e09a7f6b17b1ae5919 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Apr 25 05:25:13 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Tue Apr 25 13:00:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=783ae027 dev-lang/crystal: remove unused patches Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/30742 Signed-off-by: Maciej Barć gentoo.org> .../crystal-0.26.1-gentoo-tests-sandbox.patch | 22 ---------------------- .../files/crystal-0.27.0-extra-spec-flags.patch | 11 ----------- 2 files changed, 33 deletions(-) diff --git a/dev-lang/crystal/files/crystal-0.26.1-gentoo-tests-sandbox.patch b/dev-lang/crystal/files/crystal-0.26.1-gentoo-tests-sandbox.patch deleted file mode 100644 index cab165c39059..000000000000 --- a/dev-lang/crystal/files/crystal-0.26.1-gentoo-tests-sandbox.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/spec/std/file_spec.cr -+++ b/spec/std/file_spec.cr -@@ -1164,3 +1164,4 @@ describe "File" do - # TODO: there is no file which is reliably unwritable on windows -- pending_win32 "raises if file cannot be accessed" do -+ # On linux(or sandbox?) it's "Permission denied", not "Operation not permitted" -+ pending "raises if file cannot be accessed" do - expect_raises Errno, "Operation not permitted" do ---- a/spec/std/process_spec.cr -+++ b/spec/std/process_spec.cr -@@ -135,3 +135,4 @@ describe Process do - describe "environ" do -- it "clears the environment" do -+ #gentoo's sandbox keeps sandbox environment -+ pending "clears the environment" do - value = Process.run("env", clear_env: true) do |proc| -@@ -142,3 +143,4 @@ describe Process do - -- it "sets an environment variable" do -+ #gentoo's sandbox keeps sandbox environment -+ pending "sets an environment variable" do - env = {"FOO" => "bar"} diff --git a/dev-lang/crystal/files/crystal-0.27.0-extra-spec-flags.patch b/dev-lang/crystal/files/crystal-0.27.0-extra-spec-flags.patch deleted file mode 100644 index bd86c13a78a6..000000000000 --- a/dev-lang/crystal/files/crystal-0.27.0-extra-spec-flags.patch +++ /dev/null @@ -1,11 +0,0 @@ -Allow injecting additional arguments to test suite. -Useful to be able to run small subset of individual -test suite: - - make spec EXTRA_SPEC_FLAGS='-e parse_set_cookie' - ---- a/Makefile -+++ b/Makefile -@@ -31 +31 @@ override FLAGS += $(if $(release),--release )$(if $(stats),--stats )$(if $(progr --SPEC_FLAGS := $(if $(verbose),-v )$(if $(junit_output),--junit_output $(junit_output) ) -+SPEC_FLAGS := $(if $(verbose),-v )$(if $(junit_output),--junit_output $(junit_output) )$(EXTRA_SPEC_FLAGS)