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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9EE9115812D for ; Wed, 01 Jan 2025 09:51:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C81A9E076B; Wed, 01 Jan 2025 09:51:17 +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 A596AE076B for ; Wed, 01 Jan 2025 09:51:17 +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 A3B0B33C84E for ; Wed, 01 Jan 2025 09:51:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 057E211B5 for ; Wed, 01 Jan 2025 09:51:15 +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: <1735725051.65b3bc89d5e97668c0703907d370f2710723d43a.sam@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.10.0-r1.ebuild net-libs/ngtcp2/ngtcp2-1.10.0.ebuild net-libs/ngtcp2/ngtcp2-1.5.0-r1.ebuild net-libs/ngtcp2/ngtcp2-1.5.0.ebuild net-libs/ngtcp2/ngtcp2-1.7.0-r1.ebuild net-libs/ngtcp2/ngtcp2-1.7.0.ebuild net-libs/ngtcp2/ngtcp2-9999.ebuild X-VCS-Directories: net-libs/ngtcp2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 65b3bc89d5e97668c0703907d370f2710723d43a X-VCS-Branch: master Date: Wed, 01 Jan 2025 09:51:15 +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: e673acfd-ad83-4683-8f06-53164309168e X-Archives-Hash: ea6ab37a04f7c9de4bb63a7cfdd3d8d2 commit: 65b3bc89d5e97668c0703907d370f2710723d43a Author: Sam James gentoo org> AuthorDate: Wed Jan 1 09:48:04 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jan 1 09:50:51 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b3bc89 net-libs/ngtcp2: fix multilib deps for USE=ssl Signed-off-by: Sam James gentoo.org> .../{ngtcp2-1.10.0.ebuild => ngtcp2-1.10.0-r1.ebuild} | 15 ++++++++------- .../{ngtcp2-1.5.0.ebuild => ngtcp2-1.5.0-r1.ebuild} | 15 ++++++++------- .../{ngtcp2-1.7.0.ebuild => ngtcp2-1.7.0-r1.ebuild} | 15 ++++++++------- net-libs/ngtcp2/ngtcp2-9999.ebuild | 15 ++++++++------- 4 files changed, 32 insertions(+), 28 deletions(-) diff --git a/net-libs/ngtcp2/ngtcp2-1.10.0.ebuild b/net-libs/ngtcp2/ngtcp2-1.10.0-r1.ebuild similarity index 85% rename from net-libs/ngtcp2/ngtcp2-1.10.0.ebuild rename to net-libs/ngtcp2/ngtcp2-1.10.0-r1.ebuild index 6e826067b4dc..d3a2c73278eb 100644 --- a/net-libs/ngtcp2/ngtcp2-1.10.0.ebuild +++ b/net-libs/ngtcp2/ngtcp2-1.10.0-r1.ebuild @@ -24,13 +24,14 @@ REQUIRED_USE="ssl? ( || ( gnutls openssl ) ) test? ( static-libs )" BDEPEND="virtual/pkgconfig" RDEPEND=" ssl? ( - gnutls? ( >=net-libs/gnutls-3.7.2:0= ) - openssl? ( - >=dev-libs/openssl-1.1.1:0= - ) - )" -DEPEND="${RDEPEND} - test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )" + gnutls? ( >=net-libs/gnutls-3.7.2:=[${MULTILIB_USEDEP}] ) + openssl? ( >=dev-libs/openssl-1.1.1:=[${MULTILIB_USEDEP}] ) + ) +" +DEPEND=" + ${RDEPEND} + test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] ) +" RESTRICT="!test? ( test )" PATCHES=( diff --git a/net-libs/ngtcp2/ngtcp2-1.5.0.ebuild b/net-libs/ngtcp2/ngtcp2-1.5.0-r1.ebuild similarity index 84% rename from net-libs/ngtcp2/ngtcp2-1.5.0.ebuild rename to net-libs/ngtcp2/ngtcp2-1.5.0-r1.ebuild index bc6df468fc15..67d5d7bc77a8 100644 --- a/net-libs/ngtcp2/ngtcp2-1.5.0.ebuild +++ b/net-libs/ngtcp2/ngtcp2-1.5.0-r1.ebuild @@ -24,13 +24,14 @@ REQUIRED_USE="ssl? ( || ( gnutls openssl ) ) test? ( static-libs )" BDEPEND="virtual/pkgconfig" RDEPEND=" ssl? ( - gnutls? ( >=net-libs/gnutls-3.7.2:0= ) - openssl? ( - >=dev-libs/openssl-1.1.1:0= - ) - )" -DEPEND="${RDEPEND} - test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )" + gnutls? ( >=net-libs/gnutls-3.7.2:=[${MULTILIB_USEDEP}] ) + openssl? ( >=dev-libs/openssl-1.1.1:=[${MULTILIB_USEDEP}] ) + ) +" +DEPEND=" + ${RDEPEND} + test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] ) +" RESTRICT="!test? ( test )" multilib_src_configure() { diff --git a/net-libs/ngtcp2/ngtcp2-1.7.0.ebuild b/net-libs/ngtcp2/ngtcp2-1.7.0-r1.ebuild similarity index 84% rename from net-libs/ngtcp2/ngtcp2-1.7.0.ebuild rename to net-libs/ngtcp2/ngtcp2-1.7.0-r1.ebuild index 70833ee25820..c4864da2270c 100644 --- a/net-libs/ngtcp2/ngtcp2-1.7.0.ebuild +++ b/net-libs/ngtcp2/ngtcp2-1.7.0-r1.ebuild @@ -24,13 +24,14 @@ REQUIRED_USE="ssl? ( || ( gnutls openssl ) ) test? ( static-libs )" BDEPEND="virtual/pkgconfig" RDEPEND=" ssl? ( - gnutls? ( >=net-libs/gnutls-3.7.2:0= ) - openssl? ( - >=dev-libs/openssl-1.1.1:0= - ) - )" -DEPEND="${RDEPEND} - test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )" + gnutls? ( >=net-libs/gnutls-3.7.2:=[${MULTILIB_USEDEP}] ) + openssl? ( >=dev-libs/openssl-1.1.1:=[${MULTILIB_USEDEP}] ) + ) +" +DEPEND=" + ${RDEPEND} + test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] ) +" RESTRICT="!test? ( test )" multilib_src_configure() { diff --git a/net-libs/ngtcp2/ngtcp2-9999.ebuild b/net-libs/ngtcp2/ngtcp2-9999.ebuild index 6e826067b4dc..d3a2c73278eb 100644 --- a/net-libs/ngtcp2/ngtcp2-9999.ebuild +++ b/net-libs/ngtcp2/ngtcp2-9999.ebuild @@ -24,13 +24,14 @@ REQUIRED_USE="ssl? ( || ( gnutls openssl ) ) test? ( static-libs )" BDEPEND="virtual/pkgconfig" RDEPEND=" ssl? ( - gnutls? ( >=net-libs/gnutls-3.7.2:0= ) - openssl? ( - >=dev-libs/openssl-1.1.1:0= - ) - )" -DEPEND="${RDEPEND} - test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )" + gnutls? ( >=net-libs/gnutls-3.7.2:=[${MULTILIB_USEDEP}] ) + openssl? ( >=dev-libs/openssl-1.1.1:=[${MULTILIB_USEDEP}] ) + ) +" +DEPEND=" + ${RDEPEND} + test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] ) +" RESTRICT="!test? ( test )" PATCHES=(