commit: 7af475453fca4ee06a6cfd854c289488a3aa08b7
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 11 03:55:03 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 11 04:43:40 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af47545
app-admin/awscli: Bump to 1.38.32
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-admin/awscli/Manifest | 1 +
app-admin/awscli/awscli-1.38.32.ebuild | 93 ++++++++++++++++++++++++++++++++++
2 files changed, 94 insertions(+)
diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index d18bb0caa592..a0de763c5e39 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -4,3 +4,4 @@ DIST aws-cli-1.38.28.gh.tar.gz 2949031 BLAKE2B
be411308619abb7ff1f8abfae4ab4c611
DIST aws-cli-1.38.29.gh.tar.gz 2949237 BLAKE2B
2061ecc61cc25a0731c7af36016cd862f8283b3bee16af3b297f5f77f24b3dcc2c25b00bb35dde96dd10b3a76ba3cacf3465f378049ffd90c68ce34644e7d96d
SHA512
f7bd4a674e538797e7fd35b967dd24e7aa51edecc5d053b5affba088407065e88aeefe9c19f043a720fbb761c69d2db3deea317e771fc043ab602f6ceb404cc9
DIST aws-cli-1.38.30.gh.tar.gz 2950348 BLAKE2B
4ef9faa7f7ce552232123eda8f3cd19c0b262d4004d9322ce687a865d02649eae9b850a273f18b00cda0c12b09d9d28efe447c1d07c43868c6a9a729fabc596b
SHA512
154e691160826d3971fd19ddaffdbe485ab5304671dd23dc544ba67af9a375a7148d3ca2a7ef6421ed2884042f9598cbe9d1c8c6f9601d6fa206eb0667787671
DIST aws-cli-1.38.31.gh.tar.gz 2950643 BLAKE2B
cc3af755c11df896d2b8f55985829bad44aaad02077f60b91f0dbdc7f5bbcabdbfecd9b05a3cf05551ce82790a82888893be42200d38490bc2a2ea5527c3586b
SHA512
1e21acf842f55b39eed45c5aa8232d2fc2e65bcfe20ea0f2be9992f5bd8f3f38072ffb134006bd813cdbc40e83c777a376bb270d0c60fa4ab7fcc7c0ea78078b
+DIST aws-cli-1.38.32.gh.tar.gz 2917624 BLAKE2B
89773566f61627c79b8e87f8e671b6d6f705c1631139b83732659f3f20de261e1b8f225e4fd694ff354de0f90d2f7e1daa586ae1de4b334fd4c1d2ce44c797aa
SHA512
262708520077c3ac1bb5c8f03a58f2f7ae38f24a068bd9772097aede07f1b480bdae31ec20b8e5ff5ce47ecd19b81028432b754785599ecd3f1de2d9c7424023
diff --git a/app-admin/awscli/awscli-1.38.32.ebuild
b/app-admin/awscli/awscli-1.38.32.ebuild
new file mode 100644
index 000000000000..d0916b483262
--- /dev/null
+++ b/app-admin/awscli/awscli-1.38.32.ebuild
@@ -0,0 +1,93 @@
+# 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_{10..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-1).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) - 1)).$(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.11.0[${PYTHON_USEDEP}]
+ dev-python/pyyaml[${PYTHON_USEDEP}]
+ !app-admin/awscli-bin
+"
+BDEPEND="
+ test? (
+ dev-python/packaging[${PYTHON_USEDEP}]
+ dev-python/pytest-forked[${PYTHON_USEDEP}]
+ )
+"
+
+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
+ )
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ 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
+}