commit:     e1cafbde524c1eca956389ee7b55295cdf5070cc
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 10 06:21:10 2026 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Feb 10 07:08:23 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1cafbde

app-admin/awscli: Bump to 1.44.35

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

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

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index b844494c2999..a7bb267faa89 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -8,4 +8,5 @@ DIST aws-cli-1.44.31.gh.tar.gz 3066874 BLAKE2B 
8c4c60636bd61c8a7dd226f661292bb95
 DIST aws-cli-1.44.32.gh.tar.gz 3067566 BLAKE2B 
95f6b2c76bbe89b2cb98e72c48a1ec619278bf205deedfdce96d2ebed4bacce47885b2de7f86317c548dbc28d2ab243d0f60db1d8e7ac6731a0ed8bd880c5713
 SHA512 
790ac5e340ee2907e37d9a4bbebfecbf9029988f18f1320c9dd0e7752c41c388f4f3a5568c9838cc9021cab2b84d58fb833519f7f6a08715414f011694afc93b
 DIST aws-cli-1.44.33.gh.tar.gz 3068373 BLAKE2B 
bf73ab568c8ef0419ecccbba7a87881bb7419099d23ad186a13382b87392a3b6866defa72f523a2db06d0688835bb229bca0a192c6648b99c28a418f27657adc
 SHA512 
6f4e625e5d6f8c1588d95d80b4d2d2b01a7f41c04a8f9f0c667485135cd0af9633951aeb984a495afaaee0ec4cb4b211c4d413398cfa84a0eb0a1e9cf485d735
 DIST aws-cli-1.44.34.gh.tar.gz 3068790 BLAKE2B 
636dd873e3340d733f037e93d15633d02200879fca7e824af111775729cc90aa35f11b089dbb04627d89c36a2d69b19e3929d0a1b47f0dcbe198ff83c23091f4
 SHA512 
c002d20612beb42a796b95658e61d4eb716511c68de26f4299b7af407e0b07e6f28b9c24ff9712ba23dd57ebc0e51f49ead09c7d65c08a14cef9333956a92973
+DIST aws-cli-1.44.35.gh.tar.gz 3069626 BLAKE2B 
89ecba2f030bca201ae16bf5326672819173af30ca5ba7d142560c1ac1a2d370c6285f20df75b9d730bb07fb8ca2fad9495355511ddacba63c5e8dde08814819
 SHA512 
8b2e5bf7b076250d3a023341b5c2b692d118c75284ac51260cf5dc8491589d643cf8299330ec9151ffe019aed3dc1f106c121472f5fa6bc5517a0ba4f90284a9
 DIST aws-cli-1.44.7.gh.tar.gz 3056565 BLAKE2B 
c65d74973f229424145ee21a8e052dccaa7258a6cd8bced98a7895d4caef5ef2f0ee2cc58b21b0ba0edca21cd9837de43118a8c818afc8f6ab67ec8f62277875
 SHA512 
a927344ffd084eea0189bddd8b8c0e81ef36cf19f1b080994b194c41c4f4854158471123e34f20c333615e8749df0802de9ea957e942eb50737b166d85862e76

diff --git a/app-admin/awscli/awscli-1.44.35.ebuild 
b/app-admin/awscli/awscli-1.44.35.ebuild
new file mode 100644
index 000000000000..993f89ea1d78
--- /dev/null
+++ b/app-admin/awscli/awscli-1.44.35.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
+}

Reply via email to