ansible@2.8 2.8.12_1

Closes #56148.

Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Frank Blanning 2020-06-11 09:49:06 +03:00 committed by BrewTestBot
parent dcc6bcae9f
commit bdacbfd00e
1 changed files with 5 additions and 2 deletions

View File

@ -5,6 +5,7 @@ class AnsibleAT28 < Formula
homepage "https://www.ansible.com/"
url "https://releases.ansible.com/ansible/ansible-2.8.12.tar.gz"
sha256 "2a4ce2a3f387d2595ee3f968c3ea50d6db0ab2d8306f0e81ab96c2a15a683124"
revision 1
bottle do
cellar :any
@ -18,7 +19,9 @@ class AnsibleAT28 < Formula
depends_on "pkg-config" => :build
depends_on "libyaml"
depends_on "openssl@1.1"
depends_on "python@3.8"
depends_on "python"
# Ansible 2.8 would probably never work with Python > 3.7
# https://github.com/ansible/ansible/issues/63973
uses_from_macos "libffi"
uses_from_macos "libxslt"
@ -593,7 +596,7 @@ class AnsibleAT28 < Formula
end
def install
ENV.prepend_path "PATH", Formula["python@3.8"].opt_libexec/"bin"
ENV.prepend_path "PATH", Formula["python"].opt_libexec/"bin"
# Fix "ld: file not found: /usr/lib/system/libsystem_darwin.dylib" for lxml
ENV["SDKROOT"] = MacOS.sdk_path if MacOS.version == :sierra