mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
dev-python/boto3: Bump to 1.43.13
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -3,6 +3,7 @@ DIST boto3-1.42.96.gh.tar.gz 1129293 BLAKE2B 186684ffe3d8e776e6f7462b4c7fdd996fe
|
||||
DIST boto3-1.43.10.gh.tar.gz 1142282 BLAKE2B ac58f68e9898b3a6cc6bc4bbc500a7007cc318e15c349fa4e5ec79e7b64a9617df236cf139c2e1bc91790f86915f1e79485459ac4caaa25412de1bf64ec8f12b SHA512 8ad4cd4795338481193bfa261f17b14ea0e1c47aacfd650e57269b0bb7f3fd8486ec94f1fede4671009794d21d9b1fcd74f220d0917b1de66261c7c91a38a1fa
|
||||
DIST boto3-1.43.11.gh.tar.gz 1143261 BLAKE2B 028ac3d044891af9a993d6f1f8523e2e34d588758c928743f3286addbe859ccca05028e0cb0e4b5c0bc75f23851e00bc5cc41cb927ef6037f2dccdc686a67f96 SHA512 8ad738ea6c6863b606d6df197ef2bc9df6d14f211c975f40f6a3538fa4960f72d2bf0281ed3b47c9f6d55aed8e7dac1ef49c28302c2b7f95ee3256db1f2b0c7b
|
||||
DIST boto3-1.43.12.gh.tar.gz 1143884 BLAKE2B c87fac9a1f91f690998ae707c60f8dfd9e424449dd475909aa2e4dfee8edd70c8f3ee5169f6ba58cdc7ea8ed616c895a7322f9713ada4ea0097a08a78a32bcd1 SHA512 913395073851ee3c595f9381997af8a08fb1bbfae9510624e6f5bbd6653afe1993fd7f4130d6185364b1ffa4d469f255f4789d889e6b61c05161a9ce272e1212
|
||||
DIST boto3-1.43.13.gh.tar.gz 1144845 BLAKE2B 302c20b4ed525276da3a49bfc12ea7cfb85f0ff034eaf64fabf5b322ef0b020a6cf962fd9bc81bd2826eb6a59739e644e243efdf22c939b5c846e8f9cceba9ad SHA512 794007487ca559e78476add66bddbece476dfd7beddf38d58c3a72c2de263668977a31026dfa57815f061353c097ebd1088fa91f2c7f29049cf3a8b5af585be8
|
||||
DIST boto3-1.43.2.gh.tar.gz 1133320 BLAKE2B 21890b9f6629ec5af1da155d767a6117beada74550c292ba07d6900666bef39722740493e343a4770cf7f8adbb0030462d9e41366daee4c2bc17c391f14153f2 SHA512 b807ff1e6133285f6f64a83e328b7522f18d2de63838e9d6d70b982f44316b63aed90ddf3cbc12c6c32967c35807c0ef548d647588cd76c09a363e4de0c9b1e0
|
||||
DIST boto3-1.43.6.gh.tar.gz 1137408 BLAKE2B 11a92806102c847f0072394f726a56c84f2378f9b75394d3b23f9357a35dd8ae2794149d7d20c0b4f0ba64a14e4234606ac49b846320e770b20eca51c9f53790 SHA512 e51787a036386af77a77f39ef1b857bf1fa6a6a106694ae0f6fd07097420fb1a01ad14037e55a8279c1aa8968c64becede89ef3ecbd5bd43c4af0f30f4e5cae5
|
||||
DIST boto3-1.43.9.gh.tar.gz 1141698 BLAKE2B 37721c03d15d8cc7d290dcf9e56c5a83d480379514b0504a5164ab0dcec1211f3df001a966562f5f69e94325ccd42bc0da787121c68b75419fa45913feb5a4e6 SHA512 a130960634934428ab43845f69a2997638077c3bf856e12b00637dcd995dd835ad0a01eedd0a25d003d7c3e4515077c5ff19f90d289f5fe3c8bf5d837a629d09
|
||||
|
||||
53
dev-python/boto3/boto3-1.43.13.ebuild
Normal file
53
dev-python/boto3/boto3-1.43.13.ebuild
Normal 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.17.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}
|
||||
}
|
||||
Reference in New Issue
Block a user