63 lines
2.1 KiB
Ruby
63 lines
2.1 KiB
Ruby
class Awscli < Formula
|
|
include Language::Python::Virtualenv
|
|
|
|
desc "Official Amazon AWS command-line interface"
|
|
homepage "https://aws.amazon.com/cli/"
|
|
url "https://github.com/aws/aws-cli/archive/2.1.32.tar.gz"
|
|
sha256 "7c7fa026a5492ec01c8157305d0a28e54cb52943a53a6122ed692bf50437eb24"
|
|
license "Apache-2.0"
|
|
head "https://github.com/aws/aws-cli.git", branch: "v2"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "c440d5c90f09fa10917a409bc45925e3057e211127df55ce7ba76fa82b43c2b4"
|
|
sha256 big_sur: "060cd77a00f8746de0245292c41695e5c753f29ad04bf056a0fb925c174700db"
|
|
sha256 catalina: "ada144ad7429ca02382c3b4f7fd5825f8f5d999474e2fa9b44b7af69676a5e94"
|
|
sha256 mojave: "3dd6efb23e1b95528c9dcedf5e03411766631c027ecad85c7d59472c022584e6"
|
|
end
|
|
|
|
depends_on "python@3.9"
|
|
|
|
uses_from_macos "groff"
|
|
|
|
on_linux do
|
|
depends_on "libyaml"
|
|
end
|
|
|
|
def install
|
|
venv = virtualenv_create(libexec, "python3")
|
|
system libexec/"bin/pip", "install", "-v", "-r", "requirements.txt",
|
|
"--ignore-installed", buildpath
|
|
system libexec/"bin/pip", "uninstall", "-y", "awscli"
|
|
venv.pip_install_and_link buildpath
|
|
system libexec/"bin/pip", "uninstall", "-y", "pyinstaller"
|
|
pkgshare.install "awscli/examples"
|
|
|
|
rm Dir["#{bin}/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh}"]
|
|
bash_completion.install "bin/aws_bash_completer"
|
|
zsh_completion.install "bin/aws_zsh_completer.sh"
|
|
(zsh_completion/"_aws").write <<~EOS
|
|
#compdef aws
|
|
_aws () {
|
|
local e
|
|
e=$(dirname ${funcsourcetrace[1]%:*})/aws_zsh_completer.sh
|
|
if [[ -f $e ]]; then source $e; fi
|
|
}
|
|
EOS
|
|
|
|
system libexec/"bin/python3", "scripts/gen-ac-index", "--include-builtin-index"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
The "examples" directory has been installed to:
|
|
#{HOMEBREW_PREFIX}/share/awscli/examples
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match "topics", shell_output("#{bin}/aws help")
|
|
assert_include Dir["#{libexec}/lib/python3.9/site-packages/awscli/data/*"],
|
|
"#{libexec}/lib/python3.9/site-packages/awscli/data/ac.index"
|
|
end
|
|
end
|