commit:     b4e990e2df9833c9a2e33a8a8e4a9d876f626477
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 17 02:08:28 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Sep 17 03:30:52 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4e990e2

app-admin/awscli: Bump to 1.42.32

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-admin/awscli/Manifest              |  1 +
 app-admin/awscli/awscli-1.42.32.ebuild | 92 ++++++++++++++++++++++++++++++++++
 2 files changed, 93 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 8ad3c15695c9..1cba930941b0 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -4,3 +4,4 @@ DIST aws-cli-1.42.21.gh.tar.gz 2974428 BLAKE2B 
739573695abcf8348b7d4356006a97508
 DIST aws-cli-1.42.25.gh.tar.gz 2978655 BLAKE2B 
184a7cbd9f258feb4f8bad7eb6128a9da303879ed6744e551564877a6fe8ee650044d1bc0a92e4665f84e450472fcfd6919190e50723efb98cedfc05112bb4a1
 SHA512 
a94636c5c8208c19a2ca20f7899d89fd70aff14e329e60ac80c443392e1fccf1f65760ffb82f1575a9d71f469dae642c0d8c376dc9fb8a74a248a6401eb6ce92
 DIST aws-cli-1.42.30.gh.tar.gz 2980906 BLAKE2B 
01d7fa26925211d0dac66790e97f5ee20bd38f9a25cb1fcd440a8da8ebf3e52c72eff50b870810857b0be92ea068dc9d5ef4a3c277ea85c8c9c82deeef198c5f
 SHA512 
013888b50df5348e99b6677618c34890478f35957ef8d0d44e7e6e2747631ffa1d10315a64fd0426d528cfa1807cfca0dc6097e6c483d71863ff2166b122d25f
 DIST aws-cli-1.42.31.gh.tar.gz 2981435 BLAKE2B 
823e801d5810dc6598c7227e0acf496e0475e0e4ebd467e0a5bed83d3ceeaf5496e8443cc64fcdf6c048d71002a2cc0bc716600e96929d6c773feedb732f2814
 SHA512 
0ff5bae7153250adb79981d3b1cfe7c385ae0b632fa95af9dc2d7e9b9a219fa4114cd13d4569083b7541ccfbac26df121ceda6a66d3c72c384e6a29a8045f42f
+DIST aws-cli-1.42.32.gh.tar.gz 2981500 BLAKE2B 
6c9afa7ef76b5e6055278651f0b1b1ad7530e1c205864dc1ce73af17485d995776e1bdca0288419fdb58e179d3ed8dae894f50330cc38e58f3d5a81eee8bb4e2
 SHA512 
5521769a287ca63a15e6f57adb6c958e993448172c9c07e6935ca104158c339681999f140a99bb7eec9df20dbbec3a591892d0a3855c1446e88b174297d8a072

diff --git a/app-admin/awscli/awscli-1.42.32.ebuild 
b/app-admin/awscli/awscli-1.42.32.ebuild
new file mode 100644
index 000000000000..ee5aa1768d2c
--- /dev/null
+++ b/app-admin/awscli/awscli-1.42.32.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 shell-completion
+
+MY_P=aws-cli-${PV}
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="
+       https://github.com/aws/aws-cli/
+       https://pypi.org/project/awscli/
+"
+SRC_URI="
+       https://github.com/aws/aws-cli/archive/${PV}.tar.gz
+               -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+# botocore is x.(y-2).z, sigh
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) - 2)).$(ver_cut 3-)"
+RDEPEND="
+       >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+       dev-python/colorama[${PYTHON_USEDEP}]
+       dev-python/docutils[${PYTHON_USEDEP}]
+       dev-python/rsa[${PYTHON_USEDEP}]
+       >=dev-python/s3transfer-0.14.0[${PYTHON_USEDEP}]
+       dev-python/pyyaml[${PYTHON_USEDEP}]
+       !app-admin/awscli-bin
+"
+BDEPEND="
+       test? (
+               dev-python/packaging[${PYTHON_USEDEP}]
+       )
+"
+
+EPYTEST_PLUGINS=( pytest-forked )
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_prepare() {
+       # 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
+       # strip overzealous upper bounds on requirements
+       sed -i -e 's:,<[=0-9.]*::' -e 's:==:>=:' setup.py || die
+       distutils-r1_src_prepare
+}
+
+python_test() {
+       local serial_tests=(
+               
tests/functional/ecs/test_execute_command.py::TestExecuteCommand::test_execute_command_success
+               
tests/functional/ssm/test_start_session.py::TestSessionManager::test_start_session_{fails,success}
+               
tests/functional/ssm/test_start_session.py::TestSessionManager::test_start_session_with_new_version_plugin_success
+               
tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking
+               
tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking_windows
+               
tests/unit/customizations/codeartifact/test_adapter_login.py::TestNuGetLogin::test_login_nuget_sources_listed_with_backtracking
+               
tests/unit/customizations/ecs/test_executecommand_startsession.py::TestExecuteCommand::test_execute_command_success
+               tests/unit/customizations/test_sessionmanager.py
+               tests/unit/test_compat.py::TestIgnoreUserSignals
+               tests/unit/test_help.py
+               
tests/unit/test_utils.py::TestIgnoreCtrlC::test_ctrl_c_is_ignored
+       )
+       EPYTEST_XDIST= epytest "${serial_tests[@]}"
+
+       local EPYTEST_DESELECT=(
+               "${serial_tests[@]}"
+
+               # flaky (some ordering?)
+               
tests/functional/s3/test_cp_command.py::TestCPCommand::test_multipart_upload_with_checksum_algorithm_crc32
+       )
+       # integration tests require AWS credentials and Internet access
+       epytest tests/{functional,unit}
+}
+
+python_install_all() {
+       newbashcomp bin/aws_bash_completer aws
+       newzshcomp bin/aws_zsh_completer.sh _aws
+
+       distutils-r1_python_install_all
+
+       rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || 
die
+}

Reply via email to