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: Wed, 11 May 2022 08:05:45
Message-Id: 1652256327.dca685ebe8094d0cdc899721e9c8dfe11a020176.mgorny@gentoo
1 commit: dca685ebe8094d0cdc899721e9c8dfe11a020176
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 11 06:21:48 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 11 08:05:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dca685eb
7
8 dev-python/boto3: Bump to 1.22.11
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.22.11.ebuild | 65 +++++++++++++++++++++++++++++++++++
14 2 files changed, 66 insertions(+)
15
16 diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
17 index 930b049583e6..d8f7173fb31a 100644
18 --- a/dev-python/boto3/Manifest
19 +++ b/dev-python/boto3/Manifest
20 @@ -1,4 +1,5 @@
21 DIST boto3-1.22.10.tar.gz 497369 BLAKE2B 448cb581fa31746083da4271436071b1ab5625207e5cc0560746beca9216a9748191206238a950a5a04cc178c20b744d19d3d99c1aefb775eaa79c5b96b75cbd SHA512 0e4ed0cf8f14997b4e61d926491fba05e4ec06dfae347e65ab3dceb48d61e24860e82fb922a7eac73e1e1322679418c96915c62f6279bad694685361d9970d7d
22 +DIST boto3-1.22.11.tar.gz 497893 BLAKE2B 07b757e4ab108eb70273dc3df082394dc730223417d1776f38c195831d2361578ed8722b107224b9e6c79685c7fedb02c386ea92c749d654a2f70b28d8de1e3e SHA512 f1367f66a93af59bcff2d29df6064440eac579e3aba4ab65083904de7a44b2c175fcfc2fd7836a8b0a425cf5519847c5e17075d42e82d46b2a0c4b46b7d5dabf
23 DIST boto3-1.22.4.tar.gz 495554 BLAKE2B 4c06e2101bcc96e4fab7e088f8593c7b1cfd2b07431d4cd062666df6c1f5d55d9b7fb594268e9a86c4793d35bc3d8de2644244728cf62833dfefb62525eedbdc SHA512 26dbd9ed1af900f7466a1767ada3fb8ee86fa09ca21733f857e2748d98525661fc76e69d75440fe913260e75245cf30298493417d055399a242af0aedaffd349
24 DIST boto3-1.22.7.tar.gz 496523 BLAKE2B 400370268e51b229bd3c465ccc43df93b713e3088baf76cbb7367cdc75b8374b787fee635cc921b431d5e1471a60a990d57a306d8ebdb14f0c462f211b323f99 SHA512 a7b56723a0fd692496a4e397ca29139f0813bfcea365877900441f01f38e5fd15d20a1642a5717940994bdfc840540d38b9a594e2510ab070ae62fadf9b4958b
25 DIST boto3-1.22.8.tar.gz 496856 BLAKE2B c7707eae7a5966dbe04e86c35270674f532286d3fbed46580836729988e55cdeba872496de750af89de6a7afdc6b19bbe4f8b9025580dc9b825cd04a87530b21 SHA512 43498179a59c2a1c9401f0629fbf0f3ff1dd51d2208ade828ff283b44be28fd539af68d4fb274e5e8c6c01bd03699872cd1a81d006f4c929dcdbf7227f77416f
26
27 diff --git a/dev-python/boto3/boto3-1.22.11.ebuild b/dev-python/boto3/boto3-1.22.11.ebuild
28 new file mode 100644
29 index 000000000000..fd6e0d8ebf01
30 --- /dev/null
31 +++ b/dev-python/boto3/boto3-1.22.11.ebuild
32 @@ -0,0 +1,65 @@
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..10} )
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="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
57 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
58 +
59 + # botocore is x.(y+3).z
60 + BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
61 +fi
62 +
63 +RDEPEND="
64 + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
65 + >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
66 + >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}]
67 +"
68 +BDEPEND="
69 + test? (
70 + dev-python/mock[${PYTHON_USEDEP}]
71 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
72 + )
73 +"
74 +
75 +distutils_enable_sphinx docs/source \
76 + 'dev-python/guzzle_sphinx_theme'
77 +distutils_enable_tests pytest
78 +
79 +python_prepare_all() {
80 + # don't lock versions to narrow ranges
81 + sed -e '/botocore/ d' \
82 + -e '/jmespath/ d' \
83 + -e '/s3transfer/ d' \
84 + -i setup.py || die
85 +
86 + # do not rely on bundled deps in botocore (sic!)
87 + find -name '*.py' -exec sed -i \
88 + -e 's:from botocore[.]vendored import:import:' \
89 + -e 's:from botocore[.]vendored[.]:from :' \
90 + {} + || die
91 +
92 + distutils-r1_python_prepare_all
93 +}
94 +
95 +python_test() {
96 + epytest tests/{functional,unit} -n "$(makeopts_jobs)"
97 +}