homebrew-core/Formula/ansible.rb
2015-03-26 22:49:41 -07:00

136 lines
4.6 KiB
Ruby

class Ansible < Formula
homepage "http://www.ansible.com/home"
url "http://releases.ansible.com/ansible/ansible-1.9.0.1.tar.gz"
sha1 "a61c0dfdb3f395546310999d2b75c2ce422fc1ed"
head "https://github.com/ansible/ansible.git", :branch => "devel"
bottle do
sha256 "1a2744a357106cfea1fe35b652773f3861a332e25cb7729085e57d7db87397af" => :yosemite
sha256 "4f25bb0868752ee1ab7205b77f7c1f7cef06ea63405f60c4a88f87d8fab242b5" => :mavericks
sha256 "0b2b6b6796b4fe68ea883d4a3f7bdf6aaec6aaf5d092a7924ab3911196926530" => :mountain_lion
end
depends_on :python if MacOS.version <= :snow_leopard
depends_on "libyaml"
resource "docker-py" do
url "https://pypi.python.org/packages/source/d/docker-py/docker-py-0.6.0.tar.gz"
sha1 "01eb7b2cd1a607d361170041b973a0e36bb1be42"
end
resource "requests" do
url "https://pypi.python.org/packages/source/r/requests/requests-2.6.0.tar.gz"
sha256 "1cdbed1f0e236f35ef54e919982c7a338e4fea3786310933d3a7887a04b74d75"
end
resource "websocket-client" do
url "https://pypi.python.org/packages/source/w/websocket-client/websocket-client-0.11.0.tar.gz"
sha1 "a38cb6072a25b18faf11d31dd415750692c36f33"
end
resource "six" do
url "https://pypi.python.org/packages/source/s/six/six-1.8.0.tar.gz"
sha1 "aa3b0659cbc85c6c7a91efc51f2d1007040070cd"
end
resource "pycrypto" do
url "https://pypi.python.org/packages/source/p/pycrypto/pycrypto-2.6.tar.gz"
sha1 "c17e41a80b3fbf2ee4e8f2d8bb9e28c5d08bbb84"
end
resource "boto" do
url "https://pypi.python.org/packages/source/b/boto/boto-2.36.0.tar.gz"
sha1 "f230ff9b041d3b43244086e38b7b6029450898be"
end
resource "pyyaml" do
url "https://pypi.python.org/packages/source/P/PyYAML/PyYAML-3.10.tar.gz"
sha1 "476dcfbcc6f4ebf3c06186229e8e2bd7d7b20e73"
end
resource "paramiko" do
url "https://pypi.python.org/packages/source/p/paramiko/paramiko-1.11.0.tar.gz"
sha1 "fd925569b9f0b1bd32ce6575235d152616e64e46"
end
resource "markupsafe" do
url "https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-0.18.tar.gz"
sha1 "9fe11891773f922a8b92e83c8f48edeb2f68631e"
end
resource "jinja2" do
url "https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.1.tar.gz"
sha1 "a9b24d887f2be772921b3ee30a0b9d435cffadda"
end
resource "pyasn1" do
url "https://pypi.python.org/packages/source/p/pyasn1/pyasn1-0.1.7.tar.gz"
sha1 "e32b91c5a5d9609fb1d07d8685a884bab22ca6d0"
end
resource "python-keyczar" do
url "https://pypi.python.org/packages/source/p/python-keyczar/python-keyczar-0.71c.tar.gz"
sha1 "0ac1e85e05acac470029d1eaeece5c47d59fcc89"
end
resource "pywinrm" do
url "https://pypi.python.org/packages/source/p/pywinrm/pywinrm-0.0.3.tar.gz"
sha1 "9b4f50e838b9222a101094328b0f6e8669ac17b7"
end
resource "isodate" do
url "https://pypi.python.org/packages/source/i/isodate/isodate-0.5.0.tar.gz"
sha1 "1174aeb482567df02933bdc6f6e7c2a9a72eb31e"
end
resource "xmltodict" do
url "https://pypi.python.org/packages/source/x/xmltodict/xmltodict-0.9.0.tar.gz"
sha1 "06e4396e886133fdc0b10147c388ed82b0586c83"
end
resource "kerberos" do
url "https://pypi.python.org/packages/source/k/kerberos/kerberos-1.1.1.tar.gz"
sha1 "305cc1ea1e7a209402bca30fbb74a2ca8f2f539d"
end
def install
ENV["PYTHONPATH"] = libexec/"vendor/lib/python2.7/site-packages"
ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python2.7/site-packages"
res = %w[pycrypto boto pyyaml paramiko markupsafe jinja2]
res += %w[isodate xmltodict kerberos pywinrm] # windows support
res += %w[six requests websocket-client docker-py] # docker support
res += %w[pyasn1 python-keyczar] # accelerate support
res.each do |r|
resource(r).stage do
system "python", *Language::Python.setup_install_args(libexec/"vendor")
end
end
inreplace "lib/ansible/constants.py" do |s|
s.gsub! "/usr/share/ansible", share/"ansible"
s.gsub! "/etc/ansible", etc/"ansible"
end
system "python", *Language::Python.setup_install_args(libexec)
man1.install Dir["docs/man/man1/*.1"]
bin.install Dir["#{libexec}/bin/*"]
bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"])
end
test do
ENV["ANSIBLE_REMOTE_TEMP"] = testpath/"tmp"
(testpath/"playbook.yml").write <<-EOF.undent
---
- hosts: all
gather_facts: False
tasks:
- name: ping
ping:
EOF
(testpath/"hosts.ini").write("localhost ansible_connection=local\n")
system bin/"ansible-playbook", testpath/"playbook.yml", "-i", testpath/"hosts.ini"
end
end