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 415911382C5 for ; Mon, 10 May 2021 09:58:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 648D7E07A5; Mon, 10 May 2021 09:58:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4C8EEE07A5 for ; Mon, 10 May 2021 09:58:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 54A07340F17 for ; Mon, 10 May 2021 09:57:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7F514A0 for ; Mon, 10 May 2021 09:57:57 +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: <1620640666.65dd1edfd454be02ef7f361ad0c124063f7b3eb7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmicrohttpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild X-VCS-Directories: net-libs/libmicrohttpd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 65dd1edfd454be02ef7f361ad0c124063f7b3eb7 X-VCS-Branch: master Date: Mon, 10 May 2021 09:57:57 +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: 17cdd916-092c-49dc-b14d-c029252e7a6d X-Archives-Hash: 11a0579f9a14bd31627fe1e08a5b697b commit: 65dd1edfd454be02ef7f361ad0c124063f7b3eb7 Author: Sam James gentoo org> AuthorDate: Mon May 10 09:57:24 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 10 09:57:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65dd1edf net-libs/libmicrohttpd: add curl to BDEPEND too for tests Signed-off-by: Sam James gentoo.org> net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild index 6e40bbf9a52..d881dcb779b 100644 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild @@ -18,13 +18,14 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc IUSE="+epoll ssl static-libs test thread-names" RESTRICT="!test? ( test )" +# libcurl is linked to for tests and the +# curl binary is used during tests too +# if available RDEPEND="ssl? ( >net-libs/gnutls-2.12.20:= )" DEPEND="${RDEPEND} - test? ( net-misc/curl[ssl?] ) -" -BDEPEND=" - virtual/pkgconfig -" + test? ( net-misc/curl[ssl?] )" +BDEPEND="virtual/pkgconfig + test? ( net-misc/curl[ssl?] )" DOCS=( AUTHORS NEWS README ChangeLog )