commit: fb15d05b3d6a6549a8d2a367adc392ec719c1e0c Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Feb 8 06:12:10 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Feb 8 06:45:22 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb15d05b
dev-python/boto3: Bump to 1.36.16 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/boto3/Manifest | 1 + dev-python/boto3/boto3-1.36.16.ebuild | 53 +++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest index 7bc9444c9976..fa5d5c0a9559 100644 --- a/dev-python/boto3/Manifest +++ b/dev-python/boto3/Manifest @@ -3,5 +3,6 @@ DIST boto3-1.36.12.gh.tar.gz 896941 BLAKE2B 1b28a8f5326898b5459e4ad7e09a159e8d59 DIST boto3-1.36.13.gh.tar.gz 897578 BLAKE2B d00e3c880d9e5c6d9f88d07f8e3155fc117b205c004f0018aa401141ed7bc0654b84419dd27fc2e823a5ebc82d1dea28213ecf06c6f73a9aa32f7a8af3908cb8 SHA512 5c2435b252e15166e4209e2b5479fe2e080da660737ae3d45c0ebf524349a547b7a1d20ea7a60bc9685e12364d34ac4b88179cb732bfa4524a053bfa868d4cac DIST boto3-1.36.14.gh.tar.gz 897795 BLAKE2B f8824fff9390cee43142c259c467c76c845bc7c26494fd1c97be96f1161f4b3f536af356dae725a865091b3ce60a3bfd56df70a10ff5cdd8c66653636cc82cc6 SHA512 41c7bd4206fab7b3b7bbb36f78f48cc9765be448790caad35d31cbea487fedeb94a85ec418e784b89917866bf2b8fa0ddc3157fde7fc119cf3dfdce7eac66773 DIST boto3-1.36.15.gh.tar.gz 898298 BLAKE2B 46125b8a26c2df8426b9260d0a56f7e5645bd0c14b12bb43fc1a8e507d8ccd37c4c70be14b83cbce3aa91110d5771d0f5288328a8062303f3a5944aea3112982 SHA512 01c8b12bfd252d2f08f09c020771cbd14270ea0085b1fe3bb2473ca35e6357b4af422d0232c792f3978c6f5beb93164d3f955c530720d0c6b46a042df5c12cb4 +DIST boto3-1.36.16.gh.tar.gz 898785 BLAKE2B fa3de504bb8c58fa5653a3fc3414a333283c04ca800b8d37b310b291e60af96b27c994d2571e4dc0f159c98a41d014000ce7afe020f38da80a2cac49283ba2cc SHA512 6cbbe6cdb505ace41e5e20ff144d1d312d8a53e3c7c2e8d50a981c55e485cdf98ac6711c36cb3697e257aab08e240fa1e731485aec3dd8b74cd5163c489bd61f DIST boto3-1.36.2.gh.tar.gz 923432 BLAKE2B 91f19eb6e1451923adbf323688d89cfadd384009fbc3fdcae688b48dee54d9a3f14956cedaed07b15f2cdc3badaf0533a6ec1e1baf5cedc88e91580104834eb2 SHA512 e9e14f4aacd0814952198d5446050f0cf822baac0b3ce3604c40dbb6b122c431624b46b144ea4699be7328f6236e099981905a4be6a9de3400750800d8d40e60 DIST boto3-1.36.6.gh.tar.gz 925646 BLAKE2B 71db3ff552033c187e19b699d193e4834649b80d2c0dd2ed35496bfef798371f7794e58d445aeeafcc3e4aef50d4dc6e17347b04ae82b4f3b7778a1a5e419daf SHA512 c638903cb3afff4867dbee7295e387f5ce91d9d3d9f37b28c103ead87883377a69fbccfce34850da5c77186ced0bb56f5dc5f4549e84871d10a9134c731d4c36 diff --git a/dev-python/boto3/boto3-1.36.16.ebuild b/dev-python/boto3/boto3-1.36.16.ebuild new file mode 100644 index 000000000000..b087a88814e8 --- /dev/null +++ b/dev-python/boto3/boto3-1.36.16.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} +}