dev-python/boto3: add 1.33.13

Closes: #2744
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-02-11 18:09:41 +01:00
parent f45a3ad058
commit b6a568464a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 72 additions and 4 deletions

View File

@ -617,12 +617,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1683 Ebuilds in total, 1672 of them have in total 1691 (42 different) licenses assigned.
There are 1684 Ebuilds in total, 1673 of them have in total 1692 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|959|
|Apache-2.0|366|
|Apache-2.0|367|
|GPL-3|113|
|BSD|95|
|LGPL-3|24|

View File

@ -1,3 +1,5 @@
DIST boto3-1.28.17.gh.tar.gz 683517 BLAKE2B 5643bb0da88893cf07013786dafeccd02ec0c060fcd74e8accc6e77d0ebc874b01741c1adfe5fc143f979d4d309a5f9b3fc1bb0d1cabafe6d5f4e724d4355da4 SHA512 5c943d3354a59c905e8d32fa5ebf854dee527dd2afbb18f421c256718cf2710d4f10158512a2aeda9b0a6687b668dd8ad76b593e9a2ba9037d665ecda2d30550
EBUILD boto3-1.28.17.ebuild 1460 BLAKE2B 8332b6b69739ea65a24a1f9be4e4399629c8ccbe26df1277858ac16553f21a2cbc49895c9aaa1daae57426c6f692e38b9de24171e9cd3ccc639917f517dae25e SHA512 21d46c408e2bd4fa8527811d06b848e46795b220a3d896e5137c613fc1bfb8e36b7f18e8388a11d5e8029f548c7147efb6eb77932d2fc7026c1e6a14d80c7733
DIST boto3-1.33.13.gh.tar.gz 754864 BLAKE2B 4dc2900b26610ad10361885ffbdcf2ca55b73a1d665bb2c19f98d0afae619b8cb885d3d5b5fa8e1cda299aab8ac0ccd66a9c85a765c0eeb4fdac2b85d75e7617 SHA512 40489e66fd591c05d58312015a91b5d42485af9d643db163b725a857438ca6b2306b237fd38f685ce4a4380688dcbf734aa8a49c4336bbe5135838bda8e7da82
EBUILD boto3-1.28.17.ebuild 1460 BLAKE2B 7d08eb64840f3fc2899d98f9e08bb87c53beeebc83e12750a95fd0752b5c811c2fb8a0673876786b0f4d40797c64f8531e5581e8f158abe28a40f6dd6afc3578 SHA512 2d0d4d47bc7243b1a5ec462a505241335b1311a461f17d6a954516171d16d168a9a165de3a921e00b9243af4fdcb0cc59c2db543d9df89d37229c5ca5bff43cd
EBUILD boto3-1.33.13.ebuild 1460 BLAKE2B 5091bab01d4a7a5ef6bc961004b2c8236b84d41d27bf1fc29ac8248d0b00012e05f20bc57a127e30e77763be696ff15124718ff4ba7f5b2992c5f73a8067bd72 SHA512 8cabdb9547fd9450afed5ea464ed5f5b40139048e047c4e41af3168ba199df0d2ddafb60944d9552226ea50b7f211a97d78c1079526c23501268d074e8fb6417
MISC metadata.xml 376 BLAKE2B 9f600dc5b70f21f29d0e2aeae5a0b63a8103aef7672886c73c426548be7d3c6456cb1db5ec1f9bafb25a842b1ee9eb8d2bc7e994a2bde97b22b314596af9bba4 SHA512 e4761064832b6e88f33c601c4011b2a99cfd60b92172f04fa112d97017b58f3647047b264f29c6955d116394067bf631f34872801e9ab13726716965a2f7cab4

View File

@ -1,4 +1,4 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8

View File

@ -0,0 +1,66 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 multiprocessing
DESCRIPTION="The AWS SDK for Python"
HOMEPAGE="
https://github.com/boto/boto3/
https://pypi.org/project/boto3/
"
LICENSE="Apache-2.0"
SLOT="0"
if [[ "${PV}" == "9999" ]]; then
EGIT_REPO_URI="https://github.com/boto/boto3"
inherit git-r3
BOTOCORE_PV=${PV}
else
SRC_URI="
https://github.com/boto/boto3/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
"
KEYWORDS="amd64 arm arm64 x86"
# botocore is x.(y+3).z
BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
fi
RDEPEND="
>=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
>=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
>=dev-python/s3transfer-0.8.2[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest-xdist[${PYTHON_USEDEP}]
)
"
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} -n "$(makeopts_jobs)"
}