From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1550311-garchives=archives.gentoo.org@lists.gentoo.org> 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 06AAF15800A for <garchives@archives.gentoo.org>; Tue, 29 Aug 2023 06:01:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0016E2BC022; Tue, 29 Aug 2023 06:01:24 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D8F832BC022 for <gentoo-commits@lists.gentoo.org>; Tue, 29 Aug 2023 06:01:24 +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 B5EDB335DB7 for <gentoo-commits@lists.gentoo.org>; Tue, 29 Aug 2023 06:01:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBCCB10D5 for <gentoo-commits@lists.gentoo.org>; Tue, 29 Aug 2023 06:01:21 +0000 (UTC) From: "Hans de Graaff" <graaff@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" <graaff@gentoo.org> Message-ID: <1693288877.c7e710cc2e4994f5442d3fa07ef54892752a56f0.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/slim/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/slim/slim-5.1.1.ebuild X-VCS-Directories: dev-ruby/slim/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c7e710cc2e4994f5442d3fa07ef54892752a56f0 X-VCS-Branch: master Date: Tue, 29 Aug 2023 06:01:21 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: abd36946-671c-43af-b8c6-7e0eadfe70f3 X-Archives-Hash: 4e9008536149b15c4b0619d2df473353 commit: c7e710cc2e4994f5442d3fa07ef54892752a56f0 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Tue Aug 29 05:58:56 2023 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Tue Aug 29 06:01:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e710cc dev-ruby/slim: fix warning and add missing test dep Closes: https://bugs.gentoo.org/830349 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/slim/slim-5.1.1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-ruby/slim/slim-5.1.1.ebuild b/dev-ruby/slim/slim-5.1.1.ebuild index a5c1188a4aa0..c914625d9a54 100644 --- a/dev-ruby/slim/slim-5.1.1.ebuild +++ b/dev-ruby/slim/slim-5.1.1.ebuild @@ -28,7 +28,8 @@ ruby_add_rdepend " >=dev-ruby/tilt-2.1.0:* >=dev-ruby/temple-0.10.0:0.7 " -# sass tests are currently disabled: https://github.com/slim-template/slim/commit/bd9d4601cd8142aa9fdbc0d87c9f9132a9a56cda +# sass tests are currently disabled: +# https://github.com/slim-template/slim/commit/bd9d4601cd8142aa9fdbc0d87c9f9132a9a56cda ruby_add_bdepend " doc? ( dev-ruby/yard @@ -38,6 +39,7 @@ ruby_add_bdepend " dev-ruby/minitest:5 dev-ruby/kramdown:2 dev-ruby/redcarpet + dev-ruby/sassc >=dev-ruby/test-unit-3.5 ) " @@ -62,6 +64,9 @@ all_ruby_prepare() { sed -i -e '/test_render_with_markdown/askip "new tilt version"' test/core/test_embedded_engines.rb || die sed -i -e '/test_no_translation_of_embedded/askip "new tilt version"' test/translator/test_translator.rb || die + # Fix minitest deprecation + sed -i -e 's/MiniTest/Minitest/' test/literate/helper.rb || die + sed -i -e '/s\.files/ s/git ls-files/find . -type f -print/' \ -e '/s\.executables/ s:git ls-files -- bin/\*:find bin -type f -print:' ${RUBY_FAKEGEM_GEMSPEC} || die }