commit:     339576edfa99a4145d5c6ae7da750932fbd30528
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  8 05:55:55 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov  8 06:54:28 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=339576ed

app-admin/awscli: Bump to 1.42.69

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

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

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 76fc99dd7059..102b1f13d537 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -8,3 +8,4 @@ DIST aws-cli-1.42.65.gh.tar.gz 2996761 BLAKE2B 
09cc77827a29ee96a852d8bf930e64bc3
 DIST aws-cli-1.42.66.gh.tar.gz 2997338 BLAKE2B 
417affa6d9e6fb7c70fc160f04e8c79b8694915c74c6459f1dbaa18ef6a9dcaae40fca99363a264075d6317f3f5edb914d5c75efd9f549d1fe618b73ac7572a6
 SHA512 
7abeb91e81354a005a7b4d7c9c2d4b2664cc3d71260d8dc9536a0859cca4ddf3447597d205de87f7f3886372dfe601dced026ba6e1eb2def6ea556fb44333efd
 DIST aws-cli-1.42.67.gh.tar.gz 2998603 BLAKE2B 
db36a1e8e1e08a02ffc92e3de20b251b55996a4efadf6030a4785e8510d17fd0a79e09d2212383dab158a0917b7b9cc63252ab8f67f64864bf222d5c0f58b503
 SHA512 
d4d141c7045c04748cb9b05d95e7f29314977ea2e9f363c6453823f2541b93203e2f3b017f44a9146945cfcbfe4dfdae967adc58c46032ca1f23aaa319f53f14
 DIST aws-cli-1.42.68.gh.tar.gz 2999971 BLAKE2B 
c960a189cd26284da6e2322acc36e266b3165e74ec94fdd3276605ce6fe9fc1b4c5c0f495810320f5b41221ba6fdcc7cd20720ab1f000cec9ca1ae8748d9ca99
 SHA512 
2acd3281261182eb68b41c9fe6c06ca95ee52ee97f53b22df7be53cef52ece43f56b2cca0203ec67b44e76813f380f9a6c8e0e24f54447a809aa816fcbff74ea
+DIST aws-cli-1.42.69.gh.tar.gz 3000029 BLAKE2B 
b8ec08f94021b437d5b7ac8626dacb9165cc5906c2fed6e94a379568ed6004c1bfd207a110c9f9d80ceb58d28ce8be2b21f5275629f5a74e4829762a498e5737
 SHA512 
07fad7432464566aaa4f2c43b6e5b09bb97aa313a4646ebaf171edb11dc58cd25b3e12a4698b5786cc02a96176480102e1d0794c74988a5587f6b218771a556b

diff --git a/app-admin/awscli/awscli-1.42.69.ebuild 
b/app-admin/awscli/awscli-1.42.69.ebuild
new file mode 100644
index 000000000000..6ebe418b8cfc
--- /dev/null
+++ b/app-admin/awscli/awscli-1.42.69.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..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, 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