commit: 51dbb848a764e954e379950f2a28ae2c95f38f28 Author: KotoishiHeart <trakrailysurely <AT> danceylove <DOT> net> AuthorDate: Tue Sep 16 15:47:25 2025 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Tue Sep 16 15:47:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=51dbb848
dev-libs/aws-c-event-stream: add 0.5.7 Signed-off-by: KotoishiHeart <trakrailysurely <AT> danceylove.net> dev-libs/aws-c-event-stream/Manifest | 1 + .../aws-c-event-stream-0.5.7.ebuild | 41 ++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/dev-libs/aws-c-event-stream/Manifest b/dev-libs/aws-c-event-stream/Manifest index 468e3caffe..938ec00d52 100644 --- a/dev-libs/aws-c-event-stream/Manifest +++ b/dev-libs/aws-c-event-stream/Manifest @@ -1,2 +1,3 @@ DIST aws-c-event-stream-0.5.4.tar.gz 98545 BLAKE2B 786ee3db4e482547ed5de9d7982e3941809a895894431950194556d934de6a62fcfaddc3acc4688bd83caa5ccf647b926b96b37ba81373aff47da345e6027ee5 SHA512 5eb9d0aec42eeb637e16c6921a57d1de6a69da55842aed2230792632e62deb701be0049961e8b2daf6b01f048f2d9756cc71acebbcfc445ed0ebd8098a6b843a DIST aws-c-event-stream-0.5.5.tar.gz 99105 BLAKE2B 347741ac6edd253758cea74f7e57ef28b865390b10aa5d4df7f38448eaee9e43b3ebbaf88398422a5b2ee8242ef584069d5083c4f748d93eebbea123e4e48190 SHA512 1a6d376aafa749d84aa3b8ca2255a3f5168d8225bf96d4ea61188fad5b7615eb2c8ca0e0a641c741c628f5e818b6762ea41e9ed3cff6b2b8581604ce35021c97 +DIST aws-c-event-stream-0.5.7.tar.gz 101147 BLAKE2B 58f9434e10e7b61077f662e31d94c806e76b67b421c3aecd6694668342ea7f360a11b56e5747c4b4c5d30646eeba6ccd12df029b25ef189a41fabf462355ea4e SHA512 87867d9c8ad7058e433ebcdfddb762c92d6abd3fe61a5332bf18e9a5fa98930181615417d4aeecb4118b5eb27c12afc8f21ab740d3b81f07bc86e9a7e0ecc3b4 diff --git a/dev-libs/aws-c-event-stream/aws-c-event-stream-0.5.7.ebuild b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.5.7.ebuild new file mode 100644 index 0000000000..6335b70354 --- /dev/null +++ b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.5.7.ebuild @@ -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="C99 implementation of the vnd.amazon.eventstream content-type" +HOMEPAGE="https://github.com/awslabs/aws-c-event-stream" +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-io:= + dev-libs/aws-checksums:= +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + ) + + if use test; then + # (#760585) 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 +}
