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 C7A5D1382C5 for ; Tue, 17 Apr 2018 18:31:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F5FBE0ACA; Tue, 17 Apr 2018 18:29:11 +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 6F9E1E0ACA for ; Tue, 17 Apr 2018 18:29:11 +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 95915335C49 for ; Tue, 17 Apr 2018 18:29:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20D62260 for ; Tue, 17 Apr 2018 18:29:09 +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: <1523989614.391802e94b4dcf522f7756dd8179016661ecf034.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/eventmachine/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/eventmachine/eventmachine-1.2.0.1.ebuild X-VCS-Directories: dev-ruby/eventmachine/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 391802e94b4dcf522f7756dd8179016661ecf034 X-VCS-Branch: master Date: Tue, 17 Apr 2018 18:29:09 +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-Archives-Salt: 2f4296ea-45a0-4f34-830e-cdc9a2cc5e9a X-Archives-Hash: 1e86c805d988d5e96fd37a67c2436ec7 commit: 391802e94b4dcf522f7756dd8179016661ecf034 Author: Hans de Graaff gentoo org> AuthorDate: Tue Apr 17 18:26:29 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue Apr 17 18:26:54 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=391802e9 dev-ruby/eventmachine: fix tests Avoid tests requiring either a network or obsolete SSL protocols. Closes: https://bugs.gentoo.org/648776 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-ruby/eventmachine/eventmachine-1.2.0.1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-ruby/eventmachine/eventmachine-1.2.0.1.ebuild b/dev-ruby/eventmachine/eventmachine-1.2.0.1.ebuild index 3fa90ddd8cb..af902ccb133 100644 --- a/dev-ruby/eventmachine/eventmachine-1.2.0.1.ebuild +++ b/dev-ruby/eventmachine/eventmachine-1.2.0.1.ebuild @@ -50,6 +50,12 @@ all_ruby_prepare() { sed -i -e '/test_for_real/,/^ end/ s:^:#:' \ tests/test_pending_connect_timeout.rb || die rm -f tests/test_{get_sock_opt,set_sock_opt,idle_connection}.rb || die + sed -i -e '/test_ipv6_tcp_client_with_ipv6_google_com/aomit "network"' tests/test_ipv6.rb || die + # don't test unsecure and obsolete protocols + sed -i -e 's/sslv2 sslv3//' \ + -e '/\(test_any_to_v3\|test_v3_to_any\|test_v3_to_v3\|test_v3_with_external\)/aomit "obsolete"' \ + tests/test_ssl_protocols.rb || die + } each_ruby_configure() {