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

Signed-off-by: KotoishiHeart <trakrailysurely@danceylove.net>
This commit is contained in:
KotoishiHeart
2025-07-17 23:58:27 +09:00
parent 76386f0889
commit db6022c42a
2 changed files with 42 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
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
DIST aws-crt-cpp-0.33.0.tar.gz 371377 BLAKE2B 3f5e5b59a57d373ae5165bd4d51c092ba124123c43663e979d9dfb20e3ac201b5b394a888f4b76a13c87086b1f20fbd30b595f596f245b8912de50fbe61eca86 SHA512 cecabc6e1370b816c856f141b4ced9fa797112b7bde8e3b448d19be285e7276bcd562e2f93be878fc6a09af0933692cac914c2f3066a05756068acf1c97513b3

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
}