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 0D2F215808D for ; Sat, 23 Apr 2022 05:15:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0DE2E0895; Sat, 23 Apr 2022 05:15:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6F764E087A for ; Sat, 23 Apr 2022 05:15:05 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CCED4341A7C for ; Sat, 23 Apr 2022 05:15:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9F413C7 for ; Sat, 23 Apr 2022 05:14:58 +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: <1650690892.50b5ef985fbf6d73e8b8d5743901d73d75da4e5e.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/excon/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/excon/excon-0.92.2.ebuild X-VCS-Directories: dev-ruby/excon/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 50b5ef985fbf6d73e8b8d5743901d73d75da4e5e X-VCS-Branch: master Date: Sat, 23 Apr 2022 05:14:58 +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: 82096280-5fa6-4589-872e-d723ccc2674c X-Archives-Hash: e89495a1d7af1745a8b332444e2f51e4 commit: 50b5ef985fbf6d73e8b8d5743901d73d75da4e5e Author: Hans de Graaff gentoo org> AuthorDate: Fri Apr 22 07:53:04 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Apr 23 05:14:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50b5ef98 dev-ruby/excon: avoid dependency on eventmachine for tests The test servers using eventmachine were using the eselected ruby version rather than the version being tested, hiding their dependency on eventmachine. All tests and specs using eventmachine are now ignored. Closes: https://bugs.gentoo.org/838946 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/excon/excon-0.92.2.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-ruby/excon/excon-0.92.2.ebuild b/dev-ruby/excon/excon-0.92.2.ebuild index 0333f8aa7a9c..2f63356225e4 100644 --- a/dev-ruby/excon/excon-0.92.2.ebuild +++ b/dev-ruby/excon/excon-0.92.2.ebuild @@ -36,4 +36,10 @@ all_ruby_prepare() { # test that need network rm -f spec/excon/test/server_spec.rb || die + + # tests that depend on eventmachine which is broken and no longer maintained + rm -f tests/{bad,error,pipeline,response,request}_tests.rb \ + tests/{batch-requests,complete_responses}.rb \ + tests/middlewares/{decompress,mock}_tests.rb || die + rm -f spec/requests/eof_requests_spec.rb spec/excon/error_spec.rb || die }