From 9d430ade007c60ea7a07e3d142f46aa557d03a3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 26 Aug 2025 06:27:29 +0200 Subject: [PATCH] app-admin/awscli: Bump to 1.42.17 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- app-admin/awscli/Manifest | 1 + app-admin/awscli/awscli-1.42.17.ebuild | 92 ++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 app-admin/awscli/awscli-1.42.17.ebuild diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index e5e5cdccc5ee6..b8142eb8292bd 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -2,4 +2,5 @@ DIST aws-cli-1.41.14.gh.tar.gz 2984605 BLAKE2B 50771f9995323b2c3ae3025887dc7d830 DIST aws-cli-1.42.1.gh.tar.gz 2991474 BLAKE2B 32ebf86994739e081338aa16c1bbb3dca92c582494fcecd1053ca3e4f886b4a7e4d08b54d8ae2500054115e73c5bca3c81bec8c45f9e27614564453c231e5367 SHA512 684dbcd1bef9b03ad574842240c9c821e56556f0796dcacb9abfc4195a08ec767149bee183be96fef561188cccec7853be3a4d7f668a8071d8ac24d0584c7191 DIST aws-cli-1.42.11.gh.tar.gz 2997731 BLAKE2B eabfa9c8960a8823c42c6f769b62a690da401075789ddad02e1e8064b35f8892fd064a78b3ac48f8552687073a56fdce64ef85ea4fe5451c1c62ceb7c78211dd SHA512 6eb8e71e21a043f22325528c0289396095e20ae9355fdedfb32cda6b7210c431d1589f379d9601a4b0e0e5f558fa217ba9aac44db52d415ed498853a22ff1d48 DIST aws-cli-1.42.16.gh.tar.gz 3000024 BLAKE2B ed92f91e643768437cb1eb55de807b4a366320d539d07e026866c0c02b83c59b9cebb939dbdae9e369f4a7b992238f7b55e3779a6d8f3187bce16b9b55e78111 SHA512 e31288bd7675f334f8c9e9a46da2f8dd848043699f140178f7ad0cea9c16c0741f6338014392147fa2fa08bbb02fddc224967f0fa647f553b5dfdbb2e9a87604 +DIST aws-cli-1.42.17.gh.tar.gz 3001903 BLAKE2B c437422e2db052d23f54827c4806ff20a1ef9b63c186ef0a8dc266fee30afb51c7f9672a9d260165aa36f40d1f8be65904bb8f9ada2635058ac411cb253a77e6 SHA512 872271280399596132f70e2d177c3045a2710a0c4a2d92aac7f46a3613b7ee21fd439fbe760a161ed00d7c78e670231c1e83a92fd00fa60fab435faf7f41f4d5 DIST aws-cli-1.42.6.gh.tar.gz 2993445 BLAKE2B 57166ba2409048626be42c5cc9b06f856fc26a43f7d1ae7fe650e6cfa32383c5745956e67f9fff5a019e2478ed9c5350c12acbe0fbc539db525baa4bd9ed91fa SHA512 f16265e7d12754f498fa52ea73f4b090ecc64cc1177aa154cf56e1eee80534702fd38155ebc8e8f61a3be4e03ea73a3814cc59ef2b4d5dc27452ee38ce758441 diff --git a/app-admin/awscli/awscli-1.42.17.ebuild b/app-admin/awscli/awscli-1.42.17.ebuild new file mode 100644 index 0000000000000..ba1a897f1ae2a --- /dev/null +++ b/app-admin/awscli/awscli-1.42.17.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.13.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 +}