homebrew-core/Formula/awscli.rb
2015-03-31 01:00:46 -07:00

122 lines
3.9 KiB
Ruby

class Awscli < Formula
homepage "https://aws.amazon.com/cli/"
url "https://pypi.python.org/packages/source/a/awscli/awscli-1.7.18.tar.gz"
sha256 "0174276c5e0c830cc77052580d9aadf52e944ade009625fb9be0ee04251a96f2"
bottle do
cellar :any
sha256 "92fa6487bd56dc19bc0c7b018e68817318797f4c5cb0b6043d80834a213e0c75" => :yosemite
sha256 "5fe0865b83817a80ef47c0546aa045edaa493855cdbeef7aa94d72f95a66ac10" => :mavericks
sha256 "85f3756cca15bee083ddf62ab5f5b40e82b68070bba22ad49f87b804fb858e10" => :mountain_lion
end
head do
url "https://github.com/aws/aws-cli.git", :branch => "develop"
resource "botocore" do
url "https://github.com/boto/botocore.git", :branch => "develop"
end
resource "bcdoc" do
url "https://github.com/boto/bcdoc.git", :branch => "develop"
end
resource "jmespath" do
url "https://github.com/boto/jmespath.git", :branch => "develop"
end
end
# Use :python on Lion to avoid urllib3 warning
# https://github.com/Homebrew/homebrew/pull/37240
depends_on :python if MacOS.version <= :lion
resource "six" do
url "https://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz"
sha1 "d168e6d01f0900875c6ecebc97da72d0fda31129"
end
resource "python-dateutil" do
url "https://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-2.4.1.post1.tar.gz"
sha256 "aa9bdbd60c395db90204609f1fb5aeb3797870f65c09f04f243476d22f8f4615"
end
resource "colorama" do
url "https://pypi.python.org/packages/source/c/colorama/colorama-0.3.3.tar.gz"
sha256 "eb21f2ba718fbf357afdfdf6f641ab393901c7ca8d9f37edd0bee4806ffa269c"
end
resource "jmespath" do
url "https://pypi.python.org/packages/source/j/jmespath/jmespath-0.6.1.tar.gz"
sha1 "f3fc294e5225f2529968f58eb75c9da91fbeb9c1"
end
resource "botocore" do
url "https://pypi.python.org/packages/source/b/botocore/botocore-0.99.0.tar.gz"
sha256 "20cd9e82a358e2aad9e0b188cdee9ffa5c42219d5382d91a9ca1c85ff28f7df0"
end
resource "docutils" do
url "https://pypi.python.org/packages/source/d/docutils/docutils-0.12.tar.gz"
sha1 "002450621b33c5690060345b0aac25bc2426d675"
end
resource "bcdoc" do
url "https://pypi.python.org/packages/source/b/bcdoc/bcdoc-0.13.0.tar.gz"
sha256 "ffe7bfc278f83bab826e9f52e2860a858579fffab2febf60ce2ec6c3f9247763"
end
resource "pyasn1" do
url "https://pypi.python.org/packages/source/p/pyasn1/pyasn1-0.1.7.tar.gz"
sha1 "e32b91c5a5d9609fb1d07d8685a884bab22ca6d0"
end
resource "rsa" do
url "https://pypi.python.org/packages/source/r/rsa/rsa-3.1.4.tar.gz"
sha256 "e2b0b05936c276b1edd2e1525553233b666df9e29b5c3ba223eed738277c82a0"
end
def install
ENV["PYTHONPATH"] = libexec/"lib/python2.7/site-packages"
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages"
resources.each do |r|
r.stage do
system "python", *Language::Python.setup_install_args(libexec/"vendor")
end
end
system "python", *Language::Python.setup_install_args(libexec)
# Install zsh completion
zsh_completion.install "bin/aws_zsh_completer.sh" => "_aws"
# Install the examples
(share+"awscli").install "awscli/examples"
bin.install Dir[libexec/"bin/*"]
bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
end
def caveats; <<-EOS.undent
The "examples" directory has been installed to:
#{HOMEBREW_PREFIX}/share/awscli/examples
Add the following to ~/.bashrc to enable bash completion:
complete -C aws_completer aws
Add the following to ~/.zshrc to enable zsh completion:
source #{HOMEBREW_PREFIX}/share/zsh/site-functions/_aws
Before using awscli, you need to tell it about your AWS credentials.
The easiest way to do this is to run:
aws configure
More information:
http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html
EOS
end
test do
system "#{bin}/aws", "--version"
end
end