diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-19 03:01:55 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-19 03:01:55 -0500 |
| commit | fd47b082ab0da4bc79447a8e2bfb7e77dd71874d (patch) | |
| tree | 2dcbfaabaf05d6b389c83eaf327a9afbe44f16ba /dev-python/boto3 | |
| parent | bddf78c69012b9c1c06816f37d538d44d7877365 (diff) | |
| download | baldeagleos-repo-fd47b082ab0da4bc79447a8e2bfb7e77dd71874d.tar.gz baldeagleos-repo-fd47b082ab0da4bc79447a8e2bfb7e77dd71874d.tar.xz baldeagleos-repo-fd47b082ab0da4bc79447a8e2bfb7e77dd71874d.zip | |
Adding metadata
Diffstat (limited to 'dev-python/boto3')
| -rw-r--r-- | dev-python/boto3/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/boto3/boto3-1.43.33.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest index 9d2b9c433ef4..d89158095c40 100644 --- a/dev-python/boto3/Manifest +++ b/dev-python/boto3/Manifest @@ -5,4 +5,5 @@ DIST boto3-1.43.29.gh.tar.gz 1161648 BLAKE2B 3f0a040019fd8ea2a42a82c75bf31e563ef DIST boto3-1.43.30.gh.tar.gz 1162726 BLAKE2B fe0050e7ef6187bc9bd96f90e05a216cfc80ddba18c7913548d9371530b8c900d32babd42c20e584f49b36996d13a25a6dbff44ffdb5e6691fbd3884815d2653 SHA512 7ba475dfff395d1d6ba3113a967f090650d75a6e4cfb01f0e2abc157b64b90ba00600501b76a9910fc4586f4480301dca07b304a5c98d6d6ecb555435e0929ba DIST boto3-1.43.31.gh.tar.gz 1163677 BLAKE2B 708e4f4b96f9bca483fdb2febda4d482c6ccd26afdd818cb57e8c8915c8cc75ea3ea05d03e488e3c076bff1021bb381e824de02b8ceacac5beab155047a6cf07 SHA512 c8dad5e0a76143225f2069c999e3b1679a71f255277fa2d019c4d4d7b7df5e9d39c0997de8544bdeb40c4c0a78981643050edfbe47cba9a133fa743596a96e11 DIST boto3-1.43.32.gh.tar.gz 1165416 BLAKE2B b9de6a5e1f1ead2ff872059b67214d94a14709c44d18dd89733f6eaf700cc2bfce21b6c4664b78f26b96031dc54c0cb21e2d695919244e66fc0d595c86405a5a SHA512 97604f3d6b7b9aa18ad735c4d1ff9eb7040bead20de7a3fe57ff4d20e4e1396f7f5b5d27b885daa041d3471b2e394a2067bde6b8745e049ddf310ba178e60d72 +DIST boto3-1.43.33.gh.tar.gz 1167445 BLAKE2B c83bf148ce91377ca0128b6884cdb262d60b8527e1e89ae05e3838e47afd18eccd3c16d7793a191972410e0f550024cb1de27dee05723eb388ee3a63daaefeb0 SHA512 c707d5cf52bdbbdec779489db4af6a065b22201a0f48db2b89153fdd1b247d71506d37cb3c8bca71355ecf85a82cd9263803cfe3fa231675192d6ab41a12e185 DIST boto3-1.43.9.gh.tar.gz 1141698 BLAKE2B 37721c03d15d8cc7d290dcf9e56c5a83d480379514b0504a5164ab0dcec1211f3df001a966562f5f69e94325ccd42bc0da787121c68b75419fa45913feb5a4e6 SHA512 a130960634934428ab43845f69a2997638077c3bf856e12b00637dcd995dd835ad0a01eedd0a25d003d7c3e4515077c5ff19f90d289f5fe3c8bf5d837a629d09 diff --git a/dev-python/boto3/boto3-1.43.33.ebuild b/dev-python/boto3/boto3-1.43.33.ebuild new file mode 100644 index 000000000000..93fbbe6dd59b --- /dev/null +++ b/dev-python/boto3/boto3-1.43.33.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_{13..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.19.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} +} |
