class Libxml2 < Formula desc "GNOME XML library" homepage "http://xmlsoft.org/" url "http://xmlsoft.org/sources/libxml2-2.9.9.tar.gz" mirror "https://ftp.osuosl.org/pub/blfs/conglomeration/libxml2/libxml2-2.9.9.tar.gz" sha256 "94fb70890143e3c6549f265cee93ec064c80a84c42ad0f23e85ee1fd6540a871" revision 2 bottle do cellar :any sha256 "2a7de29b64f7bd74990ff1fd1b00d52333e587ae567e78bbab811a33b91141d6" => :catalina sha256 "1e6143e9bfb756fe80e4a1db417b722569429a815365ed9070556e81bd2db02a" => :mojave sha256 "d6b944e43be98a8e4200eb247c1d4b1254f8026e2e5a39cfa8b67d1c9429a7f2" => :high_sierra sha256 "e5ac4cca18a3d8795895059253e610b24f8c7c491354ce21e2b19ae4c7e84bd6" => :sierra end head do url "https://gitlab.gnome.org/GNOME/libxml2.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "pkg-config" => :build end keg_only :provided_by_macos depends_on "python" depends_on "readline" # Fix crash when using Python 3 using Fedora's patch. # Reported upstream: # https://bugzilla.gnome.org/show_bug.cgi?id=789714 # https://gitlab.gnome.org/GNOME/libxml2/issues/12 patch do url "https://bugzilla.opensuse.org/attachment.cgi?id=746044" sha256 "37eb81a8ec6929eed1514e891bff2dd05b450bcf0c712153880c485b7366c17c" end # Resolves CVE-2018-8048, CVE-2018-3740, CVE-2018-3741 # Upstream hasn't patched this bug, but Nokogiri distributes # libxml2 with this patch to fixe this issue # https://bugzilla.gnome.org/show_bug.cgi?id=769760 # https://github.com/sparklemotion/nokogiri/pull/1746 patch do url "https://raw.githubusercontent.com/sparklemotion/nokogiri/38721829c1df30e93bdfbc88095cc36838e497f3/patches/libxml2/0001-Revert-Do-not-URI-escape-in-server-side-includes.patch" sha256 "c755e6e17c02584bfbfc8889ffc652384b010c0bd71879d7ff121ca60a218fcd" end def install system "autoreconf", "-fiv" if build.head? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-history", "--without-python", "--without-lzma" system "make", "install" cd "python" do # We need to insert our include dir first inreplace "setup.py", "includes_dir = [", "includes_dir = ['#{include}', '#{MacOS.sdk_path}/usr/include'," system "python3", "setup.py", "install", "--prefix=#{prefix}" end end test do (testpath/"test.c").write <<~EOS #include int main() { xmlDocPtr doc = xmlNewDoc(BAD_CAST "1.0"); xmlNodePtr root_node = xmlNewNode(NULL, BAD_CAST "root"); xmlDocSetRootElement(doc, root_node); xmlFreeDoc(doc); return 0; } EOS args = shell_output("#{bin}/xml2-config --cflags --libs").split args += %w[test.c -o test] system ENV.cc, *args system "./test" xy = Language::Python.major_minor_version "python3" ENV.prepend_path "PYTHONPATH", lib/"python#{xy}/site-packages" system "python3", "-c", "import libxml2" end end