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 B8DB115801B for ; Fri, 25 Aug 2023 05:25:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08DF02BC017; Fri, 25 Aug 2023 05:25:51 +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 DFCBD2BC017 for ; Fri, 25 Aug 2023 05:25:50 +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 02D88335C7D for ; Fri, 25 Aug 2023 05:25:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6ACEA1071 for ; Fri, 25 Aug 2023 05:25:48 +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: <1692940823.56e0b69c4356969dc23f634f0315a1a02faa9f2f.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sprockets/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/sprockets/sprockets-3.7.2-r3.ebuild dev-ruby/sprockets/sprockets-4.2.0-r1.ebuild X-VCS-Directories: dev-ruby/sprockets/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 56e0b69c4356969dc23f634f0315a1a02faa9f2f X-VCS-Branch: master Date: Fri, 25 Aug 2023 05:25:48 +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: c21988e9-16ae-45b2-8a66-a67573755ad0 X-Archives-Hash: 86a6269217e0df13cdd77a20e20fa3a6 commit: 56e0b69c4356969dc23f634f0315a1a02faa9f2f Author: Hans de Graaff gentoo org> AuthorDate: Thu Aug 24 10:27:25 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Aug 25 05:20:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56e0b69c dev-ruby/sprockets: fix minitest deprecation Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/sprockets/sprockets-3.7.2-r3.ebuild | 4 +++- dev-ruby/sprockets/sprockets-4.2.0-r1.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-ruby/sprockets/sprockets-3.7.2-r3.ebuild b/dev-ruby/sprockets/sprockets-3.7.2-r3.ebuild index 4e25c58aae5c..0f9f971f3c7b 100644 --- a/dev-ruby/sprockets/sprockets-3.7.2-r3.ebuild +++ b/dev-ruby/sprockets/sprockets-3.7.2-r3.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="ruby30 ruby31" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="README.md" @@ -48,6 +48,8 @@ all_ruby_prepare() { sed -i -e '/.ejs/ s:^:#:' test/test_asset.rb || die rm -f test/test_require.rb test/test_{closure,eco,ejs,yui}_{compressor,processor}.rb || die sed -i -e "/bundler/d" Rakefile || die + + sed -i -e 's/MiniTest/Minitest/' test/sprockets_test.rb test/test*.rb || die } each_ruby_prepare() { diff --git a/dev-ruby/sprockets/sprockets-4.2.0-r1.ebuild b/dev-ruby/sprockets/sprockets-4.2.0-r1.ebuild index 05593fac525a..5d710d2dd7ab 100644 --- a/dev-ruby/sprockets/sprockets-4.2.0-r1.ebuild +++ b/dev-ruby/sprockets/sprockets-4.2.0-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby27 ruby30 ruby31 ruby32" +USE_RUBY="ruby30 ruby31 ruby32" RUBY_FAKEGEM_EXTRADOC="README.md" @@ -50,6 +50,8 @@ all_ruby_prepare() { # Fails only within Gentoo test environment, not clear why sed -i -e '/extension exporters/a skip' test/test_exporting.rb || die sed -i -e "/bundler/d" Rakefile || die + + sed -i -e 's/MiniTest/Minitest/' test/sprockets_test.rb test/test*.rb || die } each_ruby_prepare() {