From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1505151-garchives=archives.gentoo.org@lists.gentoo.org> 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 2F0F515ACB3 for <garchives@archives.gentoo.org>; Fri, 7 Apr 2023 11:26:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D80E8E08FB; Fri, 7 Apr 2023 11:26:00 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2506E08FB for <gentoo-commits@lists.gentoo.org>; Fri, 7 Apr 2023 11:26:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F3654335D9D for <gentoo-commits@lists.gentoo.org>; Fri, 7 Apr 2023 11:25:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54FEAA2C for <gentoo-commits@lists.gentoo.org>; Fri, 7 Apr 2023 11:25:56 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1680866694.c27a2883a0c57ac320232017e13ad4a611e7966a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/marcel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/marcel/marcel-1.0.2.ebuild X-VCS-Directories: dev-ruby/marcel/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c27a2883a0c57ac320232017e13ad4a611e7966a X-VCS-Branch: master Date: Fri, 7 Apr 2023 11:25:56 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a9151a31-b584-4b18-95d8-8e01204465a5 X-Archives-Hash: ad8f998df47a3a1d65283b11d21f94f1 commit: c27a2883a0c57ac320232017e13ad4a611e7966a Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Apr 7 07:50:46 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Apr 7 11:24:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c27a2883 dev-ruby/marcel: enable ruby32, fix tests Signed-off-by: Sam James <sam <AT> gentoo.org> dev-ruby/marcel/marcel-1.0.2.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/dev-ruby/marcel/marcel-1.0.2.ebuild b/dev-ruby/marcel/marcel-1.0.2.ebuild index 69a4dd10a987..44738adb4fa8 100644 --- a/dev-ruby/marcel/marcel-1.0.2.ebuild +++ b/dev-ruby/marcel/marcel-1.0.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27 ruby30 ruby31" +USE_RUBY="ruby27 ruby30 ruby31 ruby32" RUBY_FAKEGEM_EXTRADOC="README.md" @@ -19,10 +19,14 @@ SLOT="$(ver_cut 1-2)" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="test" -ruby_add_bdepend "test? ( dev-ruby/rack )" +ruby_add_bdepend "test? ( dev-ruby/rack:2.2 )" all_ruby_prepare() { - sed -i -e '2irequire "pathname"' -e '/byebug/ s:^:#:' test/test_helper.rb || die + sed -i \ + -e '1igem "rack", "~> 2.0"' \ + -e '2irequire "pathname"' \ + -e '/byebug/ s:^:#:' \ + test/test_helper.rb || die sed -i -e '/bundler/ s:^:#:' Rakefile || die }