dev-libs/aws-c-io: add 0.22.1

Signed-off-by: KotoishiHeart <trakrailysurely@danceylove.net>
This commit is contained in:
KotoishiHeart
2025-10-21 21:07:36 +09:00
parent 89a5fe5779
commit 305be26019
2 changed files with 42 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ DIST aws-c-io-0.19.1.tar.gz 736276 BLAKE2B 66afe228fda5d24eb240f9c187bfe5516fa81
DIST aws-c-io-0.20.1.tar.gz 749024 BLAKE2B 3f1db4d61faa6922925d74734a1db24de75b21830783480ffb0415871e9c946174828287cf335bcea2fd6a5513caa674b5be8de3353abe29b8f3ed5d2f3eca23 SHA512 cc9c367cfcd4fe3486f4e021fbbf302cec248cc42f2a80b49a107c1f86e91e64d70eac4e0ccbd6b91282edae3ecc576b31049f3c412016065c49b0a728678294
DIST aws-c-io-0.21.0.tar.gz 749192 BLAKE2B f41b5bbb96c79fd9005f14038bdde6b9d4ad5df230e6985bd479ca3e27728d3ae240adf99a2fd545285465a4084a25b15ee1bca6c827c498115d2a13b950a0ce SHA512 ea07e14cb62df984798a2dfda6e58c9e92e89735de7249e84dfaf5c408da7eb1558b68893f6fd93cb98daf1a3400cb2483a8e678e7cae7b6b89f75285489f8cb
DIST aws-c-io-0.22.0.tar.gz 753912 BLAKE2B 0d71a4ca3248fc93e60c1c007951628b08dab8f217c9acc3f09f03a08dfc2a47c164e561ee5662ed0382bb1a29cba684a566d24638b5894a4f0c92755abadff2 SHA512 c4cf66972a2ce604800c779d9c5045476b349b8bc37abfcbc9ddf8924882e5b6ca9577cac920d42c3f6dd8a71585d091438fedc1d45d4116e207f63d61203c75
DIST aws-c-io-0.22.1.tar.gz 754117 BLAKE2B d83ef6a66408fffba93ee4d0a0667584eba3bb036ebd00507311d05e2443253d544a82c5d60d4758309bc7eaa37f2bba7e48fcbfbb5476cd2412775ca154afbb SHA512 125db1ca53686b7fd8dadd7c96d5206e9b579a7ea74ffd003e3b3d20a53d7481ec226b046bbfb87a2f6c485afbd0e73f628cdc4a44ae1b08afd47ed2452180fa

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="AWS SDK for C module, handles IO and TLS work for application protocols"
HOMEPAGE="https://github.com/awslabs/aws-c-io"
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-common:=
dev-libs/aws-c-cal:=
dev-libs/s2n:=
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
)
if use test; then
# (#759802) Due to network sandboxing of portage, internet connectivity
# tests will always fail. If you need a USE flag, because you want/need
# to perform these tests manually, please open a bug report for it.
mycmakeargs+=(
-DENABLE_NET_TESTS=OFF
)
fi
cmake_src_configure
}