62 lines
2.0 KiB
Ruby
62 lines
2.0 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.7.tar.gz"
|
|
sha256 "e0a7a2fa8d9bb9155dde6334a69c236cd917c0c98ed0e2095220082924622b31"
|
|
license "Apache-2.0"
|
|
head "https://github.com/aws/aws-cli.git", branch: "v2"
|
|
|
|
bottle do
|
|
sha256 "1448cda4b7f347445fdccb9c4d7b816edb78a7ee0200966e9ed8ced04c74aabf" => :big_sur
|
|
sha256 "fa5935beb75bca17abb33ad569e30d94a96ca6e24faf19906ec0d80c27c189f3" => :catalina
|
|
sha256 "1253c0cbd62bf978ad0a0f104b34a1d8a968053c14a8c19e5fbbf4b6e1fc5719" => :mojave
|
|
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
|