From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1253220-garchives=archives.gentoo.org@lists.gentoo.org> 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 82B351382C5 for <garchives@archives.gentoo.org>; Sat, 20 Feb 2021 08:43:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9D8AE0849; Sat, 20 Feb 2021 08:43:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 AAF6EE0849 for <gentoo-commits@lists.gentoo.org>; Sat, 20 Feb 2021 08:43:51 +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 5C6CB33BF54 for <gentoo-commits@lists.gentoo.org>; Sat, 20 Feb 2021 08:43:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E53A487 for <gentoo-commits@lists.gentoo.org>; Sat, 20 Feb 2021 08:43:48 +0000 (UTC) From: "Hans de Graaff" <graaff@gentoo.org> 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" <graaff@gentoo.org> Message-ID: <1613809798.761d4493f1b597031608ed4bc5d06ca5fbb26e67.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sprockets-rails/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/sprockets-rails/sprockets-rails-3.2.2.ebuild X-VCS-Directories: dev-ruby/sprockets-rails/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 761d4493f1b597031608ed4bc5d06ca5fbb26e67 X-VCS-Branch: master Date: Sat, 20 Feb 2021 08:43:48 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b51c8765-8b20-4a35-ab83-e48e1451d5ee X-Archives-Hash: 329295e68920e1c626efc6008d7b56cf commit: 761d4493f1b597031608ed4bc5d06ca5fbb26e67 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Sat Feb 20 08:29:58 2021 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Sat Feb 20 08:29:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761d4493 dev-ruby/sprockets-rails: add ruby27 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/sprockets-rails/sprockets-rails-3.2.2.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/dev-ruby/sprockets-rails/sprockets-rails-3.2.2.ebuild b/dev-ruby/sprockets-rails/sprockets-rails-3.2.2.ebuild index 3cf772493a3..d79ecf90b88 100644 --- a/dev-ruby/sprockets-rails/sprockets-rails-3.2.2.ebuild +++ b/dev-ruby/sprockets-rails/sprockets-rails-3.2.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26" +USE_RUBY="ruby25 ruby26 ruby27" RUBY_FAKEGEM_TASK_DOC="" @@ -21,14 +21,13 @@ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux" IUSE="test" ruby_add_rdepend " - >=dev-ruby/actionpack-4.0:* - >=dev-ruby/activesupport-4.0:* + >=dev-ruby/actionpack-5.2:* + >=dev-ruby/activesupport-5.2:* >=dev-ruby/sprockets-3.0.0:*" ruby_add_bdepend " test? ( - >=dev-ruby/actionpack-4 - >=dev-ruby/railties-4 + <dev-ruby/railties-6.1 dev-ruby/test-unit:2 )" @@ -36,5 +35,5 @@ all_ruby_prepare() { sed -i -e '/bundler/ s:^:#:' Rakefile || die # Help load correct rack version consistently - sed -i -e "3irequire 'action_controller'" test/test_helper.rb || die + sed -i -e "1igem 'railties', '< 6.1'" test/test_helper.rb || die }