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 6AD1715800F for ; Sat, 4 Feb 2023 07:08:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 139A1E07C7; Sat, 4 Feb 2023 07:08:03 +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 DDC7EE079E for ; Sat, 4 Feb 2023 07:08:02 +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 02473335D6A for ; Sat, 4 Feb 2023 07:08:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D17489B for ; Sat, 4 Feb 2023 07:08:00 +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: <1675494471.a6eb8b55c84d269a264f1e7cb60d17eca1653bef.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sinatra/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/sinatra/sinatra-3.0.5.ebuild X-VCS-Directories: dev-ruby/sinatra/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: a6eb8b55c84d269a264f1e7cb60d17eca1653bef X-VCS-Branch: master Date: Sat, 4 Feb 2023 07:08:00 +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: a716ccbf-a80c-40ba-b78c-d68d9cd01b27 X-Archives-Hash: 6cc505294356d2b040f30d63b4ce1a01 commit: a6eb8b55c84d269a264f1e7cb60d17eca1653bef Author: Hans de Graaff gentoo org> AuthorDate: Fri Feb 3 10:13:33 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Feb 4 07:07:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6eb8b55 dev-ruby/sinatra: avoid spec broken by newer rack versions Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/sinatra/sinatra-3.0.5.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-ruby/sinatra/sinatra-3.0.5.ebuild b/dev-ruby/sinatra/sinatra-3.0.5.ebuild index affc012e8456..0447cf058fc0 100644 --- a/dev-ruby/sinatra/sinatra-3.0.5.ebuild +++ b/dev-ruby/sinatra/sinatra-3.0.5.ebuild @@ -31,4 +31,7 @@ ruby_add_bdepend "doc? ( dev-ruby/yard )" all_ruby_prepare() { sed -i -e '/active_support\/core_ext\/hash/igem "activesupport", "<7"' test/helper.rb || die + + # Avoid spec broken by newer rack versions, already removed upstream. + sed -i -e 's/"bytes=IV-LXVI", //' test/static_test.rb || die }