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 47D5A1581D3 for ; Thu, 23 May 2024 21:55:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D229E2A23; Thu, 23 May 2024 21:55:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 5E912E2A23 for ; Thu, 23 May 2024 21:55:51 +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 9C23E335D64 for ; Thu, 23 May 2024 21:55:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 203E5ED0 for ; Thu, 23 May 2024 21:55:49 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1716501345.0529eced14ec1c498f6c87b0d6feed7bedad2040.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ngtcp2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/ngtcp2/ngtcp2-1.5.0.ebuild net-libs/ngtcp2/ngtcp2-9999.ebuild X-VCS-Directories: net-libs/ngtcp2/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 0529eced14ec1c498f6c87b0d6feed7bedad2040 X-VCS-Branch: master Date: Thu, 23 May 2024 21:55:49 +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: 6d8a09e7-e705-4518-b404-2005fe952fde X-Archives-Hash: 44e033f60fa29bbc497bbafc66946d56 commit: 0529eced14ec1c498f6c87b0d6feed7bedad2040 Author: Matoro Mahri matoro tk> AuthorDate: Thu May 23 21:40:44 2024 +0000 Commit: Craig Andrews gentoo org> CommitDate: Thu May 23 21:55:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0529eced net-libs/ngtcp2: fix tests for >=1.5.0 In 1.5.0 moved to gating tests behind -DBUILD_TESTING See https://github.com/ngtcp2/ngtcp2/pull/1189 Corresponding Gentoo commit for nghttp2 is https://github.com/gentoo/gentoo/commit/2d6a77b5adaa5160199e3b4de2cf754aa8717c9e Bug: https://bugs.gentoo.org/931998 Signed-off-by: Matoro Mahri matoro.tk> Closes: https://github.com/gentoo/gentoo/pull/36799 Signed-off-by: Craig Andrews gentoo.org> net-libs/ngtcp2/ngtcp2-1.5.0.ebuild | 3 ++- net-libs/ngtcp2/ngtcp2-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/net-libs/ngtcp2/ngtcp2-1.5.0.ebuild b/net-libs/ngtcp2/ngtcp2-1.5.0.ebuild index d36fb26328c9..2d57c3b7c864 100644 --- a/net-libs/ngtcp2/ngtcp2-1.5.0.ebuild +++ b/net-libs/ngtcp2/ngtcp2-1.5.0.ebuild @@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/ngtcp2/ngtcp2/" LICENSE="MIT" SLOT="0/0" IUSE="+gnutls openssl +ssl static-libs test" -REQUIRED_USE="ssl? ( || ( gnutls openssl ) )" +REQUIRED_USE="ssl? ( || ( gnutls openssl ) ) test? ( static-libs )" BDEPEND="virtual/pkgconfig" RDEPEND=" @@ -43,6 +43,7 @@ multilib_src_configure() { -DENABLE_WOLFSSL=OFF -DCMAKE_DISABLE_FIND_PACKAGE_Libev=ON -DCMAKE_DISABLE_FIND_PACKAGE_Libnghttp3=ON + -DBUILD_TESTING=$(usex test) ) cmake_src_configure } diff --git a/net-libs/ngtcp2/ngtcp2-9999.ebuild b/net-libs/ngtcp2/ngtcp2-9999.ebuild index 1f15a2e28c49..c72e046deae8 100644 --- a/net-libs/ngtcp2/ngtcp2-9999.ebuild +++ b/net-libs/ngtcp2/ngtcp2-9999.ebuild @@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/ngtcp2/ngtcp2/" LICENSE="MIT" SLOT="0/0" IUSE="+gnutls openssl +ssl static-libs test" -REQUIRED_USE="ssl? ( || ( gnutls openssl ) )" +REQUIRED_USE="ssl? ( || ( gnutls openssl ) ) test? ( static-libs )" BDEPEND="virtual/pkgconfig" RDEPEND=" @@ -43,6 +43,7 @@ multilib_src_configure() { -DENABLE_WOLFSSL=OFF -DCMAKE_DISABLE_FIND_PACKAGE_Libev=ON -DCMAKE_DISABLE_FIND_PACKAGE_Libnghttp3=ON + -DBUILD_TESTING=$(usex test) ) cmake_src_configure }