commit: e3d2d38c568a1e905e17327dde1af7f3ed19e825
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 5 03:47:58 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 5 04:46:45 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3d2d38c
app-admin/awscli: Bump to 1.44.51
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-admin/awscli/Manifest | 1 +
app-admin/awscli/awscli-1.44.51.ebuild | 92 ++++++++++++++++++++++++++++++++++
2 files changed, 93 insertions(+)
diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 17c9cddc35fa..ffe4c28bc079 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -16,4 +16,5 @@ DIST aws-cli-1.44.47.gh.tar.gz 3076541 BLAKE2B
bc7ebcaa93a19f327373e8522a373934b
DIST aws-cli-1.44.48.gh.tar.gz 3077300 BLAKE2B
1864eb28809fff7c66d52fbd7765a4ecf8be3de9c7cf75c54c39213d4db5a4a386e64ad3eac28bafd381ca4dd35846b0ab4daf63da6360323ab6bd8c0a053541
SHA512
cb04b5e3f9f4528df301beb9fb150dadc139eab5b314ee2d2eefffc0dbe9d946f07450283590599277c30fc9fe592a7820118f84d593e6c4bf6893e791d1fd27
DIST aws-cli-1.44.49.gh.tar.gz 3079337 BLAKE2B
0478b291ed075d4db144864b5bb9a4280c69ae099accf2777fed57e3fc191900a7ffa465a2de2e8c51d25ffa2cd1ef9e7d769e4aca161f50f47af15c917a1ed6
SHA512
b324549f032abf46ebd5a7aea5c3a734c826dd3745dc94749082fd0f9120702055087772efef1862b2c21c3d930ebd4460cf549f44abf0fc216f4ebd2fe4f5c5
DIST aws-cli-1.44.50.gh.tar.gz 3078530 BLAKE2B
f82499e48ab8bc4e957f38aa70fffa26c176a04e5f0f6d2bea396963628b901175f086461f9eda254afe07cf62a8760bd6a61ff3cf7aadfbb2a4056638864ef1
SHA512
81ed3bfcec7fd384f8c0d2ed43bba98eaba0c27e45bfbefeac595dd88c2e025f7901ba87397c24ee0ba31623efebba9bd09c312151f49f6fd207f98492ee6d1a
+DIST aws-cli-1.44.51.gh.tar.gz 3080052 BLAKE2B
43843760eee0c29c35a4f155d993ab5cbe8ea9f338baddc18195efe4209a5ea59f1dd53e8d5879ca278fe1132b03e3bcff1dbccec655bac3f7aedda6e11add12
SHA512
02e1e7e6ad800c90e7231a32fe2b0a9146143be496d4992f1986ece82c19a41bd107bb05cf4a4ce9451263ed640153c385c113cb9f380cb1f934dac3b50044d4
DIST aws-cli-1.44.7.gh.tar.gz 3056565 BLAKE2B
c65d74973f229424145ee21a8e052dccaa7258a6cd8bced98a7895d4caef5ef2f0ee2cc58b21b0ba0edca21cd9837de43118a8c818afc8f6ab67ec8f62277875
SHA512
a927344ffd084eea0189bddd8b8c0e81ef36cf19f1b080994b194c41c4f4854158471123e34f20c333615e8749df0802de9ea957e942eb50737b166d85862e76
diff --git a/app-admin/awscli/awscli-1.44.51.ebuild
b/app-admin/awscli/awscli-1.44.51.ebuild
new file mode 100644
index 000000000000..993f89ea1d78
--- /dev/null
+++ b/app-admin/awscli/awscli-1.44.51.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..14} )
+
+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+10), sigh
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) - 2)).$(( $(ver_cut 3) + 10 ))"
+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.16.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
+}