Files
chromebrew/packages/awscli.rb
github-actions[bot] be2aff53e9 AutoBuild: updates-2025-02-18-00-18 started at 2025-02-18-00UTC (#11355)
* Add unbuilt updated pip packages to updates-2025-02-18-00-18

* Add unbuilt updated ruby gem packages to updates-2025-02-18-00-18

* Add built packages for linux/386 to updates-2025-02-18-00-18

* Add built packages for linux/amd64 to updates-2025-02-18-00-18

* Add built packages for linux/arm/v7 to updates-2025-02-18-00-18

---------

Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-02-18 00:41:31 +00:00

37 lines
1.2 KiB
Ruby

require 'buildsystems/pip'
class Awscli < Pip
description 'Universal Command Line Interface for Amazon Web Services'
homepage 'https://github.com/aws/aws-cli'
version "1.37.22-#{CREW_PY_VER}"
license 'Apache-2.0'
compatibility 'all'
source_url 'SKIP'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '8e1c739607567c3da669b91dc6951d9736008e0a74b836c48407c32b95b221c7',
armv7l: '8e1c739607567c3da669b91dc6951d9736008e0a74b836c48407c32b95b221c7',
i686: '78256d9b381960d00cc84d3ac5fc175b0f243b3819ccce56393a5a0c05c731c0',
x86_64: '4a4656c55dc846c374629ab7f2579a15f2a889208836903674a305d46a760cd9'
})
depends_on 'groff'
depends_on 'python3' => :build
no_source_build
pip_install_extras do
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc/bash.d"
File.write "#{CREW_DEST_PREFIX}/etc/bash.d/aws", <<~AWSBASHRCEOF
# Amazon Web Services CLI bash completion
source #{CREW_PREFIX}/bin/aws_bash_completer
AWSBASHRCEOF
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc/zsh.d"
File.write "#{CREW_DEST_PREFIX}/etc/zsh.d/aws", <<~AWSZSHRCEOF
# Amazon Web Services CLI zsh completion
source #{CREW_PREFIX}/bin/aws_zsh_completer.sh
AWSZSHRCEOF
end
end