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 442E8158170 for ; Thu, 18 Jul 2024 06:05:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 840142BC03D; Thu, 18 Jul 2024 06:05:25 +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 5C7342BC03D for ; Thu, 18 Jul 2024 06:05:25 +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 53EFD33BEB9 for ; Thu, 18 Jul 2024 06:05:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B97B01E2F for ; Thu, 18 Jul 2024 06:05:22 +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: <1721282703.5e1f85e8a8632c691c4d2ab6ded271e3edeb3b83.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/omniauth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/omniauth/omniauth-2.1.2.ebuild X-VCS-Directories: dev-ruby/omniauth/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 5e1f85e8a8632c691c4d2ab6ded271e3edeb3b83 X-VCS-Branch: master Date: Thu, 18 Jul 2024 06:05:22 +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: 3e7cb5c2-7e10-4bc7-b19f-99de1b08c35c X-Archives-Hash: b9da683839f4c7875c22becce08bf72a commit: 5e1f85e8a8632c691c4d2ab6ded271e3edeb3b83 Author: Hans de Graaff gentoo org> AuthorDate: Wed Jul 17 18:29:41 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Thu Jul 18 06:05:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e1f85e8 dev-ruby/omniauth: use compatible rack-protection slot Only rack-protection:3 is compatible with the version of rack that we require here. Closes: https://bugs.gentoo.org/936203 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/omniauth/omniauth-2.1.2.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-ruby/omniauth/omniauth-2.1.2.ebuild b/dev-ruby/omniauth/omniauth-2.1.2.ebuild index 0ff88ca09fd5..84c249a9576a 100644 --- a/dev-ruby/omniauth/omniauth-2.1.2.ebuild +++ b/dev-ruby/omniauth/omniauth-2.1.2.ebuild @@ -16,22 +16,23 @@ DESCRIPTION="A generalized Rack framework for multiple-provider authentication" HOMEPAGE="https://github.com/omniauth/omniauth" SRC_URI="https://github.com/omniauth/omniauth/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" -KEYWORDS="~amd64" + SLOT="$(ver_cut 1)" -IUSE="" +KEYWORDS="~amd64" +IUSE="doc test" ruby_add_rdepend " >=dev-ruby/rack-2.2.3 dev-ruby/rack-protection >=dev-ruby/hashie-3.4.6:*" ruby_add_bdepend "doc? ( dev-ruby/yard ) - test? ( dev-ruby/rack-test dev-ruby/rack:2.2 )" + test? ( dev-ruby/rack-test dev-ruby/rack:2.2 dev-ruby/rack-protection:3 )" all_ruby_prepare() { sed -i -e '/[Bb]undler/d' \ Rakefile ${PN}.gemspec || die "sed failed" sed -e '/RUBY_VERSION/,/^end/ s:^:#: ; /freeze/ s:^:#:' \ - -e '2igem "rack", "<3"' \ + -e '2igem "rack", "<3"; gem "rack-protection", "~> 3.0"' \ -e '/simplecov/,/^end/ s:^:#:' \ -i spec/helper.rb || die "sed failed" # maruku fails, resorting to default markdown implementation