forked from vasole/pymca
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpy2app_setup.py
executable file
·216 lines (196 loc) · 6.75 KB
/
py2app_setup.py
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#
# These Python modules have been developed by V.A. Sole, from the European
# Synchrotron Radiation Facility (ESRF) to build a frozen version of PyMca.
# Given the nature of this work, these module can be considered public domain.
# Therefore redistribution and use in source and binary forms, with or without
# modification, are permitted provided the following disclaimer is accepted:
#
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND THE ESRF ``AS IS'' AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) AND/OR THE ESRF BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
"""
Script for building the PyMca bundle.
For a distributable application Platypus is needed
Usage:
python py2app_setup.py py2app
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import py2app
import os
import sys
#force a clean build
os.system("/bin/rm -rf dist")
os.system("/bin/rm -rf build")
os.system("/bin/rm -rf *.pyc")
BUNDLE_ICON = os.path.join(os.path.abspath('icons'), 'PyMca.icns')
#obtain the current PyMca version from the source file
ffile = open(os.path.join('PyMca5', '__init__.py'), 'r').readlines()
for line in ffile:
if line.startswith('__version__'):
#remove spaces and split
__version__ = "%s" % line.replace(' ','').split("=")[-1][:-1]
#remove " or ' present
__version__ = __version__[1:-1]
break
PyMcaInstallationDir = os.path.abspath("build")
PyMcaDir = os.path.join(PyMcaInstallationDir, "PyMca5")
#make sure PyMca is freshly built
cmd = "setup.py install --distutils --install-lib %s --install-data %s --install-scripts /tmp/scripts" % \
(PyMcaInstallationDir, PyMcaInstallationDir)
cmd = sys.executable + " " + cmd
if os.system(cmd):
print("Error building PyMca")
sys.exit(1)
# awful workaround because py2app picks PyMca form the source directory
os.chdir(PyMcaInstallationDir)
sys.path.insert(0, PyMcaInstallationDir)
pymcapath = PyMcaDir
application=os.path.join(pymcapath, 'PyMcaGui','pymca', "PyMcaMain.py")
#The options below are equivalent to running from the command line
#python py2app_setup.py py2app --packages=matplotlib,ctypes,h5py,Object3D
#probably matplotlib and PyOpenGL are properly detected by py2app
PACKAGES = ['fisx', 'OpenGL','ctypes','matplotlib', 'h5py','hdf5plugin','logging', 'PyMca5']
try:
import PyQt4.Qt
except ImportError:
print("Using PyQt5")
PACKAGES.append("PyQt5")
import silx
PACKAGES.append("silx")
SILX = True
try:
import fabio
PACKAGES.append("fabio")
except:
pass
try:
import mdp
PACKAGES.append('mdp')
except:
pass
try:
import pyopencl
PACKAGES.append('pyopencl')
PYOPENCL = True
except:
PYOPENCL = False
try:
import tomogui
PACKAGES.append('tomogui')
try:
import freeart
PACKAGES.append('freeart')
except:
pass
except:
pass
PY2APP_OPTIONS = {'packages':PACKAGES}
if "PyQt5" in PACKAGES:
PY2APP_OPTIONS['qt_plugins'] = ["cocoa"]
if os.path.exists(BUNDLE_ICON):
PY2APP_OPTIONS['iconfile'] = BUNDLE_ICON
else:
BUNDLE_ICON = None
PY2APP_OPTIONS["excludes"] = ["scipy"]
if sys.version.startswith("2"):
PY2APP_OPTIONS["excludes"].append("PyQt4.uic.port_v3")
PY2APP_OPTIONS["excludes"].append("PyQt5.uic.port_v3")
setup(
app=[application],
options={'py2app':PY2APP_OPTIONS}
)
# move to the proper place
os.system("mv -f ./dist ../dist")
os.chdir(os.path.dirname(PyMcaInstallationDir))
# patch problematic modules
patching_dir = os.path.join(os.getcwd(),
"dist/PyMcaMain.app/Contents/Resources/lib/python%s/" % \
sys.version[:3])
if SILX:
# silx gui._qt module needs to be patched to get rid of uic
initFile = os.path.join(patching_dir, "silx", "gui", "qt", "_qt.py")
print("###################################################################")
print("Patching silx file")
print(initFile)
print("###################################################################")
f = open(initFile, "r")
content = f.readlines()
f.close()
f = open(initFile, "w")
for line in content:
if ("PyQt4.uic" in line) or ("PyQt5.uic" in line):
continue
f.write(line)
f.close()
if PYOPENCL:
# pyopencl __init__.py needs to be patched
initFile = os.path.join(patching_dir, "pyopencl", "__init__.py")
print("###################################################################")
print("Patching pyopencl file")
print(initFile)
print("###################################################################")
f = open(initFile, "r")
content = f.readlines()
f.close()
i = 0
i0 = 0
for line in content:
if "def _find_pyopencl_include_path():" in line:
i0 = i - 1
elif (i0 != 0) and ("}}}" in line):
i1 = i
break
i += 1
f = open(initFile, "w")
for i in range(0, i0):
f.write(content[i])
txt ='\n'
txt +='def _find_pyopencl_include_path():\n'
txt +=' from os.path import dirname, join, realpath\n'
txt +=" return '\"%s\"' % join(realpath(dirname(__file__)), \"cl\")"
txt +="\n"
txt +="\n"
f.write(txt)
for line in content[i1:]:
f.write(line)
f.close()
#Command line call to Platypus ...
platypusFile = '/usr/local/bin/platypus'
if os.path.exists(platypusFile):
import subprocess
args = [platypusFile,
'-R',
'-a',
'PyMca%s' % __version__,
'-o',
'Progress Bar',
'-p',
'/bin/bash',
'-V',
'%s' % __version__,
'-I',
'ESRF.sole.PyMca%s' % __version__,
'-y', #force overwrite
'-f',
os.path.join(os.getcwd(),'dist', 'PyMcaMain.app')]
if BUNDLE_ICON is not None:
args.append('-i')
args.append(BUNDLE_ICON)
args.append(os.path.join(os.getcwd(), 'PlatypusScript'))
process = subprocess.call(args)
py2app_bundle = os.path.join(os.getcwd(), 'PyMca%s.app' % __version__, "Contents", "Resources", "PyMcaMain.app")
if not os.path.exists(py2app_bundle):
print("Forcing copy")
os.system("cp -R ./dist/PyMcaMain.app "+ os.path.dirname(py2app_bundle))