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 8A283158020 for ; Sat, 24 Dec 2022 07:03:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62C2DE089A; Sat, 24 Dec 2022 07:03:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45D4BE08A8 for ; Sat, 24 Dec 2022 07:03:17 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 32E1F340E03 for ; Sat, 24 Dec 2022 07:03:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C4157F4 for ; Sat, 24 Dec 2022 07:03:13 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1671865133.ec06f6a63381dba627cf6f077c327f207849519c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/tilt/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/tilt/files/tilt-2.0.10-ruby30.patch X-VCS-Directories: dev-ruby/tilt/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ec06f6a63381dba627cf6f077c327f207849519c X-VCS-Branch: master Date: Sat, 24 Dec 2022 07:03:13 +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: 8226f27c-0042-44e0-a56c-ed0830a09992 X-Archives-Hash: c3bd9ecb953fc236c7f65037f8e982ee commit: ec06f6a63381dba627cf6f077c327f207849519c Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Dec 6 18:38:09 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 24 06:58:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec06f6a6 dev-ruby/tilt: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Sam James gentoo.org> dev-ruby/tilt/files/tilt-2.0.10-ruby30.patch | 37 ---------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-ruby/tilt/files/tilt-2.0.10-ruby30.patch b/dev-ruby/tilt/files/tilt-2.0.10-ruby30.patch deleted file mode 100644 index 27e4d821f64f..000000000000 --- a/dev-ruby/tilt/files/tilt-2.0.10-ruby30.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 91838d57aa35ba5341368ead0d442e1dc1eb8730 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?V=C3=ADt=20Ondruch?= -Date: Mon, 18 Jan 2021 12:49:31 +0100 -Subject: [PATCH] Fix Ruby 3.0 compatibility. - -This fixes issues such as: - -~~~ - 1) Error: -CSVTemplateTest#test_compiles_and_evaluates_the_template_on_render: -TypeError: no implicit conversion of Hash into String - /usr/share/ruby/csv.rb:1273:in `initialize' - /usr/share/ruby/csv.rb:1273:in `new' - /usr/share/ruby/csv.rb:1273:in `generate' - (__TEMPLATE__):in `__tilt_920' - /builddir/build/BUILD/tilt-2.0.10/usr/share/gems/gems/tilt-2.0.10/lib/tilt/template.rb:170:in `call' - /builddir/build/BUILD/tilt-2.0.10/usr/share/gems/gems/tilt-2.0.10/lib/tilt/template.rb:170:in `evaluate' - /builddir/build/BUILD/tilt-2.0.10/usr/share/gems/gems/tilt-2.0.10/lib/tilt/template.rb:109:in `render' - /builddir/build/BUILD/tilt-2.0.10/usr/share/gems/gems/tilt-2.0.10/test/tilt_csv_test.rb:15:in `block in ' -~~~ ---- - lib/tilt/csv.rb | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/tilt/csv.rb b/lib/tilt/csv.rb -index fd0e602..7dfa220 100644 ---- a/lib/tilt/csv.rb -+++ b/lib/tilt/csv.rb -@@ -50,7 +50,7 @@ def prepare - - def precompiled_template(locals) - <<-RUBY -- #{@outvar} = #{self.class.engine}.generate(#{options}) do |csv| -+ #{@outvar} = #{self.class.engine}.generate(**#{options}) do |csv| - #{data} - end - RUBY