mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
dev-libs/aws-c-auth: add 0.9.2
Signed-off-by: Jaco Kroon <jkroon@gentoo.org>
This commit is contained in:
parent
86bbfad7dd
commit
cc07de0cd5
@ -1 +1,2 @@
|
||||
DIST aws-c-auth-0.9.1.tar.gz 265755 BLAKE2B 3b092f15ad7d892b31ed9478da0f58d47789d8bfe220a9563422ab978401a654dad3cd5470691f67f6868db4052cf2e8ae9b22212828112b3c033a9f31a71c10 SHA512 3e6ab0e35bb61702de9bad0b71a76c7ec9275d478f8a0dda8334185eff90be8c662e39ff0ca8fe3298663073167d1951910e017814c829e81d10785e44351ffd
|
||||
DIST aws-c-auth-0.9.2.tar.gz 280216 BLAKE2B a8001c4ad257480e7d5756bb500bb66fb09c5254114510a5a96e13e3150bbf6f0843e59b842d4354ff94f57c5fea3f27b184105e4d1c0d0a3537be0403624469 SHA512 b9abc81d5687de08d5db840ce22d0e41719cfd4c30c0868601da5877444cd66970274d4c8adeee8f409002d118d5a65ada3d2f4292dfd2dcb011922e8adec820
|
||||
|
||||
36
dev-libs/aws-c-auth/aws-c-auth-0.9.2.ebuild
Normal file
36
dev-libs/aws-c-auth/aws-c-auth-0.9.2.ebuild
Normal file
@ -0,0 +1,36 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="AWS C Auth: C99 library implementation of AWS client-side authentication."
|
||||
HOMEPAGE="https://github.com/awslabs/aws-c-auth"
|
||||
SRC_URI="https://github.com/awslabs/aws-c-auth/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-cal:=
|
||||
>=dev-libs/aws-c-common-0.12.6:=
|
||||
dev-libs/aws-c-http:=
|
||||
dev-libs/aws-c-sdkutils:=
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="dev-libs/aws-c-common"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBUILD_TESTING=$(usex test)
|
||||
)
|
||||
use test && mycmakeargs+=(
|
||||
-DENABLE_NET_TESTS=OFF # Network Sandbox cause these to fail.
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user