homebrew-core/Formula/euca2ools.rb
2016-02-24 10:41:24 +01:00

61 lines
2.3 KiB
Ruby

class Euca2ools < Formula
desc "Eucalyptus client API tools-works with Amazon EC2 and IAM"
homepage "https://github.com/eucalyptus/euca2ools"
url "https://github.com/eucalyptus/euca2ools/archive/v3.2.1.tar.gz"
sha256 "1d232d6c389b1fa1de9132abd04356bd3e28160e8410a0e5a41f5e0f3da4a125"
head "https://github.com/eucalyptus/euca2ools.git"
bottle do
cellar :any_skip_relocation
sha256 "a6d395aecd3867c81d5789cfb1d0c07dc583ca1964669cfd7af53359e24f347c" => :el_capitan
sha256 "8c7ef23097472b3b801d13abdfb4d416ea8156ea69915b5ab09051f7bbc1e4c8" => :yosemite
sha256 "fe63a3a7c44cd0f276962ff87e3f39d02ed667f09006f1357a30ce96616a0b34" => :mavericks
sha256 "fd09cae80f9a8648fc1a7048bd8eb3f2856c6df746baeae2ded8f33829eafb5b" => :mountain_lion
end
depends_on :python if MacOS.version <= :snow_leopard
resource "requestbuilder" do
url "https://github.com/boto/requestbuilder/archive/v0.3.4.tar.gz"
sha256 "f4fa8fab964b7ed94163d941c752e33dce3fd059f29618c9243808fd89a9aeb4"
end
resource "requests" do
url "https://pypi.python.org/packages/source/r/requests/requests-2.6.0.tar.gz"
sha256 "1cdbed1f0e236f35ef54e919982c7a338e4fea3786310933d3a7887a04b74d75"
end
resource "setuptools" do
url "https://pypi.python.org/packages/source/s/setuptools/setuptools-15.0.tar.gz"
sha256 "718d13adf87f99a45835bb20e0a1c4c036de644cd32b3f112639403aa04ebeb5"
end
resource "six" do
url "https://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz"
sha256 "e24052411fc4fbd1f672635537c3fc2330d9481b18c0317695b46259512c91d5"
end
resource "lxml" do
url "https://pypi.python.org/packages/source/l/lxml/lxml-3.4.2.tar.gz"
sha256 "c7d5990298af6ffb00312973a25f0cc917a6368126dd40eaab41d78d3e1ea25d"
end
def install
ENV["PYTHONPATH"] = lib+"python2.7/site-packages"
ENV.prepend_create_path "PYTHONPATH", libexec+"lib/python2.7/site-packages"
resources.each do |r|
r.stage { system "python", "setup.py", "install", "--prefix=#{libexec}" }
end
system "python", "setup.py", "install", "--single-version-externally-managed", "--record=installed.txt",
"--prefix=#{prefix}"
bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
end
test do
system "#{bin}/euca-version"
system "#{bin}/euca-describe-instances", "--help"
end
end