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 6B82C1581C1 for ; Mon, 15 Jul 2024 08:33:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 922EBE2A81; Mon, 15 Jul 2024 08:33:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 7BC33E2A81 for ; Mon, 15 Jul 2024 08:33:22 +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 AD7AF33BF08 for ; Mon, 15 Jul 2024 08:33:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E77D71869 for ; Mon, 15 Jul 2024 08:33:19 +0000 (UTC) From: "Hans de Graaff" 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" Message-ID: <1721032389.c9bf0e512a2bd6daddc82a8248470a4c5325d811.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sshkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/sshkit/sshkit-1.23.0.ebuild X-VCS-Directories: dev-ruby/sshkit/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c9bf0e512a2bd6daddc82a8248470a4c5325d811 X-VCS-Branch: master Date: Mon, 15 Jul 2024 08:33:19 +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: 654b3f6e-ebce-4dce-98c6-3bc5778b81dd X-Archives-Hash: adb4ba25602bf5e7c987dd17bca03775 commit: c9bf0e512a2bd6daddc82a8248470a4c5325d811 Author: Hans de Graaff gentoo org> AuthorDate: Mon Jul 15 08:32:13 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Jul 15 08:33:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9bf0e51 dev-ruby/sshkit: avoid unneeded dependency on docker Docker is used for the functional tests, but we only run unit tests (since we cannot set up a working docker environment as part of the tests). Closes: https://bugs.gentoo.org/934765 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/sshkit/sshkit-1.23.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-ruby/sshkit/sshkit-1.23.0.ebuild b/dev-ruby/sshkit/sshkit-1.23.0.ebuild index a15e9cb0cfc1..10267f61026b 100644 --- a/dev-ruby/sshkit/sshkit-1.23.0.ebuild +++ b/dev-ruby/sshkit/sshkit-1.23.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 USE_RUBY="ruby31 ruby32 ruby33" -# There are functional tests that require vagrant boxes to be set up. +# There are functional tests that require docker containers to be set up. RUBY_FAKEGEM_TASK_TEST="test:units" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md FAQ.md README.md" @@ -29,7 +29,8 @@ ruby_add_bdepend "test? ( dev-ruby/minitest dev-ruby/mocha )" all_ruby_prepare() { sed -i -e '/bundler/I s:^:#:' Rakefile test/helper.rb || die - sed -e '/\(turn\|unindent\|reporters\)/I s:^:#:' \ + sed -e '/\(unindent\|reporters\)/I s:^:#:' \ + -e '/docker/I s:^:#:' \ -e '1irequire "pathname"' \ -i test/helper.rb || die