-
Notifications
You must be signed in to change notification settings - Fork 42
99 lines (84 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
class PyqtAT4 < Formula
desc "Python bindings for Qt"
homepage "https://www.riverbankcomputing.com/software/pyqt/intro"
url "https://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.12.1/PyQt4_gpl_mac-4.12.1.tar.gz/download"
sha256 "3224ab2c4d392891eb0abbc2bf076fef2ead3a5bb36ceae2383df4dda00ccce5"
revision 1
bottle do
rebuild 1
root_url "https://github.com/cartr/homebrew-qt4-bottles/releases/download/autobottle-qt4"
sha256 mojave: "e44d7923a06753626ffc9bf6736b9641eb2b653bbd6ea34c841e1aaf2b9aadae"
sha256 high_sierra: "5c6d1faf80702fbf842192da0823615a933b4e6198824cf923c2ad52da5c598c"
sha256 sierra: "60e060eea471ae89cad6c16c14f4c7d3ad300840de3a4694259166ce91b377f2"
sha256 el_capitan: "73742cd1d51d3cf121e36a15fdde6ebe0d4c55abb5ca45a219a1776cec3f5b6d"
sha256 yosemite: "ea4bcda9e317579d71969c231cb3dcf3dd84b1aeb5d8cecd50ca128645e38838"
end
option "without-python@2", "Build without python 2 support"
depends_on "cartr/qt4/qt@4"
depends_on "cartr/qt4/[email protected]" => :recommended
depends_on "python" => :optional
if build.without?("python") && build.without?("python@2")
odie "pyqt: --with-python must be specified when using --without-python@2"
end
if build.with? "python"
depends_on "sip" => "with-python"
else
depends_on "sip"
end
def install
# On Mavericks we want to target libc++, this requires a non default qt makespec
ENV.append "QMAKESPEC", "unsupported/macx-clang-libc++" if ENV.compiler == :clang && MacOS.version >= :mavericks
Language::Python.each_python(build) do |python, version|
ENV.append_path "PYTHONPATH", "#{Formula["sip"].opt_lib}/python#{version}/site-packages"
args = %W[
--confirm-license
--bindir=#{bin}
--destdir=#{lib}/python#{version}/site-packages
--sipdir=#{share}/sip
]
# We need to run "configure.py" so that pyqtconfig.py is generated, which
# is needed by QGIS, PyQWT (and many other PyQt interoperable
# implementations such as the ROS GUI libs). This file is currently needed
# for generating build files appropriate for the qmake spec that was used
# to build Qt. The alternatives provided by configure-ng.py is not
# sufficient to replace pyqtconfig.py yet (see
# https://github.com/qgis/QGIS/pull/1508). Using configure.py is
# deprecated and will be removed with SIP v5, so we do the actual compile
# using the newer configure-ng.py as recommended. In order not to
# interfere with the build using configure-ng.py, we run configure.py in a
# temporary directory and only retain the pyqtconfig.py from that.
require "tmpdir"
dir = Dir.mktmpdir
begin
cp_r(Dir.glob("*"), dir)
cd dir do
system python, "configure.py", *args
inreplace "pyqtconfig.py", "#{HOMEBREW_CELLAR}/#{Formula["cartr/qt4/qt@4"].name}/#{Formula["cartr/qt4/qt@4"].pkg_version}",
Formula["cartr/qt4/qt@4"].opt_prefix
(lib/"python#{version}/site-packages/PyQt4").install "pyqtconfig.py"
end
ensure
remove_entry_secure dir
end
# On Mavericks we want to target libc++, this requires a non default qt makespec
args << "--spec" << "unsupported/macx-clang-libc++" if ENV.compiler == :clang && MacOS.version >= :mavericks
args << "--no-stubs"
system python, "configure-ng.py", *args
system "make"
system "make", "install"
system "make", "clean" # for when building against multiple Pythons
end
end
def caveats
"Phonon support is broken."
end
test do
Pathname("test.py").write <<~EOS
from PyQt4 import QtNetwork
QtNetwork.QNetworkAccessManager().networkAccessible()
EOS
Language::Python.each_python(build) do |python, _version|
system python, "test.py"
end
end
end