summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-02-21 05:24:35 +0100
committerMichał Górny <mgorny@gentoo.org>2025-02-21 06:19:49 +0100
commite03bcd232c5c5b1a72c16ce3f163e2d6cd57a33a (patch)
tree51353ab1e69358aa8d385656038cadeddb745ac7 /dev-python
parent8eecf6b87f6359f7ea7f5da66be7e972e684ac02 (diff)
downloadgentoo-e03bcd232c5c5b1a72c16ce3f163e2d6cd57a33a.tar.gz
gentoo-e03bcd232c5c5b1a72c16ce3f163e2d6cd57a33a.tar.bz2
gentoo-e03bcd232c5c5b1a72c16ce3f163e2d6cd57a33a.zip
dev-python/boto3: Bump to 1.36.25
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.36.25.ebuild53
2 files changed, 54 insertions, 0 deletions
diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 407f437b3f7d..eb92e0244d2d 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -4,3 +4,4 @@ DIST boto3-1.36.21.gh.tar.gz 901823 BLAKE2B 9659b8f05c90deeeeedc19f8c1bbd777415b
DIST boto3-1.36.22.gh.tar.gz 902280 BLAKE2B 14633c089bad39b5b487ebdb8cc9cce9424980100d5b0617f7481f2b1cf6c3777758085960f170d7c558442d69b76dbb92b64ea5fcdc9fb8e62a405faf8f0b7c SHA512 e326011c093128abde17dd68f7fdaa455dcb366d20e6fc470347787c1eaf0f7110be39546201dee81d8fe734e7d836855a4ab5350c4fa7f6361147571444f062
DIST boto3-1.36.23.gh.tar.gz 902549 BLAKE2B 24ef6eac4b278375fb27a2abab475a30cdc43bb37d01c68978f49c42bcc144c736d1507433bbe100b793b704a3c02c360bbd28a38dd6d3df531ef00d9075f2bc SHA512 c65a5bab6c902da7907e2144f597c159d456af8e967675684612b6baf525ef500f4077bbe9e851907bd9fbd05f905953eff9bc0800b6609b66af6db8b1b8f781
DIST boto3-1.36.24.gh.tar.gz 903428 BLAKE2B 037317bca3080d66690923bd844c11e69737bff3a5cfe5466a40af9d2461f3740cf633a810319b43477c81e1f3c3ae3125ec1ea481ad790184855d837e0266ad SHA512 8251f1db021a699e44e3c8102399d8454a7c198d0cfa9f99e34e4696b172fc986cd116305252a25ac5046b00e76af261aeac3db8036c468e27d22e8be49d0324
+DIST boto3-1.36.25.gh.tar.gz 903826 BLAKE2B b3df14f7334cd943c98e365bbbba8a1407d8d72f016329406e2179cf920d7a69848a40a45eb98e5055dbdaf1ffb468c6967d11af63108e582ea37b9412c0c6d5 SHA512 8d0aa5dc8a981957b373902da60ccae5e7b87107a435ee4cec335323efaf725713fa75cf800ff73dad63065e8615be6c4a840e5a16d1619610ae2688b59d229f
diff --git a/dev-python/boto3/boto3-1.36.25.ebuild b/dev-python/boto3/boto3-1.36.25.ebuild
new file mode 100644
index 000000000000..b087a88814e8
--- /dev/null
+++ b/dev-python/boto3/boto3-1.36.25.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+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 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+ >=dev-python/botocore-${PV}[${PYTHON_USEDEP}]
+ >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+ >=dev-python/s3transfer-0.11.0[${PYTHON_USEDEP}]
+"
+
+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() {
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest tests/{functional,unit}
+}