dev-libs/aws-c-sdkutils: add 0.2.7

Signed-off-by: KotoishiHeart <trakrailysurely@danceylove.net>
Part-of: https://github.com/gentoo/gentoo/pull/46586
Signed-off-by: Jaco Kroon <jkroon@gentoo.org>
This commit is contained in:
KotoishiHeart
2026-07-19 03:06:04 +09:00
committed by Jaco Kroon
parent 3c5fb275be
commit 69fb1b6a11
2 changed files with 29 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST aws-c-sdkutils-0.2.4.tar.gz 80333 BLAKE2B 19888ff7a5ed48a041ba5f63f3db3b46d4240bf0fd74850d3d6ed1dce0cc86b6ebd34ba998bd4ffecea3df322e3c46e1cfdd820eaa51568b3d29c7632dd95683 SHA512 4c25a92495d056145c69023922b41a8ec80660171d4b6cbbcc029f63a93e4d57868121b8baca10cb671d275a49ab6d977746871f671bc913f5eee2f960937bc4
DIST aws-c-sdkutils-0.2.7.tar.gz 113616 BLAKE2B ced094876d8fff07e3f69de1ca961d3d2bad9fbb196d730c210def140c7ebe75b7b1b9ea6cb042fdfbeff2a9033557e8e9fb0a465b08beb557fae34df580e044 SHA512 c2592a3236a839462813fa02eff9192d4a1b725f059b48a895d09a3d0d6f750a699477582eef197138008c7aedd69f55401c8e6934bb853ff4749e0a889705f9

View File

@@ -0,0 +1,28 @@
# Copyright 2025-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="AWS C SDKUTILS: C99 library implementing AWS SDK specific utilities"
HOMEPAGE="https://github.com/awslabs/aws-c-sdkutils"
SRC_URI="https://github.com/awslabs/aws-c-sdkutils/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
inherit cmake
LICENSE="Apache-2.0"
SLOT="0/1"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="dev-libs/aws-c-common"
RDEPEND="${DEPEND}"
BDEPEND="dev-libs/aws-c-common"
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
)
cmake_src_configure
}