diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-11-03 06:07:07 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-11-03 07:08:35 +0100 |
commit | 87911ee363016486175ad02f3560d4e18f53c1a3 (patch) | |
tree | 7c59c96dc342e92ef90f8388eb6507442ab6a9b8 /app-admin | |
parent | dev-python/boto3: Bump to 1.28.77 (diff) | |
download | gentoo-87911ee363016486175ad02f3560d4e18f53c1a3.tar.gz gentoo-87911ee363016486175ad02f3560d4e18f53c1a3.tar.bz2 gentoo-87911ee363016486175ad02f3560d4e18f53c1a3.zip |
app-admin/awscli: Bump to 1.29.77
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/awscli/Manifest | 1 | ||||
-rw-r--r-- | app-admin/awscli/awscli-1.29.77.ebuild | 87 |
2 files changed, 88 insertions, 0 deletions
diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index bd38bbe8cea8..1988bb02fccc 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -4,3 +4,4 @@ DIST aws-cli-1.29.73.gh.tar.gz 2569425 BLAKE2B 14950fd5c67726779f621dd039bfb7d3c DIST aws-cli-1.29.74.gh.tar.gz 2570564 BLAKE2B 6877bc2e2cef5b8c1b871af98e41a0ef3ef911927f7a592342c7ad5e762d820b7c561deef54baf8c657d31c6a742b7eb219f206d860966697716963b311937a8 SHA512 690a6c6fe2fab88bd8353b32fecb04d4fa33aefe574bcc4e0b9ec9f2a3c6decd05d01808f9fd715697bb7db2d7b0a2ac0ac23dc03f26b4e3e40ffa30d0cc9828 DIST aws-cli-1.29.75.gh.tar.gz 2571561 BLAKE2B e9db44fb596ce0a6e210e80ca08f027db765f0ff0e18281de92deb13b0dca3c5c51fb742488fc3b6c5ec7f659ca8fa3d7629a1e74fa260c2dfffbe6359838025 SHA512 a192b5c859ad60844e7ed2bfcb2fd8fe2d59cee4b518cfdbe2b0aa29498e1e315e2d52d91eb72f4208cd0d1b3df2229eafc939b02448cec787cb24a189162b34 DIST aws-cli-1.29.76.gh.tar.gz 2572022 BLAKE2B 42c203f28145c232762ef3aed12af04d3917161940ddaaf1396d1ee67a4ef19dacf6e876488ce6f02fd20200dab44c795ab551034e31a70bfd302a4daaefe629 SHA512 00ec8032070706871178eb951254d9562db1adb86c4ac6629de00754639dd5ee4c4df3f8e1cb881bd8b8a2da16a8714990d7ca10d0b390a01a5abf67055e4d4b +DIST aws-cli-1.29.77.gh.tar.gz 2572839 BLAKE2B c79219e4c8e711efdfeb8a2f49fe9bfe599581f769643ec7c85fa3ba81c58897bf0b88e02c46705ace0a7ef4e1a5704fe4b702426695675cb1b687c103d286af SHA512 5a88a90cc56f0324f794e8320316b415d21ce6ff12975979e94db632a92746f038387e139887e171102c8a18c4555dec339d2fd5d240b3b31f47fcff2c662f53 diff --git a/app-admin/awscli/awscli-1.29.77.ebuild b/app-admin/awscli/awscli-1.29.77.ebuild new file mode 100644 index 000000000000..23ea7d6f6fe7 --- /dev/null +++ b/app-admin/awscli/awscli-1.29.77.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit bash-completion-r1 distutils-r1 multiprocessing + +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 +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.7.0[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + !app-admin/awscli-bin +" +BDEPEND=" + test? ( + dev-python/pytest-forked[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +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/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/test_compat.py::TestIgnoreUserSignals + tests/unit/test_help.py::TestHelpPager::test_can_handle_ctrl_c + tests/unit/test_help.py::TestHelpPager::test_can_render_contents + tests/functional/ssm/test_start_session.py::TestSessionManager::test_start_session_{fails,success} + ) + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest "${serial_tests[@]}" + + local EPYTEST_DESELECT=( "${serial_tests[@]}" ) + # integration tests require AWS credentials and Internet access + epytest tests/{functional,unit} -p xdist -n "$(makeopts_jobs)" +} + +python_install_all() { + newbashcomp bin/aws_bash_completer aws + + insinto /usr/share/zsh/site-functions + newins 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 +} |