dev-libs/aws-c-event-stream: add 0.7.1

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:19 +09:00
committed by Jaco Kroon
parent 766bec8e68
commit 185a2d78c7
2 changed files with 35 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST aws-c-event-stream-0.5.7.tar.gz 101147 BLAKE2B 58f9434e10e7b61077f662e31d94c806e76b67b421c3aecd6694668342ea7f360a11b56e5747c4b4c5d30646eeba6ccd12df029b25ef189a41fabf462355ea4e SHA512 87867d9c8ad7058e433ebcdfddb762c92d6abd3fe61a5332bf18e9a5fa98930181615417d4aeecb4118b5eb27c12afc8f21ab740d3b81f07bc86e9a7e0ecc3b4
DIST aws-c-event-stream-0.7.1.tar.gz 104143 BLAKE2B 1597f21f43dca68ed66f7ced56afc5e7c03e4f24a946f78b49da57c993052756b25f3fabd290b9fd31fefae65b4b358bd3f5778551e8f1306c5be32973e3de35 SHA512 7bc0ed2490f8f2d349fb4aaf77ea20276437f2d184c9c1bfabac72225d0cd37a5bc1e1a8b8dd834f5eccb81aa108426119b9a9250246d4bb88b745e81d9ad07d

View File

@@ -0,0 +1,34 @@
# Copyright 2025-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Core c99 package for AWS SDK for C"
HOMEPAGE="https://github.com/awslabs/aws-c-event-stream"
SRC_URI="https://github.com/awslabs/aws-c-event-stream/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
dev-libs/aws-c-io
dev-libs/aws-checksums"
RDEPEND="${DEPEND}"
BDEPEND="dev-libs/aws-c-common"
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
)
use test && mycmakeargs+=(
-DENABLE_NET_TESTS=OFF # Network Sandbox cause these to fail.
)
cmake_src_configure
}