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 2B6F81382C5 for ; Sat, 23 May 2020 05:28:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98383E0839; Sat, 23 May 2020 05:28:41 +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 7FD28E0839 for ; Sat, 23 May 2020 05:28:41 +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 9BB0B34E66B for ; Sat, 23 May 2020 05:28:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D69A9C for ; Sat, 23 May 2020 05:28:38 +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: <1590211668.9f8a5a4b8668342f907136b465f49f4e76eb5a55.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/fakeweb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild X-VCS-Directories: dev-ruby/fakeweb/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 9f8a5a4b8668342f907136b465f49f4e76eb5a55 X-VCS-Branch: master Date: Sat, 23 May 2020 05:28:38 +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: ad4158b0-6f0a-4126-a6d6-a82c83aed9b2 X-Archives-Hash: 7bfdec80dc02f2cbd32282246afda50b commit: 9f8a5a4b8668342f907136b465f49f4e76eb5a55 Author: Hans de Graaff gentoo org> AuthorDate: Thu May 21 05:22:30 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat May 23 05:27:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f8a5a4b dev-ruby/fakeweb: avoid network tests Closes: https://bugs.gentoo.org/723808 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild b/dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild index 94a8307834a..99dd3e6ce4b 100644 --- a/dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild +++ b/dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 # ruby26: not compatible -USE_RUBY="ruby23 ruby24 ruby25" +USE_RUBY="ruby24 ruby25" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" @@ -46,4 +46,7 @@ all_ruby_prepare() { rm test/test_other_net_http_libraries.rb || die sed -i -e '/test:preflight/ s:^:#:' Rakefile || die + + # Avoid tests that require a network connection + sed -i -e '/test_real_https_request/aomit "requires network"' test/test_fake_web.rb || die }