diff options
| author | root <root@alpha.trunkmasters.com> | 2026-07-02 03:04:32 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-07-02 03:04:32 -0500 |
| commit | 062a52bd61f4f8d6a9eb95e7a1057ad2970ff3d2 (patch) | |
| tree | 4d40457c00bac6e801aa3ed267d67f0ab1696d63 /app-admin/awscli | |
| parent | ab43701157ca1662c9ed2c0da7aa0a795c2e3852 (diff) | |
| download | baldeagleos-repo-062a52bd61f4f8d6a9eb95e7a1057ad2970ff3d2.tar.gz baldeagleos-repo-062a52bd61f4f8d6a9eb95e7a1057ad2970ff3d2.tar.xz baldeagleos-repo-062a52bd61f4f8d6a9eb95e7a1057ad2970ff3d2.zip | |
Adding metadata
Diffstat (limited to 'app-admin/awscli')
| -rw-r--r-- | app-admin/awscli/Manifest | 1 | ||||
| -rw-r--r-- | app-admin/awscli/awscli-1.45.39.ebuild | 92 |
2 files changed, 93 insertions, 0 deletions
diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index dd179aa7d616..f9d146d33375 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -7,3 +7,4 @@ DIST aws-cli-1.45.35.gh.tar.gz 3178356 BLAKE2B 7dcd08e5b7de7064fff17c74b38bb8b55 DIST aws-cli-1.45.36.gh.tar.gz 3178460 BLAKE2B 2a1f837fc6991d9cfcdf4d9f54d57e7b801d6031baa0a23ee58a14106fa836aa5d9c937e1e97843cc5b370f2f27d49603b087b56efcf7fa7a4bf12ec5ce44767 SHA512 b80ccfba361e30de154466772d23402f40170517a812aa13085f5e71b5dc73305dd0eb55297ef04ce33798cc01b8c8a78c1441b0b529103f77f28c81c11c2401 DIST aws-cli-1.45.37.gh.tar.gz 3182439 BLAKE2B 558b75a002e936841ca106384f9c84d707641d3440927a3c660e19dc9af5991ba6cc175325e37b663f00be7d7e58277e80821f20a39fbb23006cea2d75caedeb SHA512 b09973987b4c0284bcb4345bcbef66ab3e970366b692cedfbfd2576e9b1bac191ba8a29123990544c29db1814251a78b2cc67d2db107d9bd32252db536861a91 DIST aws-cli-1.45.38.gh.tar.gz 3177882 BLAKE2B b25f560ee92a36a22240c893728b5fa2276ba6ad29a02b53140a7aaae9a700da7a35400915a9e1fe6506808b20f5403f8222afc4193cacb4a01df1b22854164a SHA512 7a782df8f347583546fcee96b6059f18e4e49ec5b0014b10ea62752c461918373f39f92b0b61d1a204fd17b0978a12f3ca154bebf75a08a2359d4035f41ff433 +DIST aws-cli-1.45.39.gh.tar.gz 3181410 BLAKE2B 34d9106f0af7cc7fc9f5fa15f2ea7c2c204c29fd695e9e7701cad0fe1bc91e0d52ca83ed7642d32a3610175b38d8c528a52c48070509677ccf54bb1c5c4581b1 SHA512 d7409c97bd626876fa1a63fc88471ccb076e0c255addf7ccc6a6532b28836a0259182c2ed77c050a6f7584234b5dd65b044224b27dfcb154843b22b5e0c83186 diff --git a/app-admin/awscli/awscli-1.45.39.ebuild b/app-admin/awscli/awscli-1.45.39.ebuild new file mode 100644 index 000000000000..7d3c8ade6a18 --- /dev/null +++ b/app-admin/awscli/awscli-1.45.39.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_{13..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)" +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.18.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 +} |
