dev-libs/aws-c-compression: add 0.3.2

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:00 +09:00
committed by Jaco Kroon
parent c2572b9fa0
commit 3c5fb275be
2 changed files with 29 additions and 0 deletions

View File

@@ -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

View File

@@ -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
}