mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2025-02-08-00-17 * Add built packages for linux/386 to updates-2025-02-08-00-17 * Add built packages for linux/amd64 to updates-2025-02-08-00-17 * Add built packages for linux/arm/v7 to updates-2025-02-08-00-17 --------- 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>
37 lines
1.2 KiB
Ruby
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.16-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '299167aae6ef3887e825bbb37b540a5945c3cb668a5f443dd7ed1fc32b9e8e2b',
|
|
armv7l: '299167aae6ef3887e825bbb37b540a5945c3cb668a5f443dd7ed1fc32b9e8e2b',
|
|
i686: 'f6f0b422fe25010d16cbdcec42664a84cb78414fbf7cdc820c9ffcc418e73726',
|
|
x86_64: 'e9ae86fb59691bc442c4480afba5bf543852742a2a2076904281f93bdabc582b'
|
|
})
|
|
|
|
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
|