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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0A017158042 for ; Fri, 15 Nov 2024 13:29:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05062E0A94; Fri, 15 Nov 2024 13:29:34 +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 DDD04E0A94 for ; Fri, 15 Nov 2024 13:29:33 +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 E9FA033BED4 for ; Fri, 15 Nov 2024 13:29:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E027218C4 for ; Fri, 15 Nov 2024 13:29:30 +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: <1731677361.e392ba76b9b35167ef2308df07da00c7a897a2c9.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ffaker/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/ffaker/ffaker-2.23.0.ebuild X-VCS-Directories: dev-ruby/ffaker/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: e392ba76b9b35167ef2308df07da00c7a897a2c9 X-VCS-Branch: master Date: Fri, 15 Nov 2024 13:29:30 +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: 21f61298-9017-46e0-b6f6-749c8d72e38f X-Archives-Hash: 4c25a9bd367d8cd944f38d9eff793a80 commit: e392ba76b9b35167ef2308df07da00c7a897a2c9 Author: Hans de Graaff gentoo org> AuthorDate: Fri Nov 15 13:28:27 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Nov 15 13:29:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e392ba76 dev-ruby/ffaker: avoid test requiring network access Closes: https://bugs.gentoo.org/943548 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/ffaker/ffaker-2.23.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-ruby/ffaker/ffaker-2.23.0.ebuild b/dev-ruby/ffaker/ffaker-2.23.0.ebuild index 2146ea0edec8..0a6455d89487 100644 --- a/dev-ruby/ffaker/ffaker-2.23.0.ebuild +++ b/dev-ruby/ffaker/ffaker-2.23.0.ebuild @@ -23,5 +23,6 @@ all_ruby_prepare() { # Avoid dependency on rubocop sed -e '/rubocop/I s:^:#:' -i Rakefile || die - sed -i -e '/test_image_file/aomit "network"' test/test_image.rb || die + sed -e '/test_\(image_file\|file_output_with_keyword_arguments\|file_output_with_positional_arguments\|file_with_size_as_positional_argument\)/aomit "requires network"' \ + -i test/test_image.rb || die }