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: Tue, 28 Feb 2023 05:06:51
Message-Id: 1677560794.2cb72c2406b601f33e8bf4e999448f56e140f921.mgorny@gentoo
1 commit: 2cb72c2406b601f33e8bf4e999448f56e140f921
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 04:29:32 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 05:06:34 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cb72c24
7
8 dev-python/boto3: Bump to 1.26.80
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.26.80.ebuild | 68 +++++++++++++++++++++++++++++++++++
14 2 files changed, 69 insertions(+)
15
16 diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
17 index f52714e53694..3aa651fc728b 100644
18 --- a/dev-python/boto3/Manifest
19 +++ b/dev-python/boto3/Manifest
20 @@ -1,2 +1,3 @@
21 DIST boto3-1.26.74.gh.tar.gz 602525 BLAKE2B 6d9b397864649ecd9b3f46bcee832c57cdce809545522f3beaf0d2eb98ca1f99e5fcab132f3389a4b2edcd585d9f6759de961b1f83f5912420629b6b03092c36 SHA512 eba11711dbd77988deb1695b954b6eb931b8ad49f96971e221415355de9bd2f3015b5a58be34a7378180f59500f9c15135192ccb97454141dbcaa664f0183627
22 DIST boto3-1.26.79.gh.tar.gz 605312 BLAKE2B c36b86ab289be9c08a1ab43274a4f4db71cede08598b6f8092af8404bc9994e345b263b144ee3a1974ea276fce63c330d7ffa6335bb889bea32e380e9003a8c7 SHA512 cfc789296b904c0c3bd3999153067f4fb174b323f0fbd22e8f4a49aed98338e20fd238876e2f55f608f5d6b60b584e15d370400e8d0a8a00b0689e0867d00f05
23 +DIST boto3-1.26.80.gh.tar.gz 606204 BLAKE2B ae80c1ec7e99f48844c4eec39df1f6802df1fbbf2d94f1b7ddc04c7a21cb885823ebadb11cf9e81b51af9aa5f09775c02e52e926b94c49331307873b86702446 SHA512 e4ab89f2afe506d7d1ba9e1615e3a92ba4bf5dc9a85d3a14f034c1b14733d99cebf594bb6dc80914bf444da34d09c045c8933cf3c97e6ccfa9e31901e99d76ee
24
25 diff --git a/dev-python/boto3/boto3-1.26.80.ebuild b/dev-python/boto3/boto3-1.26.80.ebuild
26 new file mode 100644
27 index 000000000000..9523f65d5fb9
28 --- /dev/null
29 +++ b/dev-python/boto3/boto3-1.26.80.ebuild
30 @@ -0,0 +1,68 @@
31 +# Copyright 1999-2023 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{10..11} )
38 +
39 +inherit distutils-r1 multiprocessing
40 +
41 +DESCRIPTION="The AWS SDK for Python"
42 +HOMEPAGE="
43 + https://github.com/boto/boto3/
44 + https://pypi.org/project/boto3/
45 +"
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +
49 +if [[ "${PV}" == "9999" ]]; then
50 + EGIT_REPO_URI="https://github.com/boto/boto3"
51 + inherit git-r3
52 + BOTOCORE_PV=${PV}
53 +else
54 + SRC_URI="
55 + https://github.com/boto/boto3/archive/${PV}.tar.gz
56 + -> ${P}.gh.tar.gz
57 + "
58 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
59 +
60 + # botocore is x.(y+3).z
61 + BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
62 +fi
63 +
64 +RDEPEND="
65 + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
66 + >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
67 + >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
68 +"
69 +BDEPEND="
70 + test? (
71 + dev-python/mock[${PYTHON_USEDEP}]
72 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
73 + )
74 +"
75 +
76 +distutils_enable_sphinx docs/source \
77 + 'dev-python/guzzle_sphinx_theme'
78 +distutils_enable_tests pytest
79 +
80 +python_prepare_all() {
81 + # don't lock versions to narrow ranges
82 + sed -e '/botocore/ d' \
83 + -e '/jmespath/ d' \
84 + -e '/s3transfer/ d' \
85 + -i setup.py || die
86 +
87 + # do not rely on bundled deps in botocore (sic!)
88 + find -name '*.py' -exec sed -i \
89 + -e 's:from botocore[.]vendored import:import:' \
90 + -e 's:from botocore[.]vendored[.]:from :' \
91 + {} + || die
92 +
93 + distutils-r1_python_prepare_all
94 +}
95 +
96 +python_test() {
97 + epytest tests/{functional,unit} -n "$(makeopts_jobs)"
98 +}