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 6313E158094 for ; Tue, 12 Jul 2022 08:34:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5484E0FD3; Tue, 12 Jul 2022 08:34:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 A682DE0FD3 for ; Tue, 12 Jul 2022 08:34:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5E1D2340EA4 for ; Tue, 12 Jul 2022 08:34:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD0B9529 for ; Tue, 12 Jul 2022 08:34:44 +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: <1657614880.8c1650fdf51f71c0f44ec2e481a46907d803df68.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/settingslogic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/settingslogic/settingslogic-2.0.9-r2.ebuild X-VCS-Directories: dev-ruby/settingslogic/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 8c1650fdf51f71c0f44ec2e481a46907d803df68 X-VCS-Branch: master Date: Tue, 12 Jul 2022 08:34:44 +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: af871f0a-8585-4105-9568-0552edd47a31 X-Archives-Hash: 2dd0bb12f712cfe74f4b49093f0ca975 commit: 8c1650fdf51f71c0f44ec2e481a46907d803df68 Author: Hans de Graaff gentoo org> AuthorDate: Tue Jul 12 06:50:25 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue Jul 12 08:34:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c1650fd dev-ruby/settingslogic: enable ruby30, ruby31 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/settingslogic/settingslogic-2.0.9-r2.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-ruby/settingslogic/settingslogic-2.0.9-r2.ebuild b/dev-ruby/settingslogic/settingslogic-2.0.9-r2.ebuild index 5d2b70ee8217..2e3ba5ddc3ae 100644 --- a/dev-ruby/settingslogic/settingslogic-2.0.9-r2.ebuild +++ b/dev-ruby/settingslogic/settingslogic-2.0.9-r2.ebuild @@ -2,12 +2,12 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="README.rdoc" -RUBY_FAKEGEM_RECIPE_TEST="rspec" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" inherit ruby-fakegem @@ -23,4 +23,7 @@ PATCHES=( "${FILESDIR}/${P}-psych-4.patch" ) all_ruby_prepare() { sed -i -e '/check_dependencies/d' Rakefile || die + + # Use rspec 3 + sed -i -e 's/be_false/be false/' spec/settingslogic_spec.rb || die }