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 BCBFE158041 for ; Sun, 7 Apr 2024 08:31:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0082BE29F4; Sun, 7 Apr 2024 08:31:12 +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 CF672E29F4 for ; Sun, 7 Apr 2024 08:31:11 +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 CC21D34316C for ; Sun, 7 Apr 2024 08:31:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3611114F8 for ; Sun, 7 Apr 2024 08:31:09 +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: <1712478659.2e1e4b38a2f403574ea5bb0e3b1a2c5ec8f3fe07.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-http-pipeline/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1-r1.ebuild X-VCS-Directories: dev-ruby/net-http-pipeline/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 2e1e4b38a2f403574ea5bb0e3b1a2c5ec8f3fe07 X-VCS-Branch: master Date: Sun, 7 Apr 2024 08:31:09 +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: 69c44e9d-63a6-4dae-b0b8-1b33f4365157 X-Archives-Hash: 13b94f3241aa10d225702f750b1f72d9 commit: 2e1e4b38a2f403574ea5bb0e3b1a2c5ec8f3fe07 Author: Hans de Graaff gentoo org> AuthorDate: Sun Apr 7 08:30:09 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Apr 7 08:30:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e1e4b38 dev-ruby/net-http-pipeline: enable ruby33 Fix minitest deprecation. Closes: https://bugs.gentoo.org/928870 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1-r1.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1-r1.ebuild b/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1-r1.ebuild index 513ac728e47d..97042d4f6d06 100644 --- a/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1-r1.ebuild +++ b/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby30 ruby31 ruby32" +USE_RUBY="ruby31 ruby32 ruby33" inherit ruby-fakegem @@ -12,7 +12,7 @@ HOMEPAGE="https://docs.seattlerb.org/net-http-pipeline/" LICENSE="MIT" SLOT="1" KEYWORDS="~amd64" -IUSE="" +IUSE="test" ruby_add_bdepend " test? ( dev-ruby/minitest ) @@ -20,6 +20,9 @@ ruby_add_bdepend " all_ruby_prepare() { eapply -p0 "${FILESDIR}/${PN}-accept-encoding.patch" + + sed -e 's/MiniTest::Unit::TestCase/Minitest::Test/' \ + -i test/test_net_http_pipeline.rb || die } each_ruby_test() {