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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6C8E41382C5 for ; Sat, 6 Jun 2020 08:04:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A218AE0985; Sat, 6 Jun 2020 08:04:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8DBD4E0985 for ; Sat, 6 Jun 2020 08:04:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A149C34F217 for ; Sat, 6 Jun 2020 08:04:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97F5A28D for ; Sat, 6 Jun 2020 08:04:21 +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: <1591430633.d13c2e6c19701d56f11ebebea0a46ae3dbdae193.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/warden/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/warden/warden-1.2.8.ebuild X-VCS-Directories: dev-ruby/warden/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: d13c2e6c19701d56f11ebebea0a46ae3dbdae193 X-VCS-Branch: master Date: Sat, 6 Jun 2020 08:04:21 +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: c74b49c6-a0bf-4d2b-8c7d-4077bf3efb81 X-Archives-Hash: b5b182ca80a14e3d6e513d13a4709db3 commit: d13c2e6c19701d56f11ebebea0a46ae3dbdae193 Author: Hans de Graaff gentoo org> AuthorDate: Sat Jun 6 07:48:37 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jun 6 08:03:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d13c2e6c dev-ruby/warden: limit rack version Closes: https://bugs.gentoo.org/724052 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/warden/warden-1.2.8.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-ruby/warden/warden-1.2.8.ebuild b/dev-ruby/warden/warden-1.2.8.ebuild index 79deefe54f0..5f1869e1098 100644 --- a/dev-ruby/warden/warden-1.2.8.ebuild +++ b/dev-ruby/warden/warden-1.2.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -22,8 +22,10 @@ KEYWORDS="~amd64" SLOT="0" IUSE="" -ruby_add_rdepend ">=dev-ruby/rack-2.0.6:*" +ruby_add_rdepend ">=dev-ruby/rack-2.0.6:2.0" all_ruby_prepare() { sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die + + sed -i -e '5igem "rack", "~>2.0.6"' spec/spec_helper.rb || die }