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 41AF3138359 for ; Thu, 23 Jul 2020 15:02:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 721EEE0823; Thu, 23 Jul 2020 15:02:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 58A9EE0823 for ; Thu, 23 Jul 2020 15:02:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2F08C34F20F for ; Thu, 23 Jul 2020 15:02:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 638812EF for ; Thu, 23 Jul 2020 15:02:36 +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: <1595516534.2e61a4c611c97e3f4a0faaa65a3bb39a5de3f89a.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/aruba/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/aruba/aruba-0.14.14.ebuild X-VCS-Directories: dev-util/aruba/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 2e61a4c611c97e3f4a0faaa65a3bb39a5de3f89a X-VCS-Branch: master Date: Thu, 23 Jul 2020 15:02:36 +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: 52f85193-270d-48cf-99df-fc61a0c71b3a X-Archives-Hash: 3e8fbab34315c7b2c29ee1ba5deb064a commit: 2e61a4c611c97e3f4a0faaa65a3bb39a5de3f89a Author: Hans de Graaff gentoo org> AuthorDate: Thu Jul 23 15:00:50 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Thu Jul 23 15:02:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e61a4c6 dev-util/aruba: drop bcat and fix tests Drop unneeded test dependency on bcat and fix tests for new cucumber. Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Hans de Graaff gentoo.org> dev-util/aruba/aruba-0.14.14.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-util/aruba/aruba-0.14.14.ebuild b/dev-util/aruba/aruba-0.14.14.ebuild index 33c49702f36..9b29c27e1b6 100644 --- a/dev-util/aruba/aruba-0.14.14.ebuild +++ b/dev-util/aruba/aruba-0.14.14.ebuild @@ -30,7 +30,7 @@ ruby_add_rdepend " >=dev-ruby/thor-0.19:0 >=dev-util/cucumber-1.3.19" -ruby_add_bdepend "test? ( dev-ruby/rspec:3 >=dev-ruby/bcat-0.6.2 )" +ruby_add_bdepend "test? ( dev-ruby/rspec:3 )" all_ruby_prepare() { # Remove bundler-related code. @@ -43,8 +43,10 @@ all_ruby_prepare() { rm -f features/support/simplecov_setup.rb || die sed -i -e '1i require "time"' spec/spec_helper.rb || die + sed -i -e '/Use .aruba. with .Minitest./i@wip' features/01_getting_started_with_aruba/supported_testing_frameworks.feature || die sed -i -e '/Scenario: Default value/i@wip' features/02_configure_aruba/home_directory.feature || die sed -i -e '/Use ~ in path/i@wip' features/04_aruba_api/core/expand_path.feature || die + sed -i -e '/Create files for Minitest/i@wip' features/06_use_aruba_cli/initialize_project_with_aruba.feature || die } each_ruby_test() {