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 9D52F158092 for ; Sat, 11 Sep 2021 08:44:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4D4CE0867; Sat, 11 Sep 2021 08:44:47 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 CA92BE0867 for ; Sat, 11 Sep 2021 08:44:47 +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 AB61A342CD1 for ; Sat, 11 Sep 2021 08:44:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 217A8A2 for ; Sat, 11 Sep 2021 08:44:45 +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: <1631349880.3fa85663b9a3ef79babc3bb24b128576cf3ef440.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/activesupport/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/activesupport/activesupport-6.1.4.1.ebuild X-VCS-Directories: dev-ruby/activesupport/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 3fa85663b9a3ef79babc3bb24b128576cf3ef440 X-VCS-Branch: master Date: Sat, 11 Sep 2021 08:44:45 +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: 16927c44-b66f-4415-8cf0-1a4691bdc1f2 X-Archives-Hash: e3c348db384ca8fa895c603c60f527d3 commit: 3fa85663b9a3ef79babc3bb24b128576cf3ef440 Author: Hans de Graaff gentoo org> AuthorDate: Sat Sep 11 08:44:33 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Sep 11 08:44:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa85663 dev-ruby/activesupport: fix test dependencies Clean up Gemfile and update test dependencies. Closes: https://bugs.gentoo.org/812008 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/activesupport/activesupport-6.1.4.1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-ruby/activesupport/activesupport-6.1.4.1.ebuild b/dev-ruby/activesupport/activesupport-6.1.4.1.ebuild index 76b3ac7c82f..28b06d08700 100644 --- a/dev-ruby/activesupport/activesupport-6.1.4.1.ebuild +++ b/dev-ruby/activesupport/activesupport-6.1.4.1.ebuild @@ -36,10 +36,12 @@ ruby_add_rdepend " # but there are tests using this code. ruby_add_bdepend "test? ( >=dev-ruby/dalli-2.2.1 - >=dev-ruby/nokogiri-1.4.5 + dev-ruby/connection_pool + >=dev-ruby/nokogiri-1.8.1 >=dev-ruby/builder-3.1.0 >=dev-ruby/listen-3.3:3 dev-ruby/rack + dev-ruby/rexml dev-ruby/mocha )" @@ -49,7 +51,7 @@ all_ruby_prepare() { # Remove items from the common Gemfile that we don't need for this # test run. This also requires handling some gemspecs. - sed -i -e "/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|mysql\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|minitest\|sprockets\|stackprof\|rack-cache\|redis\|sqlite\|websocket-client-simple\|\libxml-ruby\|bootsnap\|blade\|aws-sdk\|webmock\|capybara\|sass-rails\|selenium-webdriver\)/ s:^:#:" \ + sed -i -e "/\(system_timer\|pg\|execjs\|jquery-rails\|mysql\|journey\|ruby-prof\|stackprof\|benchmark-ips\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|bcrypt\|uglifier\|minitest\|sprockets\|stackprof\|rack-cache\|sqlite\|websocket-client-simple\|\libxml-ruby\|bootsnap\|aws-sdk\|webmock\|capybara\|sass-rails\|selenium-webdriver\|webpacker\|webrick\)/ s:^:#:" \ -e '/group :\(doc\|rubocop\|job\|cable\|storage\|ujs\|test\) do/,/^end/ s:^:#:' \ -e 's/gemspec/gemspec path: "activesupport"/' \ -e '5igem "builder"; gem "rack"' ../Gemfile || die