mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
app-admin/awscli: Bump to 1.43.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
parent
403eff34a9
commit
0381ac612d
@ -7,3 +7,4 @@ DIST aws-cli-1.42.74.gh.tar.gz 3005364 BLAKE2B 1550c3939370bcbc4f0eb50ff7eb22b20
|
||||
DIST aws-cli-1.42.75.gh.tar.gz 3007510 BLAKE2B 99c9441fcd7cc1848eb2bc005e2989cedc8f6d4531587355430cc7d3b6e4b56d3969e064d66e1d66552da1f7ba7436820e708363bf406d6ef090edf630e147c7 SHA512 4172040f963f926d1fefd9d942fddae21bebc681498a3964041843f1cf6417a809a493a435705a3393b7e94c193f0daba704c01e2708cd401bb30e090fe64344
|
||||
DIST aws-cli-1.42.76.gh.tar.gz 3010359 BLAKE2B b9b48f458c5777bbb3884e6b00570b6a52db0814a0e255e20eb943ac62831260213073de4557d16237c6338c7d8092cdad29f93db7d34b133dadf9ab4dd8f883 SHA512 ac010589e5dfef025b4f5233f3df01a4b7bd7ce70460ee576ab27f3addcdb79a5e0a71cf3ed5467151b0fd19ac7e3236c473db3dcf65d9a54ed217a956e14bbe
|
||||
DIST aws-cli-1.43.0.gh.tar.gz 3012782 BLAKE2B a609cb2e69b496ccdbf17c4a03cb479eba160d0e6eb9096ee40e854cdc6e4740ff0d3c31efb650968971dc00dd37bb7888284cc3a9e71b6f5617f74f177c8657 SHA512 b2accc403bb77134895c35bb1fac9d93d54050bfa6c8d96260746483839aa59b2d8d960dea08c5b7f374a8514b6c2d724682bf83f57a1dc6a4fac023d725a267
|
||||
DIST aws-cli-1.43.1.gh.tar.gz 3019451 BLAKE2B 49ebb2b38ec47c604edf2f0d1f4734620cfc0d7595218a4b1190e0ddbd3faa4628f3be9d5b7be77f29aee6ed1c8dc6998d49e80633b33b862eaeac7b8d1db250 SHA512 d03c2c8cf6b97128d703561a02f24e7abca7f398c8417546e50cd8fb63ba5ded26841924508509969a27b232fb41ff3827903e117cde16c47a1fdad4ba672299
|
||||
|
||||
92
app-admin/awscli/awscli-1.43.1.ebuild
Normal file
92
app-admin/awscli/awscli-1.43.1.ebuild
Normal file
@ -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.15.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
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user