From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15D3F1581EE for ; Mon, 07 Apr 2025 09:33:14 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id F32923430FE for ; Mon, 07 Apr 2025 09:33:13 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 292511104CF; Mon, 07 Apr 2025 09:32:31 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 1DA2D1104CF for ; Mon, 07 Apr 2025 09:32:31 +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 CEBB6343105 for ; Mon, 07 Apr 2025 09:32:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5E86271C for ; Mon, 07 Apr 2025 09:32:27 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1744016201.0af11f2f0942df5c3eebffec1b30c6599459691e.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/lsquic/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/lsquic/lsquic-4.0.12.ebuild X-VCS-Directories: dev-libs/lsquic/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 0af11f2f0942df5c3eebffec1b30c6599459691e X-VCS-Branch: master Date: Mon, 07 Apr 2025 09:32:27 +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: 6b1dbe6f-8818-4e67-8da5-7a9ed05c8294 X-Archives-Hash: a0003989d0bde0023fdecdd2a222b55c Message-ID: <20250407093227.3tphdXiw5Vr8hmvn7QzK5L2iFWab6kyhJhxjP3I2_Xk@z> commit: 0af11f2f0942df5c3eebffec1b30c6599459691e Author: David Roman gmail com> AuthorDate: Mon Apr 7 08:56:41 2025 +0000 Commit: David Roman gmail com> CommitDate: Mon Apr 7 08:56:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0af11f2f dev-libs/lsquic: remove static-libs support One of the deps, ls-qpack, removed static-libs support so we also remove it here. Signed-off-by: David Roman gmail.com> dev-libs/lsquic/lsquic-4.0.12.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/lsquic/lsquic-4.0.12.ebuild b/dev-libs/lsquic/lsquic-4.0.12.ebuild index 7163e9ef5..ea0d673ab 100644 --- a/dev-libs/lsquic/lsquic-4.0.12.ebuild +++ b/dev-libs/lsquic/lsquic-4.0.12.ebuild @@ -18,13 +18,13 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm64" -IUSE="static-libs test" +IUSE="test" RESTRICT="!test? ( test )" DEPEND=" dev-lang/go - dev-libs/ls-qpack:=[static-libs=] - dev-libs/ls-hpack:=[static-libs=] + dev-libs/ls-qpack:= + dev-libs/ls-hpack:= " RDEPEND=" ${DEPEND} @@ -47,7 +47,7 @@ src_unpack() { src_configure() { local mycmakeargs=( - -DLSQUIC_SHARED_LIB=$(usex !static-libs) + -DLSQUIC_SHARED_LIB=ON -DLSQUIC_TESTS=$(usex test) ) cmake_src_configure