summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2026-02-25 03:36:39 +0100
committerMichał Górny <mgorny@gentoo.org>2026-02-25 03:36:39 +0100
commit693e01fc871b5aaca63480904fa2b36aa2d00ee3 (patch)
tree1b4d6f8e111069b3568079b40e4f988419370013 /dev-python
parent58cbcd7077decd49128c4db6d169fbdc9fe88444 (diff)
downloadgentoo-693e01fc871b5aaca63480904fa2b36aa2d00ee3.tar.gz
gentoo-693e01fc871b5aaca63480904fa2b36aa2d00ee3.tar.bz2
gentoo-693e01fc871b5aaca63480904fa2b36aa2d00ee3.zip
dev-python/boto3: Bump to 1.42.56
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/boto3/Manifest1
-rw-r--r--dev-python/boto3/boto3-1.42.56.ebuild53
2 files changed, 54 insertions, 0 deletions
diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 65190d8d8edb..2d448cd20cb4 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -12,3 +12,4 @@ DIST boto3-1.42.52.gh.tar.gz 1086491 BLAKE2B 45f71cdaa4b4b73c9c502cec09772d25328
DIST boto3-1.42.53.gh.tar.gz 1087318 BLAKE2B af74c567314eaaa3a225632317d63c1df76019863012177857c44436fe9c979e4e102e81ad3b92197187307f30728c7af1f0ed69e121fff15515d608f4f72aed SHA512 11c1f1bfb6645dee88da3fb08c05ce40b1c4593a4ea33ea6a322b8eb004a4317dde5acc47434bd978d7be858929cdd686516f171384f98f127fe82352713f19c
DIST boto3-1.42.54.gh.tar.gz 1088047 BLAKE2B 882bb5e1c8b5b3b5539b8536e286e9df4fe71c50f501c3d71d53dfd7826e31648ded9fa805a0a1b04c1292f84a68fe93e438b2f2efc33cf1b64dc76e48445ebe SHA512 69aeadc259fd03326827ec9cc30a27a5b98649a2f6ba4dff5210282d5f5ec6ce4fcad8b1b77001a5275fa31f43b5c4cd9d6c9512093ad93986eb55f14486f937
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
diff --git a/dev-python/boto3/boto3-1.42.56.ebuild b/dev-python/boto3/boto3-1.42.56.ebuild
new file mode 100644
index 000000000000..019ca75e6b75
--- /dev/null
+++ b/dev-python/boto3/boto3-1.42.56.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}
+}