Files
chromebrew/packages/awscli.rb
chromebrew-actions[bot] 5a1fb58dd7 awscli -> 1.44.63-py3.14 in updater-awscli-1.44.63-py3.14 — autoconf: 2.73 → 2.72,awscli: 1.44.60-py3.14 → 1.44.63-py3.14,frp: 0.68.0 → 0.67.0,hunspell_en_us: 26.2.2.2 → 26.2.2.1,q: 3.1.7 → 3.1.6,sqlite: 3.52.0 → 3.51.3 (#15108)
* awscli -> 1.44.63-py3.14 in updater-awscli-1.44.63-py3.14

* updater-awscli-1.44.63-py3.14: Package File Update Run on linux/386 container.

* updater-awscli-1.44.63-py3.14: Package File Update Run on linux/amd64 container.

* updater-awscli-1.44.63-py3.14: Package File Update Run on linux/arm/v7 container.

---------

Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2026-03-21 01:36:37 +00:00

51 lines
1.8 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.44.63-#{CREW_PY_VER}"
license 'Apache-2.0'
compatibility 'all'
source_url 'SKIP'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '8eafc358acebd2b1f162291ec30ebf4b5b17e3d8fdc8013501717adac4b633a2',
armv7l: '8eafc358acebd2b1f162291ec30ebf4b5b17e3d8fdc8013501717adac4b633a2',
i686: '8be23a5d5779e7862eee0fc3923ce3c61fcec05ab8676dcbb74888e945c120e5',
x86_64: '969dabda3cc03bd0982f83e3be60fbab2f847892b0481dd1952d9c3387413cb3'
})
binary_sha256({
aarch64: 'bfcf91ac26dd2490f60a26662f963724e9295d7d0b0b713a91818e16745127fc',
armv7l: 'bfcf91ac26dd2490f60a26662f963724e9295d7d0b0b713a91818e16745127fc',
i686: '9cee7288fc31b4e34906cd7ac708138370bd21089d7da7cc6273df3d38202634',
x86_64: '9dd34794778678c6af900067f8921a20a502291254d9c5b89cb3327c6f9a6870'
})
depends_on 'groff' # R
depends_on 'py3_botocore' # R
depends_on 'py3_docutils' # R
depends_on 'py3_jmespath' # R
depends_on 'py3_pyasn1' # R
depends_on 'py3_python_dateutil' # R
depends_on 'py3_rsa' # R
depends_on 'py3_s3transfer' # R
depends_on 'python3' => :logical
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