homebrew-core/Formula/awscli.rb

121 lines
3.6 KiB
Ruby
Raw Normal View History

class Awscli < Formula
homepage "https://aws.amazon.com/cli/"
url "https://pypi.python.org/packages/source/a/awscli/awscli-1.6.10.tar.gz"
sha1 "47aa6d8212fa268bcc520a51210ec72e49c488d5"
bottle do
cellar :any
2015-01-07 17:02:37 +00:00
sha1 "2b7b0584b304411faab4c24d38db430361319942" => :yosemite
sha1 "f78fab48f23111df7ba38f5771697fedbf0fcb8e" => :mavericks
sha1 "cab72243a68cc7051e42f4198a3172f8b442e0bd" => :mountain_lion
end
head do
2014-10-13 00:34:24 +00:00
url "https://github.com/aws/aws-cli.git", :branch => "develop"
resource "botocore" do
2014-10-13 00:34:24 +00:00
url "https://github.com/boto/botocore.git", :branch => "develop"
end
resource "bcdoc" do
2014-10-13 00:34:24 +00:00
url "https://github.com/boto/bcdoc.git", :branch => "develop"
end
resource "jmespath" do
2014-10-13 00:34:24 +00:00
url "https://github.com/boto/jmespath.git", :branch => "develop"
end
end
depends_on :python if MacOS.version <= :snow_leopard
resource "six" do
url "https://pypi.python.org/packages/source/s/six/six-1.8.0.tar.gz"
sha1 "aa3b0659cbc85c6c7a91efc51f2d1007040070cd"
end
resource "python-dateutil" do
url "https://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-2.2.tar.gz"
sha1 "fbafcd19ea0082b3ecb17695b4cb46070181699f"
end
resource "colorama" do
url "https://pypi.python.org/packages/source/c/colorama/colorama-0.3.2.tar.gz"
sha1 "f2da891543421eeb423c469dff13faf1e70187e5"
end
resource "jmespath" do
url "https://pypi.python.org/packages/source/j/jmespath/jmespath-0.5.0.tar.gz"
sha1 "c9ce28e08fd24cdaa23e1183008b67ded302ef27"
end
resource "botocore" do
url "https://pypi.python.org/packages/source/b/botocore/botocore-0.76.0.tar.gz"
sha1 "7c4021228bee72880d960e09f88bc893368045e9"
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.12.2.tar.gz"
sha1 "31b2a714c2803658d9d028c8edf4623fd0daaf18"
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"
sha1 "208583c49489b7ab415a4455eae7618b7055feca"
end
def install
ENV["PYTHONPATH"] = libexec/"lib/python2.7/site-packages"
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages"
2014-07-19 03:42:47 +00:00
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