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 6915015ACB3 for ; Fri, 7 Apr 2023 10:18:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95D81E091F; Fri, 7 Apr 2023 10:18:27 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7AFE1E091F for ; Fri, 7 Apr 2023 10:18:27 +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 4D48D340DA0 for ; Fri, 7 Apr 2023 10:18:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD3FC8E6 for ; Fri, 7 Apr 2023 10:18:24 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1680862660.b2cdda5d03bd24f53b3fe60dbd4e97e8b6e03571.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/webrick/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/webrick/webrick-1.8.1.ebuild X-VCS-Directories: dev-ruby/webrick/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b2cdda5d03bd24f53b3fe60dbd4e97e8b6e03571 X-VCS-Branch: master Date: Fri, 7 Apr 2023 10:18:24 +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: 9fc3b5fc-8f9f-432b-b859-c4d1dc54674f X-Archives-Hash: 48d82a031750bc491c3a26e53a82cc78 commit: b2cdda5d03bd24f53b3fe60dbd4e97e8b6e03571 Author: Sam James gentoo org> AuthorDate: Fri Apr 7 10:17:40 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 7 10:17:40 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2cdda5d dev-ruby/webrick: increase timeout of test Hit timeout on hppa. Signed-off-by: Sam James gentoo.org> dev-ruby/webrick/webrick-1.8.1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-ruby/webrick/webrick-1.8.1.ebuild b/dev-ruby/webrick/webrick-1.8.1.ebuild index a1f3c05c2cd5..d798026b31ac 100644 --- a/dev-ruby/webrick/webrick-1.8.1.ebuild +++ b/dev-ruby/webrick/webrick-1.8.1.ebuild @@ -21,4 +21,7 @@ IUSE="test" all_ruby_prepare() { sed -i -e "s:_relative ': './:" ${RUBY_FAKEGEM_GEMSPEC} || die + + # Increase timeout for test to help out slow arches + sed -i -e '/EnvUtil.timeout(10) do/s:10:60:' test/webrick/test_ssl_server.rb || die }