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 48F48158092 for ; Sat, 11 Sep 2021 08:12:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2123AE08F4; Sat, 11 Sep 2021 08:12:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0B972E08F4 for ; Sat, 11 Sep 2021 08:12:51 +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 C3BC5342CCF for ; Sat, 11 Sep 2021 08:12:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 607A8C0 for ; Sat, 11 Sep 2021 08:12:40 +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: <1631347955.0363fda0ac3f84908d6d3dd869dd044aa4b72050.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rake-compiler/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rake-compiler/rake-compiler-1.1.1.ebuild X-VCS-Directories: dev-ruby/rake-compiler/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 0363fda0ac3f84908d6d3dd869dd044aa4b72050 X-VCS-Branch: master Date: Sat, 11 Sep 2021 08:12:40 +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: 529be78f-75a8-481d-a0c1-53ce43552fd3 X-Archives-Hash: ea1b9e856d3a52db4d11f8283127b058 commit: 0363fda0ac3f84908d6d3dd869dd044aa4b72050 Author: Hans de Graaff gentoo org> AuthorDate: Sat Sep 11 08:11:51 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Sep 11 08:12:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0363fda0 dev-ruby/rake-compiler: fix tests with new cucumber Closes: https://bugs.gentoo.org/811975 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/rake-compiler/rake-compiler-1.1.1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-ruby/rake-compiler/rake-compiler-1.1.1.ebuild b/dev-ruby/rake-compiler/rake-compiler-1.1.1.ebuild index 0933269b99d..709389aaf76 100644 --- a/dev-ruby/rake-compiler/rake-compiler-1.1.1.ebuild +++ b/dev-ruby/rake-compiler/rake-compiler-1.1.1.ebuild @@ -35,6 +35,10 @@ all_ruby_prepare() { # Avoid failing features for native gems, this also fails with rubygems sed -i -e '/generate native gem/,$ s:^:#:' features/package.feature || die + + # Fix compatibility with newer cucumber versions. The not syntax has + # been supported since cucumber 3.x. + sed -i -e "s/~@java/'not @java'/" cucumber.yml || die } each_ruby_test() {