2016-06-16 11:10:40 +00:00
|
|
|
# Make sure that you also bump botocore
|
2014-03-07 21:58:04 +00:00
|
|
|
class Awscli < Formula
|
2016-07-28 09:23:44 +00:00
|
|
|
include Language::Python::Virtualenv
|
|
|
|
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Official Amazon AWS command-line interface"
|
2014-03-07 21:58:04 +00:00
|
|
|
homepage "https://aws.amazon.com/cli/"
|
2016-09-14 04:46:27 +00:00
|
|
|
url "https://files.pythonhosted.org/packages/9e/33/f4a749464c3635bab375e643c349c10968b391953893ad2cb9187c684693/awscli-1.10.64.tar.gz"
|
|
|
|
sha256 "bd6b3a3c7d710129b225a3759dba1c028ba5fa4434bc579f09c999c2a4ce304f"
|
2014-03-07 21:58:04 +00:00
|
|
|
|
2016-03-18 16:01:54 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
2016-09-14 06:30:57 +00:00
|
|
|
sha256 "d8e5cce3078117542b205c4d4cd9f54e129efbe7291ceb1cadb8b38d609e35d9" => :el_capitan
|
|
|
|
sha256 "bb5e6ee0bda70cf0c6a9d50d274a5beb905119c8ee6fd6b940aad2ff0426825c" => :yosemite
|
|
|
|
sha256 "59833a0385de28b23e48d2647b46fcbde4af6d5e25469fbda30ad11b516adc24" => :mavericks
|
2016-03-18 16:01:54 +00:00
|
|
|
end
|
|
|
|
|
2014-03-07 21:58:04 +00:00
|
|
|
head do
|
2014-10-13 00:34:24 +00:00
|
|
|
url "https://github.com/aws/aws-cli.git", :branch => "develop"
|
2014-03-07 21:58:04 +00:00
|
|
|
|
|
|
|
resource "botocore" do
|
2014-10-13 00:34:24 +00:00
|
|
|
url "https://github.com/boto/botocore.git", :branch => "develop"
|
2014-03-07 21:58:04 +00:00
|
|
|
end
|
|
|
|
|
2015-11-11 11:40:54 +00:00
|
|
|
resource "jmespath" do
|
2014-10-13 00:34:24 +00:00
|
|
|
url "https://github.com/boto/jmespath.git", :branch => "develop"
|
2014-03-07 21:58:04 +00:00
|
|
|
end
|
2016-02-21 22:02:00 +00:00
|
|
|
|
|
|
|
resource "s3transfer" do
|
|
|
|
url "https://github.com/boto/s3transfer.git", :branch => "develop"
|
|
|
|
end
|
2014-03-07 21:58:04 +00:00
|
|
|
end
|
|
|
|
|
2015-03-31 07:25:07 +00:00
|
|
|
# Use :python on Lion to avoid urllib3 warning
|
|
|
|
# https://github.com/Homebrew/homebrew/pull/37240
|
|
|
|
depends_on :python if MacOS.version <= :lion
|
2014-03-07 21:58:04 +00:00
|
|
|
|
2016-06-22 09:45:59 +00:00
|
|
|
resource "botocore" do
|
2016-09-14 04:46:27 +00:00
|
|
|
url "https://files.pythonhosted.org/packages/75/ee/bb8c43101456225c0a7ec916878230780d49f75d701a4e96beb2bfa606aa/botocore-1.4.54.tar.gz"
|
|
|
|
sha256 "5cf7220c8ccadf6d1424be580cfa7c716693a52156cb9ac40dae28b9a894b095"
|
2014-11-15 23:03:52 +00:00
|
|
|
end
|
|
|
|
|
2014-03-07 21:58:04 +00:00
|
|
|
resource "colorama" do
|
2016-07-13 22:32:58 +00:00
|
|
|
url "https://files.pythonhosted.org/packages/f0/d0/21c6449df0ca9da74859edc40208b3a57df9aca7323118c913e58d442030/colorama-0.3.7.tar.gz"
|
|
|
|
sha256 "e043c8d32527607223652021ff648fbb394d5e19cba9f1a698670b338c9d782b"
|
2014-11-15 23:03:52 +00:00
|
|
|
end
|
|
|
|
|
2016-06-22 09:45:59 +00:00
|
|
|
resource "docutils" do
|
|
|
|
url "https://files.pythonhosted.org/packages/37/38/ceda70135b9144d84884ae2fc5886c6baac4edea39550f28bcd144c1234d/docutils-0.12.tar.gz"
|
|
|
|
sha256 "c7db717810ab6965f66c8cf0398a98c9d8df982da39b4cd7f162911eb89596fa"
|
2016-02-21 22:02:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
resource "futures" do
|
2016-06-15 00:25:14 +00:00
|
|
|
url "https://files.pythonhosted.org/packages/55/db/97c1ca37edab586a1ae03d6892b6633d8eaa23b23ac40c7e5bbc55423c78/futures-3.0.5.tar.gz"
|
2016-02-21 22:02:00 +00:00
|
|
|
sha256 "0542525145d5afc984c88f914a0c85c77527f65946617edb5274f72406f981df"
|
2014-03-07 21:58:04 +00:00
|
|
|
end
|
|
|
|
|
2016-06-22 09:45:59 +00:00
|
|
|
resource "jmespath" do
|
|
|
|
url "https://files.pythonhosted.org/packages/8f/d8/6e3e602a3e90c5e3961d3d159540df6b2ff32f5ab2ee8ee1d28235a425c1/jmespath-0.9.0.tar.gz"
|
|
|
|
sha256 "08dfaa06d4397f283a01e57089f3360e3b52b5b9da91a70e1fd91e9f0cdd3d3d"
|
2014-03-07 21:58:04 +00:00
|
|
|
end
|
|
|
|
|
2014-11-15 23:03:52 +00:00
|
|
|
resource "pyasn1" do
|
2016-06-15 00:25:14 +00:00
|
|
|
url "https://files.pythonhosted.org/packages/f7/83/377e3dd2e95f9020dbd0dfd3c47aaa7deebe3c68d3857a4e51917146ae8b/pyasn1-0.1.9.tar.gz"
|
2016-01-07 08:25:53 +00:00
|
|
|
sha256 "853cacd96d1f701ddd67aa03ecc05f51890135b7262e922710112f12a2ed2a7f"
|
2014-11-15 23:03:52 +00:00
|
|
|
end
|
|
|
|
|
2016-06-22 09:45:59 +00:00
|
|
|
resource "python-dateutil" do
|
|
|
|
url "https://files.pythonhosted.org/packages/3e/f5/aad82824b369332a676a90a8c0d1e608b17e740bbb6aeeebca726f17b902/python-dateutil-2.5.3.tar.gz"
|
|
|
|
sha256 "1408fdb07c6a1fa9997567ce3fcee6a337b39a503d80699e0f213de4aa4b32ed"
|
|
|
|
end
|
|
|
|
|
2014-03-07 21:58:04 +00:00
|
|
|
resource "rsa" do
|
2016-06-15 00:25:14 +00:00
|
|
|
url "https://files.pythonhosted.org/packages/14/89/adf8b72371e37f3ca69c6cb8ab6319d009c4a24b04a31399e5bd77d9bb57/rsa-3.4.2.tar.gz"
|
2016-05-26 15:11:17 +00:00
|
|
|
sha256 "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5"
|
2016-02-21 22:02:00 +00:00
|
|
|
end
|
|
|
|
|
2016-06-22 09:45:59 +00:00
|
|
|
resource "s3transfer" do
|
2016-09-14 04:46:27 +00:00
|
|
|
url "https://files.pythonhosted.org/packages/a3/e9/24937eaf1ffccb5f7861b24b45cd3ef13c09e21f6932466cc2862021ab70/s3transfer-0.1.4.tar.gz"
|
|
|
|
sha256 "c41d039ab9204e9eea72a6098ca5092ed001f2820274b80be622dbe582ab2d41"
|
2016-06-22 09:45:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
resource "six" do
|
|
|
|
url "https://files.pythonhosted.org/packages/b3/b2/238e2590826bfdd113244a40d9d3eb26918bd798fc187e2360a8367068db/six-1.10.0.tar.gz"
|
|
|
|
sha256 "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a"
|
|
|
|
end
|
|
|
|
|
2014-03-07 21:58:04 +00:00
|
|
|
def install
|
2016-07-28 09:23:44 +00:00
|
|
|
virtualenv_install_with_resources
|
2014-03-07 21:58:04 +00:00
|
|
|
|
2015-08-10 17:41:27 +00:00
|
|
|
pkgshare.install "awscli/examples"
|
2016-08-14 13:02:42 +00:00
|
|
|
|
|
|
|
bash_completion.install "bin/aws_bash_completer"
|
|
|
|
zsh_completion.install "bin/aws_zsh_completer.sh" => "_aws"
|
2014-03-07 21:58:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
The "examples" directory has been installed to:
|
|
|
|
#{HOMEBREW_PREFIX}/share/awscli/examples
|
|
|
|
|
2016-08-14 13:02:42 +00:00
|
|
|
Before using aws-cli, you need to tell it about your AWS credentials.
|
|
|
|
The quickest way to do this is to run:
|
2014-03-07 21:58:04 +00:00
|
|
|
aws configure
|
|
|
|
|
|
|
|
More information:
|
2015-09-20 14:16:04 +00:00
|
|
|
https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html
|
2016-08-14 13:02:42 +00:00
|
|
|
https://pypi.python.org/pypi/awscli#getting-started
|
2014-03-07 21:58:04 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2016-06-15 00:25:14 +00:00
|
|
|
assert_match version.to_s, shell_output("#{bin}/aws --version 2>&1")
|
2014-03-07 21:58:04 +00:00
|
|
|
end
|
|
|
|
end
|