dev-libs/aws-c-s3: add 0.9.0

Signed-off-by: KotoishiHeart <trakrailysurely@danceylove.net>
This commit is contained in:
KotoishiHeart
2025-10-21 21:07:39 +09:00
parent 305be26019
commit 40e4700663
2 changed files with 37 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ DIST aws-c-s3-0.8.1.tar.gz 369627 BLAKE2B 6fc7f81dac815c371e0f46832761290e72e246
DIST aws-c-s3-0.8.3.tar.gz 369787 BLAKE2B 84e523eb9c573f3d11dc0a57d7d3f9a6f399635b433dd5dc13adc6374be157a1111fe28992b9f1efaa8f99ba18c0599f8a0131b980908c74df0ec56219b1a0de SHA512 a584883c12700e92dc4bf29a111b5d29bf64cf334d5be75a0e15734ab6e1aabfb702c744cd8410934b42bddd85f2b191611209506376a927b4a733dcaa374b92
DIST aws-c-s3-0.8.4.tar.gz 370540 BLAKE2B 345df3e51f004e2c897a23ef28b3cb90152fd5b6957198448f8f259a5dff55294124b59f616c5ebd2962214d19c87027e15e771b39972751f83bc25b20d66408 SHA512 8e9040bbddc8e123f58a3296efe883a891bc5da12d36232861d70774fbff2aed4a33b91032a69bd1c430ea5b63cbad143be0e8156261fc068302242a2b7bace7
DIST aws-c-s3-0.8.7.tar.gz 376886 BLAKE2B 2e9616991f4f88d40610e78c125ac2c37c673956a3b5b9291e998b4c7c8637e0fa885a6700231536cabf6c864cd9fc4926d92ef5b857a6e19c5f7ffed37c1e25 SHA512 aaaad545ad9dab72fd474e12dac67bba5bde7881960ab6c3194b6fa78e1ca405661974a8e16df016fc9bf07ba4daf4753685325f90938bd1b0a31ee734a63d70
DIST aws-c-s3-0.9.0.tar.gz 390065 BLAKE2B a7b51a0161d06fb67aa4c79ace4377569af0bf493ba70d899b647bc8adb812fd28e94d56d7bcb0e57912714819b4a27ca8ce752c08cb4823ec3f02ab1b21d035 SHA512 3803f669027c0c4270edb8075de4dc18c6400c12c31815d7e2f209106e7401e873cd389dc66c6e5cffa5dbc748fbd95b3e2fda8a9f28065a49607ca1b9d6ae9d

View File

@@ -0,0 +1,36 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="AWS C S3 Library"
HOMEPAGE="https://github.com/awslabs/aws-c-s3"
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:=
dev-libs/aws-c-http:=
dev-libs/aws-c-sdkutils:=
dev-libs/aws-c-auth:=
dev-libs/s2n:=
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
)
cmake_src_configure
}