commit:     6943c75a9d97541482849bfb8217a9eb8b15c8f8
Author:     KotoishiHeart <trakrailysurely <AT> danceylove <DOT> net>
AuthorDate: Thu Jun 26 13:33:40 2025 +0000
Commit:     Okamura Kazuya <trakrailysurely <AT> danceylove <DOT> net>
CommitDate: Thu Jun 26 13:33:40 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6943c75a

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

Signed-off-by: KotoishiHeart <trakrailysurely <AT> danceylove.net>

 dev-libs/aws-c-event-stream/Manifest               |  1 +
 .../aws-c-event-stream-0.5.5.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 2ae080a8a5..468e3caffe 100644
--- a/dev-libs/aws-c-event-stream/Manifest
+++ b/dev-libs/aws-c-event-stream/Manifest
@@ -1 +1,2 @@
 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

diff --git a/dev-libs/aws-c-event-stream/aws-c-event-stream-0.5.5.ebuild 
b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.5.5.ebuild
new file mode 100644
index 0000000000..6335b70354
--- /dev/null
+++ b/dev-libs/aws-c-event-stream/aws-c-event-stream-0.5.5.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
+}

Reply via email to