mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 03:53:22 -04:00
dev-libs/aws-c-io: add 0.20.1
Signed-off-by: KotoishiHeart <trakrailysurely@danceylove.net>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST aws-c-io-0.19.1.tar.gz 736276 BLAKE2B 66afe228fda5d24eb240f9c187bfe5516fa81c8206089813b35ac7872ff5592d9014e1e7b0ae805ead59953d56abbce0356b41b7618d180f292a36c37dfb1d90 SHA512 980de4a052155226ff71e6c3a0e5b49c2717b6bf8478148b327963d6a6856b81940f0d9fa3cdaa9e99606f39e93fb74bee601b4f03e2d0f285b0f0056277fdce
|
||||
DIST aws-c-io-0.20.1.tar.gz 749024 BLAKE2B 3f1db4d61faa6922925d74734a1db24de75b21830783480ffb0415871e9c946174828287cf335bcea2fd6a5513caa674b5be8de3353abe29b8f3ed5d2f3eca23 SHA512 cc9c367cfcd4fe3486f4e021fbbf302cec248cc42f2a80b49a107c1f86e91e64d70eac4e0ccbd6b91282edae3ecc576b31049f3c412016065c49b0a728678294
|
||||
|
||||
41
dev-libs/aws-c-io/aws-c-io-0.20.1.ebuild
Normal file
41
dev-libs/aws-c-io/aws-c-io-0.20.1.ebuild
Normal file
@@ -0,0 +1,41 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="AWS SDK for C module, handles IO and TLS work for application protocols"
|
||||
HOMEPAGE="https://github.com/awslabs/aws-c-io"
|
||||
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/s2n:=
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBUILD_TESTING=$(usex test)
|
||||
)
|
||||
|
||||
if use test; then
|
||||
# (#759802) Due to network sandboxing of portage, internet connectivity
|
||||
# tests will always fail. If you need a USE flag, because you want/need
|
||||
# to perform these tests manually, please open a bug report for it.
|
||||
mycmakeargs+=(
|
||||
-DENABLE_NET_TESTS=OFF
|
||||
)
|
||||
fi
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user