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 F2934139083 for ; Wed, 6 Dec 2017 07:09:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 556ADE10DA; Wed, 6 Dec 2017 07:09:40 +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 34B9EE10DA for ; Wed, 6 Dec 2017 07:09:40 +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 6CAEF33BEBE for ; Wed, 6 Dec 2017 07:09:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6AA5AE74 for ; Wed, 6 Dec 2017 07:09:37 +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: <1512544164.71bf9bd9a18f2a8e5053a0244d2494e052c5363b.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cucumber/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cucumber/cucumber-2.4.0-r1.ebuild X-VCS-Directories: dev-util/cucumber/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 71bf9bd9a18f2a8e5053a0244d2494e052c5363b X-VCS-Branch: master Date: Wed, 6 Dec 2017 07:09:37 +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-Archives-Salt: 3a8e2e67-58b6-40f6-8eb9-b1cc366af453 X-Archives-Hash: 3b2a543f7402437891040798b03171b2 commit: 71bf9bd9a18f2a8e5053a0244d2494e052c5363b Author: Hans de Graaff gentoo org> AuthorDate: Wed Dec 6 07:09:24 2017 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Dec 6 07:09:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71bf9bd9 dev-util/cucumber: fix tests Avoid tests broken by different backtrace introduced in recent versions of dev-lang/ruby. Closes: https://bugs.gentoo.org/628580 Package-Manager: Portage-2.3.13, Repoman-2.3.3 dev-util/cucumber/cucumber-2.4.0-r1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-util/cucumber/cucumber-2.4.0-r1.ebuild b/dev-util/cucumber/cucumber-2.4.0-r1.ebuild index 9f9edf0e8e7..edfd73d1895 100644 --- a/dev-util/cucumber/cucumber-2.4.0-r1.ebuild +++ b/dev-util/cucumber/cucumber-2.4.0-r1.ebuild @@ -54,6 +54,10 @@ all_ruby_prepare() { sed -i -e '/converts the snapshot path to a relative path/,/end/ s:^:#:' \ spec/cucumber/formatter/html_spec.rb || die + # Avoid specs that fail due to changes in the ruby backtrace, + # introduced in newer versions of dev-lang/ruby, bug 628580 + rm -f features/docs/defining_steps/nested_steps.feature + # Avoid dependency on git sed -i -e '/executables/ s/=.*/= ["cucumber"]/' \ -e '/git ls-files/d' cucumber.gemspec || die