dev-python/boto3: Bump to 1.42.26

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-01-13 07:59:08 +01:00
parent b7d19562cd
commit f816a7644a
2 changed files with 54 additions and 0 deletions

View File

@@ -6,5 +6,6 @@ DIST boto3-1.42.22.gh.tar.gz 1068280 BLAKE2B dda22895cce5a75dcd005485e5144618d56
DIST boto3-1.42.23.gh.tar.gz 1068471 BLAKE2B 8a91b32e706666d5575ca8a5e4804b459a8778d738c5f28891c7e2e81239e4e5600911ae6bfcb7c10f6e1a286c62cd12a5f94c0cc6168f24a8897ca31dfdbba3 SHA512 adf5134d65d5d193cf7259e8df01ea6812d74fbe1b6bbc13fb2d920e86c0b71f928c01241f0cfb25d684e11036132419f447f52fa3f89433c68014c5461bf731
DIST boto3-1.42.24.gh.tar.gz 1068574 BLAKE2B 60819802e4ec924052c5925300fc4ed5c0cca2d07f30e68e3a5d9cc071593854d5e501c338bb5a9d282c2955c0670ac410ba3d25e8091f9d3caf1a3c787da411 SHA512 fe9fdf6589bdd44ae4c930e1e1a6888081cac742ff7602d6888df12d91b0e8cfdd6c5a86e8d07c7f08d92e719d0aa2823520f74987d1e478621b04c30e83040d
DIST boto3-1.42.25.gh.tar.gz 1069210 BLAKE2B 33aff7204332da82b7b5df93b74a2b17538734441d3cbd8d2dd971e71794301b5ee281ccf6c9aade4848a36f0611e4cc4b5531c2aff8eba920a78eacbe3f6142 SHA512 71b5976e8b5f67f33a25f4e7a27e0a7d2cf0b96ed10558bb3fda181569a77c9323d991376b139eb2b0e2b93cd3dd93e083f1c56bd06956d387ee587a1145166c
DIST boto3-1.42.26.gh.tar.gz 1069920 BLAKE2B 415b1ce889da54a5ff422381dc76faa1f954cad370aaaccca8951198742830ba07e9042f0b3ce02ecfe937412967ea6ad7c7b3a9264bab0f357bda5e45421d2b SHA512 5b6f11390cbe82784e5e70e93bed7c8ae85265d22cd79e86d8bfd6c7bcbc94b7995fd268ed3a653f3d9f68b08ed82a041c14deb1134a6c66d556e1ac211d4aa4
DIST boto3-1.42.4.gh.tar.gz 1055570 BLAKE2B a9990bb04ce59111c6371536692c6e4d5440f3f0dc79e1ecc119652603bcd8bc15839400758999faffd7df9bda9efb4991393fcab32baa16c7a0e51ff7c5cc94 SHA512 95950ba80f31c3951a88237ff5edd1367285c3ab263c7f8ad1b7556d610d553dd4e2021fbbcc0d9bdcf578fe34ad9fcf6231511f54ee71917f69c1cdb6adab28
DIST boto3-1.42.9.gh.tar.gz 1059745 BLAKE2B 78fba4fe807a3ea8eea22cd81cff67c90cd36e281665545bc9d7dc9bfaa1089d668e1994ba6e950eedfe2cfa1495f192b43f8fdae2b9b8b6bd74b62e0ab699d8 SHA512 92ecb0d609ba2f7df6a444b9d840e2a070b22ec38f8ae3bd376e9473e5b4efbefc9bc924046cc6d79576967e33eed270633396171e6102331b58519021435fe8

View File

@@ -0,0 +1,53 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1
DESCRIPTION="The AWS SDK for Python"
HOMEPAGE="
https://github.com/boto/boto3/
https://pypi.org/project/boto3/
"
SRC_URI="
https://github.com/boto/boto3/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
RDEPEND="
>=dev-python/botocore-${PV}[${PYTHON_USEDEP}]
>=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
>=dev-python/s3transfer-0.16.0[${PYTHON_USEDEP}]
"
EPYTEST_PLUGINS=()
EPYTEST_XDIST=1
distutils_enable_tests pytest
python_prepare_all() {
# don't lock versions to narrow ranges
sed -e '/botocore/ d' \
-e '/jmespath/ d' \
-e '/s3transfer/ d' \
-i setup.py || die
# do not rely on bundled deps in botocore (sic!)
find -name '*.py' -exec sed -i \
-e 's:from botocore[.]vendored import:import:' \
-e 's:from botocore[.]vendored[.]:from :' \
{} + || die
distutils-r1_python_prepare_all
}
python_test() {
epytest tests/{functional,unit}
}