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/1.11.78.tar.gz" sha256 "33d6d07fdeb85fa286c966d0c804e844dbe59779104b9069962aca62cb52b224" head "https://github.com/aws/aws-cli.git", :branch => "develop" bottle do cellar :any_skip_relocation sha256 "3de7d77075534f2aa6677362bb032731a79a2f8c4e5acda7b0e6eab0a57a35d7" => :sierra sha256 "97404e4fda4ae200c3ef3b8c391f5a90797c43850fd87f966ff68bfe1e171ffa" => :el_capitan sha256 "a54bc4c64848ce5296f8660d70b2423443d48d6a1e66a7ac162f0d3d725e409d" => :yosemite end # Use :python on Lion to avoid urllib3 warning # https://github.com/Homebrew/homebrew/pull/37240 depends_on :python if MacOS.version <= :lion def install venv = virtualenv_create(libexec) 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" bash_completion.install "bin/aws_bash_completer" zsh_completion.install "bin/aws_zsh_completer.sh" => "_aws" end def caveats; <<-EOS.undent 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