dev-libs/aws-crt-cpp: add 0.32.10

Signed-off-by: KotoishiHeart <trakrailysurely@danceylove.net>
This commit is contained in:
KotoishiHeart
2025-06-26 22:33:42 +09:00
parent 34e3bb0333
commit 744e3c72bd
2 changed files with 42 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST aws-crt-cpp-0.32.10.tar.gz 371392 BLAKE2B 7ab81b91a6c7ee433936e977c47c5d99f40a0518450e8795c2b8693e449127b78ac5de2907d30064cfaa78d7ea85c0a8f5e8d931999079c88e6513c542ff82b0 SHA512 74a48d24987079a52a7ac972ed2bd6bf7fb308daf70d4a071b845f23dee896c1bb70eb5749021eff80320cfdfc11b4cc36500c1909194fa4d3e08694f26cfb17
DIST aws-crt-cpp-0.32.8.tar.gz 370067 BLAKE2B 00cc75a8547db9aec0322a4892d5ec3e0d42db3c38e4737924032adffa824daa7eb34c2bc7b5d7b047044cff26d006fd4961b38d302992da540c4c81fddc3650 SHA512 39899542e65390b13f19f9ad39a1ca65f6789bfdd9f496f4e7a917ced6be3fcf755132fa4173fcd982fee0368806ee252a883271e4a52e6619b4bb1d3ff20864

View File

@@ -0,0 +1,41 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Core CRT package for AWS SDK for C"
HOMEPAGE="https://github.com/awslabs/aws-crt-cpp"
SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="
dev-libs/aws-c-auth:=
dev-libs/aws-c-cal:=
dev-libs/aws-c-common:=
dev-libs/aws-c-compression:=
dev-libs/aws-c-http:=
dev-libs/aws-c-io:=
dev-libs/aws-c-mqtt:=
dev-libs/aws-c-s3:=
dev-libs/aws-c-event-stream:=
dev-libs/aws-c-sdkutils:=
dev-libs/aws-checksums:=
dev-libs/s2n:=
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
-DBUILD_DEPS=OFF
)
cmake_src_configure
}