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 8C51B15808B for ; Sat, 17 Feb 2024 07:34:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88A5E2BC014; Sat, 17 Feb 2024 07:34:46 +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 67E312BC014 for ; Sat, 17 Feb 2024 07:34:46 +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 6AACC33BF08 for ; Sat, 17 Feb 2024 07:34:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C038B11CF for ; Sat, 17 Feb 2024 07:34:43 +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: <1708155275.fb88d974ed7436ee9c026fbaafe2184dca4e1617.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/httpclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/httpclient/httpclient-2.8.3-r3.ebuild X-VCS-Directories: dev-ruby/httpclient/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: fb88d974ed7436ee9c026fbaafe2184dca4e1617 X-VCS-Branch: master Date: Sat, 17 Feb 2024 07:34:43 +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: 3b59628b-3e94-4707-9f5e-e0341bd28712 X-Archives-Hash: 56a04f54d0f9f52898f0097e9033a686 commit: fb88d974ed7436ee9c026fbaafe2184dca4e1617 Author: Hans de Graaff gentoo org> AuthorDate: Sat Feb 17 07:33:46 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Feb 17 07:34:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb88d974 dev-ruby/httpclient: avoid broken SSL tests These tests use obsolete certificates and algorithms so the test server no longer starts at all. Closes: https://bugs.gentoo.org/817296 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/httpclient/httpclient-2.8.3-r3.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-ruby/httpclient/httpclient-2.8.3-r3.ebuild b/dev-ruby/httpclient/httpclient-2.8.3-r3.ebuild index 5af165c7bbbe..5f66ac209c44 100644 --- a/dev-ruby/httpclient/httpclient-2.8.3-r3.ebuild +++ b/dev-ruby/httpclient/httpclient-2.8.3-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -52,11 +52,9 @@ all_ruby_prepare() { # only fail on jruby. rm test/test_auth.rb || die - # Skip test failing due to hard-coded expired certificate - sed -i -e '/test_verification_without_httpclient/,/^ end/ s:^:#:' test/test_ssl.rb || die - - # Skip test depending on obsolete and vulnerable SSLv3 - sed -i -e '/test_no_sslv3/,/^ end/ s:^:#:' test/test_ssl.rb || die + # Skip tests using obsolete 1024-bit or expired certificates and + # won't even run anymore. + rm -f test/test_ssl.rb || die # Do not use 11-year-old bundled certificates! # fix this copy so it doesn't fail tests