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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B55981581EC for ; Thu, 21 Nov 2024 06:01:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD6A5E07E1; Thu, 21 Nov 2024 06:01:32 +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 6CD2FE07E1 for ; Thu, 21 Nov 2024 06:01:32 +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 2499F3409C8 for ; Thu, 21 Nov 2024 06:01:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B10B18C4 for ; Thu, 21 Nov 2024 06:01:29 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1732168823.47078a9e7a11e3584661d49f4a43bf9f8e509026.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-crystal/http_proxy/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-crystal/http_proxy/http_proxy-0.12.0.ebuild X-VCS-Directories: dev-crystal/http_proxy/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 47078a9e7a11e3584661d49f4a43bf9f8e509026 X-VCS-Branch: dev Date: Thu, 21 Nov 2024 06:01:29 +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: 9e3c0711-9727-414e-8fe2-0ac865e06e72 X-Archives-Hash: 08c2893bda02100f658c09384b7ae54d commit: 47078a9e7a11e3584661d49f4a43bf9f8e509026 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Thu Nov 21 06:00:23 2024 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Thu Nov 21 06:00:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=47078a9e dev-crystal/http_proxy: fix test deps Bug: https://bugs.gentoo.org/943509 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-crystal/http_proxy/http_proxy-0.12.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-crystal/http_proxy/http_proxy-0.12.0.ebuild b/dev-crystal/http_proxy/http_proxy-0.12.0.ebuild index 6db13a433..4ed45232e 100644 --- a/dev-crystal/http_proxy/http_proxy-0.12.0.ebuild +++ b/dev-crystal/http_proxy/http_proxy-0.12.0.ebuild @@ -17,12 +17,13 @@ RESTRICT="!test? ( test )" DOCS=( {CHANGELOG,README}.md ) -RDEPEND=" - test? ( dev-crystal/http_proxy ) +DEPEND=" + test? ( dev-crystal/webmock ) " src_test() { - # Only run tests that don't need net + # Only run tests that don't need net. + # Upstream issue: https://github.com/mamantoha/http_proxy/issues/38 crystal_spec \ "${S}"/spec/client_spec.cr:5 \ "${S}"/spec/client_spec.cr:13 \