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 9582215811D for ; Sat, 8 Jul 2023 14:09:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9F98E0882; Sat, 8 Jul 2023 14:09:26 +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 BE2F4E0882 for ; Sat, 8 Jul 2023 14:09:26 +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 D4F17340DDE for ; Sat, 8 Jul 2023 14:09:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2609AAD2 for ; Sat, 8 Jul 2023 14:09:23 +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: <1688825356.bcefaa5ddb69ae1ab0d97a765fe6528ec142a059.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/dalli/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/dalli/dalli-3.2.4.ebuild dev-ruby/dalli/dalli-3.2.5.ebuild X-VCS-Directories: dev-ruby/dalli/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: bcefaa5ddb69ae1ab0d97a765fe6528ec142a059 X-VCS-Branch: master Date: Sat, 8 Jul 2023 14:09:23 +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: 8915c0fc-2e9f-499c-82bc-db6f5ebe0e6d X-Archives-Hash: 8435b27c7cbc83b8bdd716151e53352c commit: bcefaa5ddb69ae1ab0d97a765fe6528ec142a059 Author: Hans de Graaff gentoo org> AuthorDate: Sat Jul 8 13:17:46 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jul 8 14:09:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcefaa5d dev-ruby/dalli: fix rack dependency Closes: https://bugs.gentoo.org/908799 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/dalli/dalli-3.2.4.ebuild | 4 ++-- dev-ruby/dalli/dalli-3.2.5.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-ruby/dalli/dalli-3.2.4.ebuild b/dev-ruby/dalli/dalli-3.2.4.ebuild index effe48a83809..29868d0c1caf 100644 --- a/dev-ruby/dalli/dalli-3.2.4.ebuild +++ b/dev-ruby/dalli/dalli-3.2.4.ebuild @@ -28,7 +28,7 @@ DEPEND+="${DEPEND} test? ( >=net-misc/memcached-1.5.4[ssl(-)] )" ruby_add_bdepend "test? ( dev-ruby/connection_pool dev-ruby/minitest:5 - dev-ruby/rack + dev-ruby/rack:2.2 )" all_ruby_prepare() { @@ -36,7 +36,7 @@ all_ruby_prepare() { sed -i -e '/\(appraisal\|bundler\)/ s:^:#:' Rakefile || die - sed -i -e '3igem "minitest", "~> 5.0"; require "dalli"' \ + sed -i -e '3igem "minitest", "~> 5.0"; gem "rack", "~> 2.2.0"; require "dalli"' \ -e '/bundler/ s:^:#:' test/helper.rb || die sed -i -e "s:/tmp:${T}:" test/utils/certificate_generator.rb || die diff --git a/dev-ruby/dalli/dalli-3.2.5.ebuild b/dev-ruby/dalli/dalli-3.2.5.ebuild index cdc6ec7366bd..457caebf8503 100644 --- a/dev-ruby/dalli/dalli-3.2.5.ebuild +++ b/dev-ruby/dalli/dalli-3.2.5.ebuild @@ -28,7 +28,7 @@ DEPEND+="${DEPEND} test? ( >=net-misc/memcached-1.5.4[ssl(-)] )" ruby_add_bdepend "test? ( dev-ruby/connection_pool dev-ruby/minitest:5 - dev-ruby/rack + dev-ruby/rack:2.2 )" all_ruby_prepare() { @@ -36,7 +36,7 @@ all_ruby_prepare() { sed -i -e '/\(appraisal\|bundler\)/ s:^:#:' Rakefile || die - sed -i -e '3igem "minitest", "~> 5.0"; require "dalli"' \ + sed -i -e '3igem "minitest", "~> 5.0"; gem "rack", "~> 2.2.0"; require "dalli"' \ -e '/bundler/ s:^:#:' test/helper.rb || die sed -i -e "s:/tmp:${T}:" test/utils/certificate_generator.rb || die