dev-python/awscrt: Bump to 0.36.3

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-09-12 13:39:43 +02:00
parent 27a37de739
commit 891c0fe0e4
2 changed files with 65 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST awscrt-0.36.2.tar.gz 37121147 BLAKE2B d75e83e023c7be0ed351df02056337bb6541dbbd8364e8e1037adf9644dbb0418f06a78789ed7d3823d9a30348dea77bd870b0af9bf3735f41f8f43b50a37d76 SHA512 e58de9bc41cdf7b70e15517da3025f1494e27a3eddf207fe571975e02a63b7a447900fc81b5fcf5c9876bd9ce514da02c7c7d8a39e90948d5cd03b96d644726a
DIST awscrt-0.36.3.tar.gz 37812193 BLAKE2B 350a906fee04981975f5b983f0497fc028b13c4092563205e3364322502c6274ef0d7c10e283fbbc33357624973f501963391656765e7a96da8fa54fc3920b3b SHA512 94b4b4a5823bd373c7d72e52d6b8e734ba0080e5b8f1d045c60ce4ebffb9e9d7598f4246b849bff06cf8915018c87fc4af2be3f85cacc898bff55ea1abe633fe

View File

@@ -0,0 +1,64 @@
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..15} )
inherit distutils-r1 pypi
DESCRIPTION="A common runtime for AWS Python projects"
HOMEPAGE="
https://github.com/awslabs/aws-crt-python/
https://pypi.org/project/awscrt/
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv"
DEPEND="
>=dev-libs/aws-c-common-1.0.0:=
>=dev-libs/aws-c-auth-1.0.0:=
>=dev-libs/aws-c-sdkutils-1.0.0:=
>=dev-libs/aws-c-cal-1.0.0:=
>=dev-libs/aws-c-io-1.0.0:=
>=dev-libs/aws-c-compression-1.0.0:=
>=dev-libs/aws-c-event-stream-1.0.0:=
>=dev-libs/aws-c-http-1.0.0:=
>=dev-libs/aws-c-auth-1.0.0:=
>=dev-libs/aws-c-mqtt-1.0.0:=
>=dev-libs/aws-c-s3-1.0.0:=
>=dev-libs/aws-checksums-1.0.0:=
dev-libs/openssl:=
dev-libs/s2n-tls:=
"
RDEPEND="
${DEPEND}
"
BDEPEND="
test? (
dev-python/h2[${PYTHON_USEDEP}]
dev-python/websockets[${PYTHON_USEDEP}]
)
"
distutils_enable_tests unittest
src_prepare() {
distutils-r1_src_prepare
# remove bundled libs
rm -r crt || die
export AWS_CRT_BUILD_USE_SYSTEM_LIBS=1
# Internet/DNS
sed -e 's:test_h2_remote_end_stream_ordering:_&:' \
-e 's:test_cross_thread_http2_client:_&:' \
-e 's:test_h2_client:_&:' \
-e 's:test_h2_manual_write_exception:_&:' \
-e 's:test_h2_remote_end_stream_ordering:_&:' \
-i test/test_{aio,}http_client.py || die
}