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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7825215813A for ; Sat, 11 Jan 2025 08:17:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C07CFE0917; Sat, 11 Jan 2025 08:17:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 ABD4BE0917 for ; Sat, 11 Jan 2025 08:17:35 +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 E9B2E340C7B for ; Sat, 11 Jan 2025 08:17:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7ED90AED for ; Sat, 11 Jan 2025 08:17:33 +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: <1736583442.b4a401798f36153a1a36108779823980c440421d.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/roadie-rails/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/roadie-rails/roadie-rails-3.3.0.ebuild X-VCS-Directories: dev-ruby/roadie-rails/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: b4a401798f36153a1a36108779823980c440421d X-VCS-Branch: master Date: Sat, 11 Jan 2025 08:17:33 +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: cf2fe36e-67a5-47f0-aaf6-2a8c6923ca51 X-Archives-Hash: c1ad77efa73b38c245c5ec5a52ee6454 commit: b4a401798f36153a1a36108779823980c440421d Author: Hans de Graaff gentoo org> AuthorDate: Sat Jan 11 08:03:21 2025 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jan 11 08:17:22 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a40179 dev-ruby/roadie-rails: enable ruby33 Bug: https://bugs.gentoo.org/947807 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/roadie-rails/roadie-rails-3.3.0.ebuild | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/dev-ruby/roadie-rails/roadie-rails-3.3.0.ebuild b/dev-ruby/roadie-rails/roadie-rails-3.3.0.ebuild index aeb401c2ff65..901e81fd1a4a 100644 --- a/dev-ruby/roadie-rails/roadie-rails-3.3.0.ebuild +++ b/dev-ruby/roadie-rails/roadie-rails-3.3.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby31 ruby32" +USE_RUBY="ruby31 ruby32 ruby33" RUBY_FAKEGEM_EXTRADOC="README.md" RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_RECIPE_DOC="yard" @@ -25,7 +25,7 @@ ruby_add_rdepend "dev-ruby/roadie:5 ruby_add_bdepend " test? ( dev-ruby/bundler - || ( dev-ruby/rails:7.0 dev-ruby/rails:6.1 ) + || ( dev-ruby/rails:8.0 dev-ruby/rails:7.2 dev-ruby/rails:7.1 dev-ruby/rails:7.0 dev-ruby/rails:6.1 ) dev-ruby/rspec-rails dev-ruby/rspec-collection_matchers dev-ruby/sass-rails )" @@ -54,6 +54,14 @@ all_ruby_prepare() { each_ruby_prepare() { sed -i -e '/run_in_app_context/ s:bin/rails:'${RUBY}' -S bin/rails:' spec/support/rails_app.rb || die + + case ${RUBY} in + *ruby33) + # Rails 7.0 does not have a ruby33 target so we can't test it. + sed -e '/rails_70/ s:^:#:' \ + -i spec/integration_spec.rb || die + ;; + esac } each_ruby_test() {