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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 84DDB158083 for ; Sun, 1 Sep 2024 09:35:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3EA6E2A95; Sun, 1 Sep 2024 09:35:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC2C1E2A95 for ; Sun, 1 Sep 2024 09:35:43 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA6C1342FB1 for ; Sun, 1 Sep 2024 09:35:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F27D17E4 for ; Sun, 1 Sep 2024 09:35:41 +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: <1725183330.5211a390c0c57e49db1124357a983700aff7c9bf.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/activejob/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/activejob/activejob-7.0.8.4.ebuild X-VCS-Directories: dev-ruby/activejob/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 5211a390c0c57e49db1124357a983700aff7c9bf X-VCS-Branch: master Date: Sun, 1 Sep 2024 09:35:41 +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: d09d1019-1148-4535-a9ae-e5f7cb1b725a X-Archives-Hash: 268ea33b62622fd57954db5db79cdf30 commit: 5211a390c0c57e49db1124357a983700aff7c9bf Author: Hans de Graaff gentoo org> AuthorDate: Sun Sep 1 09:34:53 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Sep 1 09:35:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5211a390 dev-ruby/activejob: fix tests Ensure a compatible activesupport version. Closes: https://bugs.gentoo.org/937810 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/activejob/activejob-7.0.8.4.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-ruby/activejob/activejob-7.0.8.4.ebuild b/dev-ruby/activejob/activejob-7.0.8.4.ebuild index f936f6ce2b63..717af8827259 100644 --- a/dev-ruby/activejob/activejob-7.0.8.4.ebuild +++ b/dev-ruby/activejob/activejob-7.0.8.4.ebuild @@ -39,7 +39,9 @@ ruby_add_bdepend " all_ruby_prepare() { # Set test environment to our hand. - sed -i -e '/load_paths/d' test/helper.rb || die "Unable to remove load paths" + sed -e '/load_paths/d' \ + -e '2igem "activesupport", "~> 7.0.0"' \ + -i test/helper.rb || die "Unable to remove load paths" # Remove all currently unpackaged queues. sed -i -e 's/que queue_classic resque sidekiq sneakers sucker_punch backburner//' \