dev-cpp/aws-crt-cpp: 0.35.2

Fix tests.

Closes: https://bugs.gentoo.org/966324
Signed-off-by: Jaco Kroon <jkroon@gentoo.org>
This commit is contained in:
Jaco Kroon 2025-12-02 16:35:04 +02:00
parent 39a645a3ea
commit e526750e43
No known key found for this signature in database
GPG Key ID: BB24E3E3D99148AE

View File

@ -12,6 +12,9 @@ inherit cmake
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="
dev-libs/aws-c-auth:=
@ -31,6 +34,11 @@ src_configure()
{
local mycmakeargs=(
-DBUILD_DEPS=OFF # disable embedded 3rd-party repositories.
-DBUILD_TESTING=$(usex test)
)
use test && mycmakeargs+=(
-DENABLE_NET_TESTS=OFF # Network Sandbox cause these to fail.
)
cmake_src_configure