class Pyqt < Formula desc "Python bindings for v5 of Qt" homepage "https://www.riverbankcomputing.com/software/pyqt/download5" url "https://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-5.8.1/PyQt5_gpl-5.8.1.tar.gz" sha256 "1e8f24b261f34fa5bad19b5a637aadba2fa9a62e440749117b229253e8992a2e" revision 1 bottle do sha256 "daa94788812b49b7a3ccf698ea22131137efde50ebcd835dd76efc7a7e773ad1" => :sierra sha256 "70cea79125e037ca63954c759d4012a1e2ad3c5bc701304c8c7e440b398d27ca" => :el_capitan sha256 "a0d8467f7de2c7979627e9865e3e2227616b6b952bda1abce4511e76769604af" => :yosemite end option "with-debug", "Build with debug symbols" option "with-docs", "Install HTML documentation and python examples" deprecated_option "enable-debug" => "with-debug" depends_on :python3 => :recommended depends_on :python => :optional depends_on "qt" if build.with? "python3" depends_on "sip" => "with-python3" else depends_on "sip" end def install if build.without?("python3") && build.without?("python") odie "pyqt: --with-python3 must be specified when using --without-python" end Language::Python.each_python(build) do |python, version| args = ["--confirm-license", "--bindir=#{bin}", "--destdir=#{lib}/python#{version}/site-packages", "--stubsdir=#{lib}/python#{version}/site-packages/PyQt5", "--sipdir=#{share}/sip/Qt5", # sip.h could not be found automatically "--sip-incdir=#{Formula["sip"].opt_include}", "--qmake=#{Formula["qt"].bin}/qmake", # Force deployment target to avoid libc++ issues "QMAKE_MACOSX_DEPLOYMENT_TARGET=#{MacOS.version}", "--qml-plugindir=#{pkgshare}/plugins", "--verbose"] args << "--debug" if build.with? "debug" system python, "configure.py", *args system "make" system "make", "install" system "make", "clean" end doc.install "doc/html", "examples" if build.with? "docs" end test do system "#{bin}/pyuic5", "--version" system "#{bin}/pylupdate5", "-version" Language::Python.each_python(build) do |python, _version| system python, "-c", "import PyQt5" %w[ Gui Location Multimedia Network Quick Svg WebEngineWidgets Widgets Xml ].each { |mod| system python, "-c", "import PyQt5.Qt#{mod}" } end end end