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 7E881139345 for ; Wed, 14 Jul 2021 06:26:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D403FE0AFE; Wed, 14 Jul 2021 06:26:18 +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 BC6C4E0AFE for ; Wed, 14 Jul 2021 06:26:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 52EED342D6C for ; Wed, 14 Jul 2021 06:26:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6D7E798 for ; Wed, 14 Jul 2021 06:26:15 +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: <1626243970.cef99cbae6d6ac85d3c29173e7573b5f567b80b7.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cucumber-gherkin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cucumber-gherkin/cucumber-gherkin-18.1.1.ebuild X-VCS-Directories: dev-util/cucumber-gherkin/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: cef99cbae6d6ac85d3c29173e7573b5f567b80b7 X-VCS-Branch: master Date: Wed, 14 Jul 2021 06:26:15 +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: ac4d60a3-ebf8-4ca0-bf04-2c78b5da499e X-Archives-Hash: a83ef66cd359c3ccfdb50b70ba77914f commit: cef99cbae6d6ac85d3c29173e7573b5f567b80b7 Author: Hans de Graaff gentoo org> AuthorDate: Wed Jul 14 06:01:55 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Jul 14 06:26:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cef99cba dev-util/cucumber-gherkin: fix tests Ensure the correct cucumber-messages slot is used. Closes: https://bugs.gentoo.org/802018 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-util/cucumber-gherkin/cucumber-gherkin-18.1.1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-util/cucumber-gherkin/cucumber-gherkin-18.1.1.ebuild b/dev-util/cucumber-gherkin/cucumber-gherkin-18.1.1.ebuild index 81370318e01..d4c99398b0f 100644 --- a/dev-util/cucumber-gherkin/cucumber-gherkin-18.1.1.ebuild +++ b/dev-util/cucumber-gherkin/cucumber-gherkin-18.1.1.ebuild @@ -27,3 +27,8 @@ SLOT="$(ver_cut 1)" IUSE="" ruby_add_rdepend ">=dev-util/cucumber-messages-15.0.0:15" + +all_ruby_prepare() { + sed -i -e '1igem "cucumber-messages", "~> 15.0"' spec/gherkin/*_spec.rb spec/gherkin/*/*_spec.rb || die + sed -i -e '5igem "cucumber-messages", "~> 15.0"' bin/gherkin || die +}