From 1c753f90c82ce938eacbc337a6d85ba133f514b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 18 Oct 2025 06:55:29 +0200 Subject: [PATCH] app-admin/awscli: Bump to 1.42.55 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.55.ebuild | 92 ++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 app-admin/awscli/awscli-1.42.55.ebuild diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index 88c2d5bbd8fc1..f5216d1790dfd 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -9,3 +9,4 @@ DIST aws-cli-1.42.51.gh.tar.gz 2993950 BLAKE2B 968299b4cfe7a40b79b49f035b5e1c9f2 DIST aws-cli-1.42.52.gh.tar.gz 2995876 BLAKE2B abe942ff7a754823bae5046fe465fc9c9025cc8cc6b6a68954100ee18c296166403470c7928d7dc98498f6e823489d414346881dda73459c34696502923e5c62 SHA512 49320156041cdb60866f323ca95eaafdb1aaf864ac79ff2d000cf9b1b0279172d44c3360a57e99b5fe0e0fe3aa945934b83a2824e9c8e5bfce0362911c00b544 DIST aws-cli-1.42.53.gh.tar.gz 2996997 BLAKE2B 68d6390817a47178e9e12dbe5b615592e26419b32262d3cac4e40d55acd3ce6b80740a0f5c3d24ab73c047413d40aed521af4d0587450a967cf02ff9dce83944 SHA512 64010a603fd6d4e483306b6d5d764d7c777f13a6b7bd65fd776b8a73022b77a6eed3be8086ddef79371b6589b27f2f70adb44be525061fb991faf1de9038642c DIST aws-cli-1.42.54.gh.tar.gz 2998041 BLAKE2B 7085346fa63d0329daa8d910d1067fcb86be1679b12ec50ca0d42d6610e84c7d7658bcdfffb0f624e58853529c796f06beffccf5bd240b08987731cd33cac6c7 SHA512 19271035876b6d91367c6bd0c875acadd152db92019913113820083279f36b972200cb4d3be141b0f4fd193a37f3f0d3b9063284261099ec53550d04237b2f70 +DIST aws-cli-1.42.55.gh.tar.gz 2999565 BLAKE2B d7b1cf2368b998e9ad156fbdc220a2e322ffddebdaad8eb769344a31e95fcb37dc6db20606bd1379dd2ae08c50245011fd9570de4c778d4927563e893de2196f SHA512 9d65e19587f5b273afc7802e7fc97a3262ef24a1c07970359939005383de30d66b9cb30bdfc13cbe7dc3ccdf181bb4c15ff7e34a7987d203bfc285cba66cccf0 diff --git a/app-admin/awscli/awscli-1.42.55.ebuild b/app-admin/awscli/awscli-1.42.55.ebuild new file mode 100644 index 0000000000000..6ebe418b8cfcd --- /dev/null +++ b/app-admin/awscli/awscli-1.42.55.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 +}