From 3c5fb275be9ba72a2dffbe45db8c309ee3fc6723 Mon Sep 17 00:00:00 2001 From: KotoishiHeart Date: Sun, 19 Jul 2026 03:06:00 +0900 Subject: [PATCH] dev-libs/aws-c-compression: add 0.3.2 Signed-off-by: KotoishiHeart Part-of: https://github.com/gentoo/gentoo/pull/46586 Signed-off-by: Jaco Kroon --- dev-libs/aws-c-compression/Manifest | 1 + .../aws-c-compression-0.3.2.ebuild | 28 +++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 dev-libs/aws-c-compression/aws-c-compression-0.3.2.ebuild diff --git a/dev-libs/aws-c-compression/Manifest b/dev-libs/aws-c-compression/Manifest index 6c65f410defc2..11e002719d833 100644 --- a/dev-libs/aws-c-compression/Manifest +++ b/dev-libs/aws-c-compression/Manifest @@ -1 +1,2 @@ DIST aws-c-compression-0.3.1.tar.gz 36879 BLAKE2B 9383d40c0234f410068b78a36b1918e81968349f096f88814df488c27bc8575a11473d3c8b2a6ac5c41134cdeaffd624da86cf9a8b63c39ad26d0c11649c63ac SHA512 02c569751c55b95032bef9b718ca8e2b66b4bd85355f31623ab65621373ec39999231d0a1ceb4fe5f83aa42b9c1d153ffb36ccadfb86f78ad43246d26532cc97 +DIST aws-c-compression-0.3.2.tar.gz 36815 BLAKE2B 8c264db33ad6e4ecd233e39e45a0cd23a10b860f6c35d91851f09159777e7a39545ded7d1ec3b2d9065db8bc8143150eb21e6be9084d89f4df1ee772ea42cf47 SHA512 a44549d441e21c6f7b6a3b5d3c8ea7228e066cd7026432c121683abca54014c439790143108150e3f502be13d43102e6c99c1de0288b1a373060733f47cc57d9 diff --git a/dev-libs/aws-c-compression/aws-c-compression-0.3.2.ebuild b/dev-libs/aws-c-compression/aws-c-compression-0.3.2.ebuild new file mode 100644 index 0000000000000..8edb320e3b4cd --- /dev/null +++ b/dev-libs/aws-c-compression/aws-c-compression-0.3.2.ebuild @@ -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 Compression cross-platform algorithms" +HOMEPAGE="https://github.com/awslabs/aws-c-compression" +SRC_URI="https://github.com/awslabs/aws-c-compression/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 +}