class Awscli < Formula include Language::Python::Virtualenv desc "Official Amazon AWS command-line interface" homepage "https://aws.amazon.com/cli/" # awscli should only be updated every 10 releases on multiples of 10 url "https://github.com/aws/aws-cli/archive/1.16.150.tar.gz" sha256 "4aa8e5179407e9de83d9c37e76afc1ba6f822819370462c6f9ce2cd198cf3b35" head "https://github.com/aws/aws-cli.git", :branch => "develop" bottle do cellar :any_skip_relocation sha256 "efce7b94ffc7f65adafd6a7de3f3d001db9b131e2f98ed5889c670847c2faf83" => :mojave sha256 "a87c629442f772f147321e688eca27aeebd75a6064ab8644b3263a6a3404d883" => :high_sierra sha256 "2c4dea83b8dd88c9580a1e455698b6b75f08303a4477c03a35953a364b99c2a8" => :sierra end # Some AWS APIs require TLS1.2, which system Python doesn't have before High # Sierra depends_on "python" def install venv = virtualenv_create(libexec, "python3") system libexec/"bin/pip", "install", "-v", "--no-binary", ":all:", "--ignore-installed", buildpath system libexec/"bin/pip", "uninstall", "-y", "awscli" venv.pip_install_and_link buildpath 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 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") end end