commit:     7571972b08857484ae30c6b24b684db9cc0f2c24
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 27 03:02:42 2026 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Feb 27 03:51:52 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7571972b

dev-python/boto3: Bump to 1.42.58

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/boto3/Manifest             |  1 +
 dev-python/boto3/boto3-1.42.58.ebuild | 53 +++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 1568f1ae2692..1fed1f3622dd 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -14,3 +14,4 @@ DIST boto3-1.42.54.gh.tar.gz 1088047 BLAKE2B 
882bb5e1c8b5b3b5539b8536e286e9df4fe
 DIST boto3-1.42.55.gh.tar.gz 1088949 BLAKE2B 
fee5acfd89f82682e0b508dde5f4bc7dfacf7d47efdf4b7483961d28ccfec0136f0ca19bd693d1ffbf6c5c54c4d33473f500ec844fa7c376f5b3e8f051869db7
 SHA512 
97e2df1943805519243e84782573c7b8efed9c0ee6c8ba59c886760b8cc846f287b5af17f4a24ade913951b08f0a59b77d29c1d2a92e683d5faf6049b6617334
 DIST boto3-1.42.56.gh.tar.gz 1089923 BLAKE2B 
47a20b523662bb4d1db0c7c84f54c560ec0cad5c40b526d70aaa21fea3a22b60a38ffe0fcb16c1b3aa33b2ceaa465b818a135470e6aae17a9cc1c8c16187418c
 SHA512 
b3351b1e77a648b5b8adcc9072ca1cc56f6a409648214576b52a4f35092c00a1c47fb8e2f6a3a67db26d46d0e55bc8549ef4a40834a4dc936f23d5373a644cb0
 DIST boto3-1.42.57.gh.tar.gz 1090375 BLAKE2B 
1e595744c11b1f0a6ea5f1ce919023706580e7e10d322371286886c7443a2c09bdbe8c79e313f19a2414c4ce1a24cce37c89e9f8ea1c1331320a0103784f7720
 SHA512 
ab1bd99840c1371ca458cd47a8bc6ecad04abe285cef3fdcf0504be436e7dae20a50b69e5c3215a0ea261bb9860d0faff7c1b6d4bf36d9cec22ae22c540270ec
+DIST boto3-1.42.58.gh.tar.gz 1091132 BLAKE2B 
a1156afe1a294b216117ed842cb638e388c703957a1e7e3eba909229dfdebb53c313bd2562cb63e600c526c35ca62eeaf5593030757211f2ae4d2036fff902c7
 SHA512 
793a8f22d2b3ab8db2ae8b85f6dbba2920413a1ec5163ee71422d35c7f24680c2c6730f3a8b67bfc92ed3bd9f587f298fda4fe7ffe355d3a6a97f896e1862706

diff --git a/dev-python/boto3/boto3-1.42.58.ebuild 
b/dev-python/boto3/boto3-1.42.58.ebuild
new file mode 100644
index 000000000000..019ca75e6b75
--- /dev/null
+++ b/dev-python/boto3/boto3-1.42.58.ebuild
@@ -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}
+}

Reply via email to