diff --git a/dev-libs/aws-c-http/Manifest b/dev-libs/aws-c-http/Manifest index e691f98a6a..064ba8e125 100644 --- a/dev-libs/aws-c-http/Manifest +++ b/dev-libs/aws-c-http/Manifest @@ -1 +1,2 @@ DIST aws-c-http-0.10.2.tar.gz 489715 BLAKE2B 460437c3181723ceb217ac25d60981d23255877da2791893a9a949949f26e91efe3451db22908f82ab9b7db150842c7a6568492bd8c2e5e4009ce7f57411f645 SHA512 c7467494319551e6fb2eed84f510f0ebe97b4c720f2254bfc865450bb90249b9fc55b371d6c02a1433eb3ee7759b3bad4502023590439dba87c6cfe5b618d14e +DIST aws-c-http-0.10.4.tar.gz 496121 BLAKE2B 544bfa3ffd3113c14ea05fe8083e61fd150d3b9ce685d02566cbbabe45cfe3fd4af378467fbfdc14eb7986f301f8d4338ffe16eadc1b052ef15671a45b82ce31 SHA512 65d1c31075e5efc85e0bc059183a9330eaddc9f6851710635c7067e751e612b1527cb51a2ee09287831a69c17a8a65c9940f29996d11095f67f1aef791546aff diff --git a/dev-libs/aws-c-http/aws-c-http-0.10.4.ebuild b/dev-libs/aws-c-http/aws-c-http-0.10.4.ebuild new file mode 100644 index 0000000000..7777170bfd --- /dev/null +++ b/dev-libs/aws-c-http/aws-c-http-0.10.4.ebuild @@ -0,0 +1,32 @@ +# 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 HTTP/1.1 and HTTP/2 specifications" +HOMEPAGE="https://github.com/awslabs/aws-c-http" +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/aws-c-io:= + dev-libs/aws-c-compression:= +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + ) + cmake_src_configure +}