forked from NeoGeographyToolkit/BinaryBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make-dist.py
executable file
·406 lines (354 loc) · 17.7 KB
/
make-dist.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
#!/usr/bin/env python
from __future__ import print_function
import sys
code = -1
# Must have this check before importing other BB modules
if sys.version_info < (2, 6, 1):
print('\nERROR: Must use Python 2.6.1 or greater.')
sys.exit(code)
from BinaryDist import grep, DistManager, DistPrefix, run
import time, logging, copy, re, os
import os.path as P
from optparse import OptionParser
from BinaryBuilder import die
from BinaryDist import get_platform, required_libs
from glob import glob
# These are the libraries we're allowed to get from the base system.
# But we must not ship them as they cause trouble, especially libc. A
# wildcard will be used after each of them.
LIB_SYSTEM_LIST = '''
AGL.framework/Versions/A/AGL
Accelerate.framework/Versions/A/Accelerate
AppKit.framework/Versions/C/AppKit
ApplicationServices.framework/Versions/A/ApplicationServices
Carbon.framework/Versions/A/Carbon
Cocoa.framework/Versions/A/Cocoa
CoreFoundation.framework/Versions/A/CoreFoundation
CoreServices.framework/Versions/A/CoreServices
Foundation.framework/Versions/C/Foundation
GLUT.framework/Versions/A/GLUT
OpenGL.framework/Versions/A/OpenGL
QuickTime.framework/Versions/A/QuickTime
Security.framework/Versions/A/Security
SystemConfiguration.framework/Versions/A/SystemConfiguration
vecLib.framework/Versions/A/vecLib
CoreMedia.framework/Versions/A/CoreMedia
AVFoundation.framework/Versions/A/AVFoundation
QuartzCore.framework/Versions/A/QuartzCore
CoreVideo.framework/Versions/A/CoreVideo
IOKit.framework/Versions/A/IOKit
XCTest.framework/Versions/A/XCTest
DiskArbitration.framework/Versions/A/DiskArbitration
CoreText.framework/Versions/A/CoreText
QTKit.framework/Versions/A/QTKit
CoreGraphics.framework/Versions/A/CoreGraphics
CFNetwork.framework/Versions/A/CFNetwork
ImageIO.framework/Versions/A/ImageIO
VideoDecodeAcceleration.framework/Versions/A/VideoDecodeAcceleration
AudioToolbox.framework/Versions/A/AudioToolbox
VideoToolbox.framework/Versions/A/VideoToolbox
libobjc.A.dylib
libSystem.B.dylib
libmathCommon.A.dylib
libICE.so
libSM.so
libX11.so
libXau.so
libXext.so
libXi.so
libXmu.so
libXrandr.so
libXrender.so
libXt.so
libXxf86vm.so
libc.so
libdl.so
libm.so
libpthread.so.0
librt.so
libuuid.so
libc-
libdbus-1.so.3.14.14
libsystemd.so
'''.split()
if get_platform().os == 'linux':
# Exclude this from shipping for Linux, but not for Mac, as then things don't work
LIB_SYSTEM_LIST += ['libresolv.so', 'libresolv-']
# Lib files that we want to include that don't get pickep up automatically.
MANUAL_LIBS = '''libpcl_io_ply libopenjp2 libnabo libcurl libQt5Widgets_debug libQt5PrintSupport_debug libQt5Gui_debug libQt5Core_debug libMagickCore-6.Q16 libMagickWand-6.Q16 libicuuc libswresample libx264 libcsmapi libproj libproj.0 libGLX libGLdispatch'''.split()
# Prefixes of libs that we always ship
LIB_SHIP_PREFIX = '''libc++. libgfortran. libquadmath. libgcc_s. libgomp. libgobject-2.0. libgthread-2.0. libgmodule-2.0. libglib-2.0. libicui18n. libicuuc. libicudata. libdc1394. libxcb-xlib. libxcb.'''.split() # libssl. libcrypto. libk5crypto. libcom_err. libkrb5support. libkeyutils. libresolv.
if get_platform().os != 'linux':
# Need to have these on the Mac
LIB_SHIP_PREFIX += ['libresolv.', 'libcups.', 'libc++abi.', 'libcrypto.']
USGSCSM_PLUGINS = ['libusgscsm']
def tarball_name():
arch = get_platform()
if opt.version is not None:
return '%s-%s-%s-%s%s' % (opt.name, opt.version, arch.machine, arch.dist_name, arch.dist_version)
else:
git = run('git', 'describe', '--always', '--dirty', output=False, raise_on_failure=False)
if git is None: git = ''
if len(git): git = '%s' % git.strip()
return '%s-%s-%s%s-%s%s' % (opt.name, arch.machine, arch.dist_name, arch.dist_version, time.strftime('%Y-%m-%d_%H-%M-%S', time.localtime()), git)
def sibling_to(dir, name):
''' get a pathname for a directory 'name' which is a sibling of directory 'dir' '''
return P.join(P.dirname(dir), P.basename(name))
# Keep this in sync with the function in libexec-funcs.sh
def isis_version(isisroot):
# Check the ISIS version
if P.isfile(P.join(isisroot,'version')):
f = open(P.join(isisroot,'version'),'r')
raw = f.readline().strip()
version = raw.split('#')[0].strip().split('.') # Strip out comment first
return ".".join(version[0:3])
# TODO(oalexan1): The isis headers will move from here the miniconda dir at some point
header = P.join(isisroot, 'include/isis/Constants.h')
m = grep('version\("(.*?)"', header)
if not m:
raise Exception('Unable to locate ISIS version header (expected at %s). Perhaps your ISISROOT (%s) is incorrect?'
% (header, isisroot))
return m[0].group(1)
def libc_version():
locations=['/lib/x86_64-linux-gnu/libc.so.6', '/lib/i386-linux-gnu/libc.so.6',
'/lib/i686-linux-gnu/libc.so.6', '/lib/libc.so.6', '/lib64/libc.so.6', '/lib32/libc.so.6']
for library in locations:
if P.isfile(library):
output = run(library).split('\n')[0]
return re.search('[^0-9.]*([0-9.]*).*',output).groups()
return "FAILED"
if __name__ == '__main__':
parser = OptionParser(usage='%s installdir' % sys.argv[0])
parser.add_option('--debug', dest='loglevel', default=logging.INFO, action='store_const', const=logging.DEBUG, help='Turn on debug messages')
parser.add_option('--include', dest='include', default='./whitelist', help='A file that lists the binaries for the dist')
parser.add_option('--asp-deps-dir', dest='asp_deps_dir', default='', help='Path to where conda installed the ASP dependencies. Default: $HOME/miniconda3/envs/asp_deps.')
parser.add_option('--debug-build', dest='debug_build', default=False, action='store_true', help='Create a build having debug symbols')
parser.add_option('--vw-build', dest='vw_build', default=False, action='store_true', help='Set to true when packaging a non-ASP build')
parser.add_option('--keep-temp', dest='keeptemp', default=False, action='store_true', help='Keep tmp distdir around for debugging')
parser.add_option('--set-version', dest='version', default=None, help='Set the version number to use for the generated tarball')
parser.add_option('--set-name', dest='name', default='StereoPipeline', help='Tarball name for this dist')
parser.add_option('--isisroot', dest='isisroot', default=None, help='Use a locally-installed isis at this root')
parser.add_option('--force-continue', dest='force_continue', default=False, action='store_true', help='Continue despite errors. Not recommended.')
global opt
(opt, args) = parser.parse_args()
def usage(msg, code=-1):
parser.print_help()
print('\n%s' % msg)
sys.exit(code)
if not args:
usage('Missing required argument: installdir')
if opt.asp_deps_dir == "":
opt.asp_deps_dir = P.join(os.environ["HOME"], 'miniconda3/envs/asp_deps')
if not P.exists(opt.asp_deps_dir):
die('Cannot find the ASP dependencies directory installed with conda at ' + \
opt.asp_deps_dir + '. Specify it via --asp-deps-dir.')
# If the user specified a VW build, update some default options.
if opt.vw_build:
if opt.include == './whitelist':
opt.include = './whitelist_vw'
if opt.name == 'StereoPipeline':
opt.name = 'VisionWorkbench'
installdir = P.realpath(args[0])
if not (P.exists(installdir) and P.isdir(installdir)):
usage('Invalid installdir %s (not a directory)' % installdir)
if opt.isisroot is not None and not P.isdir(opt.isisroot):
parser.print_help()
die('\nIllegal argument to --isisroot: path does not exist')
# Ensure asp_deps/bin is in the path, to be able to find chrpath, bzip2, etc.
if "PATH" not in os.environ: os.environ["PATH"] = ""
os.environ["PATH"] = P.join(opt.asp_deps_dir, 'bin') + os.pathsep + os.environ["PATH"]
logging.basicConfig(level=opt.loglevel)
lib_ext = '.dylib'
if get_platform().os == 'linux':
lib_ext = '.so'
wrapper_file = 'libexec-helper.sh'
if (opt.vw_build):
wrapper_file = 'libexec-helper_vw.sh'
INSTALLDIR = DistPrefix(installdir)
mgr = DistManager(tarball_name(), wrapper_file, INSTALLDIR, opt.asp_deps_dir)
try:
ISISROOT = P.join(INSTALLDIR)
SEARCHPATH = [INSTALLDIR.lib(), opt.asp_deps_dir + '/lib',
opt.asp_deps_dir + '/x86_64-conda-linux-gnu/sysroot/usr/lib64',
'/usr/lib/x86_64-linux-gnu', '/usr/lib']
print('Search path = ' + str(SEARCHPATH))
# Bug fix for osg3. Must set LD_LIBRARY_PATH for ldd to later
# work correctly on Ubuntu 13.10.
if get_platform().os == 'linux':
if "PATH" not in os.environ:
os.environ["PATH"] = ""
os.environ["PATH"] = P.join(opt.asp_deps_dir, 'bin') + os.pathsep + \
os.environ["PATH"]
if "LD_LIBRARY_PATH" not in os.environ:
os.environ["LD_LIBRARY_PATH"] = ""
os.environ["LD_LIBRARY_PATH"] = INSTALLDIR.lib() + \
os.pathsep + os.environ["LD_LIBRARY_PATH"]
if opt.isisroot is not None:
ISISROOT = opt.isisroot
if opt.include == 'all':
mgr.add_directory(INSTALLDIR, hardlink=True)
mgr.make_tarball()
sys.exit(0)
print('Adding requested files')
sys.stdout.flush()
with open(opt.include, 'r') as f:
for line in f:
line = line.strip()
if line == "":
continue # skip empty lines
mgr.add_glob(line, [INSTALLDIR, opt.asp_deps_dir])
# Add some platform specific bugfixes
if get_platform().os == 'linux':
mgr.sym_link_lib('libproj.so', 'libproj.0.so')
mgr.add_glob("lib/libQt5XcbQpa.*", [INSTALLDIR, opt.asp_deps_dir])
if not opt.vw_build:
print('Adding the ISIS libraries')
sys.stdout.flush()
isis_secondary_set = set()
for plugin in glob(P.join(INSTALLDIR,'lib','*.plugin')):
with open(plugin,'r') as f:
for line in f:
line = line.split()
if not len( line ):
continue
if line[0] == 'Library':
isis_secondary_set.add("lib/lib"+line[2]+"*")
for library in isis_secondary_set:
mgr.add_glob(library, [INSTALLDIR, opt.asp_deps_dir])
# Add all libraries that link to isis, that is, specific instrument libs
for lib in glob(P.join(opt.asp_deps_dir, 'lib','*')):
isIsisLib = False
try:
search_path = INSTALLDIR + "/lib" + ":" + opt.asp_deps_dir + "/lib"
req = required_libs(lib, search_path)
for key in req.keys():
if 'isis' in key:
isIsisLib = True
except:
pass
if isIsisLib:
mgr.add_glob(lib, [opt.asp_deps_dir])
print('Adding ISIS and GLIBC version check')
sys.stdout.flush()
with mgr.create_file('libexec/constants.sh') as f: # Create constants file
if not opt.vw_build:
print('BAKED_ISIS_VERSION="%s"' % isis_version(opt.asp_deps_dir), file=f)
print('\tFound ISIS version %s' % isis_version(opt.asp_deps_dir))
print('BAKED_LIBC_VERSION="%s"' % libc_version(), file=f)
if get_platform().os == 'linux':
# glibc is for Linux only
print('\tFound GLIBC version %s' % libc_version())
print('Adding libraries')
found_set = set()
for i in range(2,4):
print('\tPass %i to get dependencies of libraries' % i)
sys.stdout.flush()
deplist_copy = copy.deepcopy(mgr.deplist)
# Force the use of these files
for lib in MANUAL_LIBS:
deplist_copy[lib + lib_ext] = ''
for lib_dir in SEARCHPATH + ['/lib64']:
for lib in deplist_copy:
lib_path = P.join(lib_dir, lib)
if P.exists(lib_path):
if lib in found_set:
# Already found, no need to search
# further, as then a copy of this may be
# found again in a different part of the
# system.
continue
found_set.add(lib)
mgr.add_library(lib_path)
continue
# Handle the shiplist separately. This will also add more dependencies
print('\tAdding forced-ship libraries')
sys.stdout.flush()
found_set = set()
found_and_to_be_removed = []
for copy_lib in LIB_SHIP_PREFIX:
mgr_keys = mgr.deplist.copy().keys() # make a copy of the keys
for soname in mgr_keys:
if soname.startswith(copy_lib):
# Bugfix: Do an exhaustive search, as same prefix can
# refer to multiple libraries, e.g., libgfortran.so.3 and
# libgfortran.so.1, and sometimes the wrong one is picked.
if mgr.deplist[soname] in found_set:
continue
found_set.add(mgr.deplist[soname])
if mgr.deplist[soname] is not None:
mgr.add_library(mgr.deplist[soname])
else:
print("Skip empty deplist for: " + soname)
found_and_to_be_removed.append(soname)
mgr.remove_deps(found_and_to_be_removed)
print('\tRemoving system libs')
sys.stdout.flush()
mgr.remove_deps(LIB_SYSTEM_LIST)
print('\tFinding deps in search path')
sys.stdout.flush()
mgr.resolve_deps(nocopy = [P.join(ISISROOT, 'lib'), P.join(ISISROOT, '3rdParty', 'lib')],
copy = SEARCHPATH + \
['/opt/X11/lib',
'/usr/lib',
'/usr/lib64',
'/lib64',
'/usr/lib/x86_64-linux-gnu/mesa',
'/usr/lib/x86_64-linux-gnu/mesa-egl',
'/lib/x86_64-linux-gnu',
'/usr/lib/x86_64-linux-gnu',
'/System/Library/Frameworks',
'/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks',
'/opt/local/lib/libomp'
])
# TODO: Including system libraries rather than libaries we build ourselves may be dangerous!
if mgr.deplist:
if not opt.force_continue:
# For each lib, print who uses it:
for lib in mgr.deplist.keys():
if lib in mgr.parentlib.keys():
print("Library " + lib + " is not found, and is needed by " \
+ " ".join(mgr.parentlib[lib]) + "\n" )
raise Exception('Failed to find some libs in any of our dirs:\n\t%s' % \
'\n\t'.join(mgr.deplist.keys()))
else:
print("Warning: missing libs: " + '\n\t'.join(mgr.deplist.keys()) + "\n")
print('Adding USGS CSM plugins')
sys.stdout.flush()
for lib_dir in SEARCHPATH:
for lib in USGSCSM_PLUGINS:
lib_path = P.join(lib_dir, lib + lib_ext)
if P.exists(lib_path):
mgr.add_library(lib_path, add_deps = False, is_plugin = True)
continue
print('Adding files in dist-add and python3.6')
mgr.add_directory('dist-add')
# ISIS expects a full Python distribution to be shipped. For
# now, that is achieved as follows. A conda env named
# 'python3.6' is created having nothing but this Python
# version. That env is copied to the BinaryBuilder
# directory. Now we copy it to the build to ship. This is a
# fragile solution. At least ship only some subdirs, not the
# whole python3.6 directory which appears to have more things
# than what we need.
mgr.add_directory('python3.6', subdirs = ['bin', 'lib', 'share', 'include', 'ssl'])
sys.stdout.flush()
print('\tRemoving system libs')
sys.stdout.flush()
mgr.remove_already_added(LIB_SYSTEM_LIST)
print('Baking RPATH and stripping binaries')
sys.stdout.flush()
# Create relative paths from SEARCHPATH. Use only the first two items.
rel_search_path = list(map(lambda path: P.relpath(path, INSTALLDIR), SEARCHPATH[0:2]))
mgr.bake(rel_search_path)
debug_list_name = ''
try:
debuglist = mgr.find_filter('-name', '*.debug')
debug_list_name = debuglist.name
except:
pass
mgr.make_tarball(exclude = [debug_list_name])
if P.getsize(debug_list_name) > 0 and opt.debug_build:
mgr.make_tarball(include = debug_list_name, name = '%s-debug.tar.bz2' % mgr.tarname)
finally:
if not opt.keeptemp:
mgr.remove_tempdir()