Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/boto3/
Date: Sat, 25 Jun 2022 05:11:46
Message-Id: 1656133893.1fe84ecc3353dca0affb9ca747b9ea95dea9a674.mgorny@gentoo
1 commit: 1fe84ecc3353dca0affb9ca747b9ea95dea9a674
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 25 03:08:11 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 25 05:11:33 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fe84ecc
7
8 dev-python/boto3: Bump to 1.24.17
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/boto3/Manifest | 1 +
13 dev-python/boto3/boto3-1.24.17.ebuild | 68 +++++++++++++++++++++++++++++++++++
14 2 files changed, 69 insertions(+)
15
16 diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
17 index 1623f2103046..c2e145ebe744 100644
18 --- a/dev-python/boto3/Manifest
19 +++ b/dev-python/boto3/Manifest
20 @@ -3,4 +3,5 @@ DIST boto3-1.24.13.gh.tar.gz 510032 BLAKE2B 4d204f4b4e1dbe970d45e65eb04061193d1b
21 DIST boto3-1.24.14.gh.tar.gz 510393 BLAKE2B c5a3f28abdeb3deaf33620ab7278b5d14dce55297e37c8d17e58994348f7459598ea96c3d44cfa7cf4bfa760aee2ab09aea0d905d514cc2365b0beb12424ea49 SHA512 d357cfd4e1098a8aa7e59aad36f27427dbc43fe39bfd3628928879058ee396774ebbc2c270fd5422a125f447a7b64fcb34da5008fcf44a8d74ed344b81f65666
22 DIST boto3-1.24.15.gh.tar.gz 510710 BLAKE2B 9640c037d6bc95225b9dbb9fc8b33d65a4253057b9a534c1dc2f33a5040796b25fe069a1842aee61851b0b5a75c15770564c5348b8937cc38cc8b898a5d01106 SHA512 07b8758afa9454d435a8935e90e7bfbe91ba266fecfd8413f81cb000c86101a8ad14cd9dd7e5ba620dd807da9501409896c36b532d243d68f26b4d0aa8574fbb
23 DIST boto3-1.24.16.gh.tar.gz 511182 BLAKE2B 00180c2cee9499efb3093c517f776536a85972014c622ec87d327c0e1a628b1440a85ddb239431d7c647a459f8c55422136f61254cd192cd3ca8f68eb03270d9 SHA512 cc2d179ba3975fdfc1127565d352077529159cd97d120831629650af881600d022f8a55f4ccfb3c732be5814b58739178063042ca7a0e26f0163f47ba8dddb36
24 +DIST boto3-1.24.17.gh.tar.gz 511281 BLAKE2B 577efc0ebfb39957e55bcaf7aa678cdf072eed885ab1055b15fc8ca2295fedd6d56fd2fb919913beedcdd335ff26e452bc5434283c9ca9d8f0135080e2aa1312 SHA512 a843146951eb2a5ad7dd31159d833806ae403014abf3e9a617f6457e3ecec1a0dc4c6ce6a87079c9112513cbd6a2ccd26542e5736eeea6c5723c7e39c660befa
25 DIST boto3-1.24.7.gh.tar.gz 508670 BLAKE2B d526f6a4dc4c6126c61ca7c9074b4341c742f84a6e95b38cd8a450fb74df379cee44513e1be6bc7cd0c8f728598d0ecfc06240120a8da71f75f86371498f5233 SHA512 4d57e38c18138b950f93a234132ac1d31c9a29ad00ca5e1298517d6b16ff2849802ce6cfeb8de390c2eb25086043d45e0276a7a563707595649ca1905367be52
26
27 diff --git a/dev-python/boto3/boto3-1.24.17.ebuild b/dev-python/boto3/boto3-1.24.17.ebuild
28 new file mode 100644
29 index 000000000000..6edcc751d54b
30 --- /dev/null
31 +++ b/dev-python/boto3/boto3-1.24.17.ebuild
32 @@ -0,0 +1,68 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +DISTUTILS_USE_PEP517=setuptools
39 +PYTHON_COMPAT=( python3_{8..11} )
40 +
41 +inherit distutils-r1 multiprocessing
42 +
43 +DESCRIPTION="The AWS SDK for Python"
44 +HOMEPAGE="
45 + https://github.com/boto/boto3/
46 + https://pypi.org/project/boto3/
47 +"
48 +LICENSE="Apache-2.0"
49 +SLOT="0"
50 +
51 +if [[ "${PV}" == "9999" ]]; then
52 + EGIT_REPO_URI="https://github.com/boto/boto3"
53 + inherit git-r3
54 + BOTOCORE_PV=${PV}
55 +else
56 + SRC_URI="
57 + https://github.com/boto/boto3/archive/${PV}.tar.gz
58 + -> ${P}.gh.tar.gz
59 + "
60 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
61 +
62 + # botocore is x.(y+3).z
63 + BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
64 +fi
65 +
66 +RDEPEND="
67 + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
68 + >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
69 + >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
70 +"
71 +BDEPEND="
72 + test? (
73 + dev-python/mock[${PYTHON_USEDEP}]
74 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
75 + )
76 +"
77 +
78 +distutils_enable_sphinx docs/source \
79 + 'dev-python/guzzle_sphinx_theme'
80 +distutils_enable_tests pytest
81 +
82 +python_prepare_all() {
83 + # don't lock versions to narrow ranges
84 + sed -e '/botocore/ d' \
85 + -e '/jmespath/ d' \
86 + -e '/s3transfer/ d' \
87 + -i setup.py || die
88 +
89 + # do not rely on bundled deps in botocore (sic!)
90 + find -name '*.py' -exec sed -i \
91 + -e 's:from botocore[.]vendored import:import:' \
92 + -e 's:from botocore[.]vendored[.]:from :' \
93 + {} + || die
94 +
95 + distutils-r1_python_prepare_all
96 +}
97 +
98 +python_test() {
99 + epytest tests/{functional,unit} -n "$(makeopts_jobs)"
100 +}