Fix xerces version for Ubuntu 16.
[dcpomatic.git] / cscript
1 # -*- mode: python -*-
2 #
3 #    Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net>
4 #
5 #    This file is part of DCP-o-matic.
6 #
7 #    DCP-o-matic is free software; you can redistribute it and/or modify
8 #    it under the terms of the GNU General Public License as published by
9 #    the Free Software Foundation; either version 2 of the License, or
10 #    (at your option) any later version.
11 #
12 #    DCP-o-matic is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU General Public License for more details.
16 #
17 #    You should have received a copy of the GNU General Public License
18 #    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 from __future__ import print_function
22 import glob
23 import shutil
24 import os
25 import copy
26 import json
27
28 deb_build_depends = dict()
29
30 deb_build_depends_base = ['debhelper', 'python', 'g++', 'pkg-config', 'libsndfile1-dev', 'libgtk2.0-dev', 'libx264-dev']
31
32 deb_build_depends['16.04'] = copy.deepcopy(deb_build_depends_base)
33 deb_build_depends['16.04'].extend(['libssh-dev'])
34 deb_build_depends['18.04'] = copy.deepcopy(deb_build_depends_base)
35 deb_build_depends['18.04'].extend(['libssh-dev'])
36 deb_build_depends['19.10'] = copy.deepcopy(deb_build_depends_base)
37 deb_build_depends['19.10'].extend(['libssh-dev'])
38 deb_build_depends['20.04'] = copy.deepcopy(deb_build_depends_base)
39 deb_build_depends['20.04'].extend(['libssh-dev'])
40 deb_build_depends['8'] = copy.deepcopy(deb_build_depends_base)
41 deb_build_depends['8'].extend(['libssh-gcrypt-dev'])
42 deb_build_depends['9'] = copy.deepcopy(deb_build_depends_base)
43 deb_build_depends['9'].extend(['libssh-gcrypt-dev'])
44 deb_build_depends['10'] = copy.deepcopy(deb_build_depends_base)
45 deb_build_depends['10'].extend(['libssh-gcrypt-dev'])
46 deb_build_depends['unstable'] = copy.deepcopy(deb_build_depends_base)
47
48 deb_depends = dict()
49 deb_depends_gui = dict()
50
51 deb_depends_base = ['libc6', 'libsndfile1', 'libsamplerate0', 'libxmlsec1', 'libxmlsec1-openssl', 'libgtk2.0-0']
52
53 deb_depends['16.04'] = copy.deepcopy(deb_depends_base)
54 deb_depends['16.04'].extend(['libboost-filesystem1.58.0',
55                              'libboost-thread1.58.0',
56                              'libboost-regex1.58.0',
57                              'libxml++2.6-2v5',
58                              'libboost-date-time1.58.0',
59                              'libzip4',
60                              'libcairomm-1.0-1v5',
61                              'libpangomm-1.4-1v5',
62                              'libwxgtk3.0-0v5',
63                              'libicu55',
64                              'libnettle6',
65                              'libssh-4',
66                              'libx264-148',
67                              'libcurl3',
68                              'libxerces-c3.1'])
69
70 deb_depends['18.04'] = copy.deepcopy(deb_depends_base)
71 deb_depends['18.04'].extend(['libboost-filesystem1.65.1',
72                              'libboost-thread1.65.1',
73                              'libboost-regex1.65.1',
74                              'libboost-date-time1.65.1',
75                              'libcairomm-1.0-1v5',
76                              'libpangomm-1.4-1v5',
77                              'libxml++2.6-2v5',
78                              'libzip4',
79                              'libwxgtk3.0-0v5',
80                              'libicu60',
81                              'libnettle6',
82                              'libssh-4',
83                              'libx264-152',
84                              'libcurl4',
85                              'libpulse0',
86                              'libxerces-c3.2',
87                              'libnanomsg4'])
88
89 deb_depends['19.10'] = copy.deepcopy(deb_depends_base)
90 deb_depends['19.10'].extend(['libboost-filesystem1.67.0',
91                              'libboost-thread1.67.0',
92                              'libboost-regex1.67.0',
93                              'libboost-date-time1.67.0',
94                              'libcairomm-1.0-1v5',
95                              'libpangomm-1.4-1v5',
96                              'libxml++2.6-2v5',
97                              'libzip5',
98                              'libwxgtk3.0-0v5',
99                              'libicu63',
100                              'libnettle6',
101                              'libssh-4',
102                              'libx264-155',
103                              'libcurl4',
104                              'libpulse0',
105                              'libxerces-c3.2',
106                              'libnanomsg4'])
107
108 deb_depends['20.04'] = copy.deepcopy(deb_depends_base)
109 deb_depends['20.04'].extend(['libboost-filesystem1.71.0',
110                              'libboost-thread1.71.0',
111                              'libboost-regex1.71.0',
112                              'libboost-date-time1.71.0',
113                              'libcairomm-1.0-1v5',
114                              'libpangomm-1.4-1v5',
115                              'libxml++2.6-2v5',
116                              'libzip5',
117                              'libwxgtk3.0-gtk3-0v5',
118                              'libicu66',
119                              'libnettle7',
120                              'libssh-4',
121                              'libx264-155',
122                              'libcurl4',
123                              'libpulse0',
124                              'libxerces-c3.2',
125                              'libnanomsg4'])
126
127 deb_depends['8'] = copy.deepcopy(deb_depends_base)
128 deb_depends['8'].extend(['libboost-filesystem1.55.0',
129                          'libboost-thread1.55.0',
130                          'libboost-date-time1.55.0',
131                          'libboost-regex1.55.0',
132                          'libxml++2.6-2',
133                          'libzip2',
134                          'libcairomm-1.0-1',
135                          'libpangomm-1.4-1',
136                          'libwxgtk3.0-0',
137                          'libxcb-xfixes0',
138                          'libxcb-shape0',
139                          'libicu52',
140                          'libnettle4',
141                          'libssh-4',
142                          'libx264-142',
143                          'libcurl3'])
144
145 deb_depends['9'] = copy.deepcopy(deb_depends_base)
146 deb_depends['9'].extend(['libboost-filesystem1.62.0',
147                          'libboost-thread1.62.0',
148                          'libboost-regex1.62.0',
149                          'libboost-date-time1.62.0',
150                          'libxml++2.6-2v5',
151                          'libgtk2.0-0',
152                          'libzip4',
153                          'libcairomm-1.0-1v5',
154                          'libpangomm-1.4-1v5',
155                          'libicu57',
156                          'libssh-4',
157                          'libssh-gcrypt-4',
158                          'libnettle6',
159                          'libx264-148',
160                          'libcurl3',
161                          'libxerces-c3.2'])
162
163 deb_depends_gui['9'] = [ 'libwxgtk3.0-0v5',
164                          'libxcb-xfixes0',
165                          'libxcb-shape0',
166                          'libasound2',
167                          'libpulse0' ]
168
169 deb_depends['10'] = copy.deepcopy(deb_depends_base)
170 deb_depends['10'].extend(['libboost-filesystem1.67.0',
171                           'libboost-thread1.67.0',
172                           'libboost-regex1.67.0',
173                           'libboost-date-time1.67.0',
174                           'libxml++2.6-2v5',
175                           'libgtk2.0-0',
176                           'libzip4',
177                           'libcairomm-1.0-1v5',
178                           'libpangomm-1.4-1v5',
179                           'libicu63',
180                           'libssh-4',
181                           'libssh-gcrypt-4',
182                           'libnettle6',
183                           'libx264-155',
184                           'libcurl4',
185                           'libxerces-c3.2',
186                           'libnanomsg5'])
187
188 deb_depends_gui['10'] = [ 'libwxgtk3.0-0v5',
189                           'libxcb-xfixes0',
190                           'libxcb-shape0',
191                           'libasound2',
192                           'libpulse0' ]
193
194 deb_depends['unstable'] = copy.deepcopy(deb_depends_base)
195 deb_depends['unstable'].extend(['libboost-filesystem1.67.0',
196                                 'libboost-thread1.67.0',
197                                 'libboost-regex1.67.0',
198                                 'libboost-date-time1.67.0',
199                                 'libxml++2.6-2v5',
200                                 'libgtk2.0-0',
201                                 'libzip4',
202                                 'libicu63',
203                                 'libnettle6',
204                                 'libx264-155',
205                                 'libcurl4',
206                                 'libxerces-c3.2'])
207
208 def can_build_disk(target):
209     # We can build dcpomatic2_disk on platforms that have Boost process and can build the lwext4
210     # library.  For now, just whitelist good ones here.
211     #
212     # - Lots of Linux distros don't have a new enough boost (1.64 or above)
213     # - On Centos 6 we can't build lwext4 because it needs a new CMake which Centos 6's g++ is not new enough to build.
214     # - On Centos 7 there is a build error in lwext4 related to __unused
215     if target.platform == 'windows':
216         return True
217     if target.platform == 'osx':
218         return True
219     if target.platform == 'linux':
220         if target.distro == 'ubuntu' and target.version in ['18.04', '19.10', '20.04']:
221             return True
222         if target.distro == 'debian' and target.version == '10':
223             return True
224         if target.detail == 'appimage':
225             return True 
226         if target.distro == 'fedora' and target.version == '31':
227             return True
228         if target.distro == 'centos' and target.version == '8':
229             return True
230     return False
231
232 def packages(name, packages, f):
233     s = '%s: ' % name
234     for p in packages:
235         s += str(p) + ', '
236     print(s[:-2], file=f)
237
238 def make_control(debian_version, bits, filename, debug, gui):
239     f = open(filename, 'w')
240     print('Source: dcpomatic', file=f)
241     print('Section: video', file=f)
242     print('Priority: extra', file=f)
243     print('Maintainer: Carl Hetherington <carl@dcpomatic.com>', file=f)
244     packages('Build-Depends', deb_build_depends[debian_version], f)
245     print('Standards-Version: 3.9.3', file=f)
246     print('Homepage: https://dcpomatic.com/', file=f)
247     print('', file=f)
248     print('Package: dcpomatic', file=f)
249     if bits == 32:
250         print('Architecture: i386', file=f)
251     else:
252         print('Architecture: amd64', file=f)
253
254     pkg = deb_depends[debian_version]
255     if gui and debian_version in deb_depends_gui:
256         pkg.extend(deb_depends_gui[debian_version])
257
258     packages('Depends', pkg, f)
259
260     print('Description: Generator of Digital Cinema Packages (DCPs)', file=f)
261     print('  DCP-o-matic generates Digital Cinema Packages (DCPs) from videos, images,', file=f)
262     print('  sound and subtitle files.  You can use it to make content for playback on DCI-compliant', file=f)
263     print('  cinema projectors.', file=f)
264
265     if debug:
266         print('', file=f)
267         print('Package: dcpomatic-dbg', file=f)
268         if bits == 32:
269             print('Architecture: i386', file=f)
270         else:
271             print('Architecture: amd64', file=f)
272         print('Section: debug', file=f)
273         print('Priority: extra', file=f)
274         packages('Depends', pkg, f)
275         print('Description: debugging symbols for dcpomatic', file=f)
276         print('  This package contains the debugging symbols for dcpomatic.', file=f)
277         print('', file=f)
278
279 def make_spec(filename, version, target, options, requires=None):
280     """Make a .spec file for a RPM build"""
281     tools = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(filename))), "src/tools")
282     f = open(filename, 'w')
283     print('Summary:A program that generates Digital Cinema Packages (DCPs) from video and audio files', file=f)
284     print('Name:dcpomatic2', file=f)
285     print('Version:%s' % version, file=f)
286     print('Release:1%{?dist}', file=f)
287     print('License:GPL', file=f)
288     print('Group:Applications/Multimedia', file=f)
289     print('URL:https://dcpomatic.com/', file=f)
290     if requires is not None:
291         print('Requires:%s' % requires, file=f)
292     print('', file=f)
293     print('%description', file=f)
294     print('DCP-o-matic generates Digital Cinema Packages (DCPs) from video and audio ', file=f)
295     print('files for presentation on DCI-compliant digital projectors.', file=f)
296     print('', file=f)
297     print('%files', file=f)
298     print('%{_bindir}/dcpomatic2', file=f)
299     print('%{_bindir}/dcpomatic2_batch', file=f)
300     print('%{_bindir}/dcpomatic2_cli', file=f)
301     print('%{_bindir}/dcpomatic2_create', file=f)
302     print('%{_bindir}/dcpomatic2_kdm', file=f)
303     print('%{_bindir}/dcpomatic2_server', file=f)
304     print('%{_bindir}/dcpomatic2_server_cli', file=f)
305     print('%{_bindir}/dcpomatic2_kdm_cli', file=f)
306     print('%{_bindir}/dcpomatic2_player', file=f)
307     print('%{_bindir}/dcpomatic2_playlist', file=f)
308     print('%{_bindir}/dcpomatic2_openssl', file=f)
309     if options['variant'] == 'swaroop-studio':
310         print('%{_bindir}/dcpomatic2_ecinema', file=f)
311         print('%{_bindir}/dcpomatic2_uuid', file=f)
312     if os.path.exists(os.path.join(tools, "dcpomatic2_disk")):
313         print('%{_bindir}/dcpomatic2_disk', file=f)
314         print('%{_bindir}/dcpomatic2_disk_writer', file=f)
315     print('%{_datadir}/applications/dcpomatic2.desktop', file=f)
316     print('%{_datadir}/applications/dcpomatic2_batch.desktop', file=f)
317     print('%{_datadir}/applications/dcpomatic2_server.desktop', file=f)
318     print('%{_datadir}/applications/dcpomatic2_kdm.desktop', file=f)
319     print('%{_datadir}/applications/dcpomatic2_player.desktop', file=f)
320     print('%{_datadir}/applications/dcpomatic2_playlist.desktop', file=f)
321     print('%{_datadir}/dcpomatic2/dcpomatic2_server_small.png', file=f)
322     print('%{_datadir}/dcpomatic2/select.png', file=f)
323     print('%{_datadir}/dcpomatic2/sequence.png', file=f)
324     print('%{_datadir}/dcpomatic2/snap.png', file=f)
325     print('%{_datadir}/dcpomatic2/zoom.png', file=f)
326     print('%{_datadir}/dcpomatic2/zoom_all.png', file=f)
327     print('%{_datadir}/dcpomatic2/tick.png', file=f)
328     print('%{_datadir}/dcpomatic2/no_tick.png', file=f)
329     print('%{_datadir}/dcpomatic2/me.jpg', file=f)
330     print('%{_datadir}/dcpomatic2/LiberationSans-Regular.ttf', file=f)
331     print('%{_datadir}/dcpomatic2/LiberationSans-Italic.ttf', file=f)
332     print('%{_datadir}/dcpomatic2/LiberationSans-Bold.ttf', file=f)
333     print('%{_datadir}/dcpomatic2/splash.png', file=f)
334     for r in ['128x128', '16x16', '22x22', '256x256', '32x32', '48x48', '512x512', '64x64']:
335         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2.png' % r, file=f)
336         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_batch.png' % r, file=f)
337         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_kdm.png' % r, file=f)
338         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_server.png' % r, file=f)
339         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_player.png' % r, file=f)
340         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_playlist.png' % r, file=f)
341     for l in ['de_DE', 'es_ES', 'fr_FR', 'it_IT', 'sv_SE', 'nl_NL', 'ru_RU', 'pl_PL', 'da_DK',
342               'pt_PT', 'pt_BR', 'sk_SK', 'cs_CZ', 'uk_UA', 'zh_CN', 'tr_TR', 'ko_KR']:
343         print('%%{_datadir}/locale/%s/LC_MESSAGES/dcpomatic2.mo' % l, file=f)
344         print('%%{_datadir}/locale/%s/LC_MESSAGES/libdcpomatic2-wx.mo' % l, file=f)
345         print('%%{_datadir}/locale/%s/LC_MESSAGES/libdcpomatic2.mo' % l, file=f)
346     print('', file=f)
347     print('%prep', file=f)
348     print('rm -rf $RPM_BUILD_DIR/dcpomatic-%s' % version, file=f)
349     print('tar xjf $RPM_SOURCE_DIR/dcpomatic-%s.tar.bz2' % version, file=f)
350     print('%build', file=f)
351     print('cd dcpomatic-%s' % version, file=f)
352     print('export PKG_CONFIG_PATH=%s/lib/pkgconfig:%s/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig' % (target.directory, target.directory), file=f)
353     print('CXXFLAGS="-I%s/include" LDFLAGS="-L%s/lib" ./waf configure --prefix=%%{buildroot}/usr --install-prefix=/usr %s' %
354           (target.directory, target.directory, configure_options(target, options)), file=f)
355     print('./waf', file=f)
356     print('%install', file=f)
357     print('cd dcpomatic-%s' % version, file=f)
358     print('./waf install', file=f)
359     print('/bin/cp %s/src/openssl/apps/openssl %%{buildroot}/usr/bin/dcpomatic2_openssl' % target.directory, file=f)
360     print('', file=f)
361     print('%post', file=f)
362     print('/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :', file=f)
363     print('', file=f)
364     print('%postun', file=f)
365     print('if [ $1 -eq 0 ] ; then', file=f)
366     print('    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null', file=f)
367     print('    /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :', file=f)
368     print('fi', file=f)
369     print('', file=f)
370     print('%posttrans', file=f)
371     print('/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :', file=f)
372
373 def dependencies(target, options):
374
375     if target.platform == 'linux':
376         ffmpeg_options = { 'shared': False }
377     else:
378         ffmpeg_options = {}
379
380     if target.platform == 'windows' and target.version == 'xp':
381         deps = [('ffmpeg-cdist', '5783efa', ffmpeg_options)]
382     elif target.platform != 'linux' or target.distro != 'arch':
383         deps = [('ffmpeg-cdist', '20d3ddf', ffmpeg_options)]
384     else:
385         # Use distro-provided FFmpeg on Arch
386         deps = []
387
388     # Let's use C++11 mode if we can
389     cpp_lib_options = {'force-cpp11': True} if (
390             (target.platform == 'osx' and target.bits == 64) or
391             (target.platform == 'windows')) else {}
392
393     deps.append(('libdcp', None, cpp_lib_options))
394     deps.append(('libsub', None, cpp_lib_options))
395     deps.append(('leqm-nrt', 'carl'))
396     deps.append(('rtaudio', 'carl'))
397     # We get our OpenSSL libraries from the environment, but we
398     # also need a patched openssl binary to make certificates.
399     # This dependency is to get that binary, which is added into
400     # the appropriate place later
401     deps.append(('openssl', 'carl'))
402     if can_build_disk(target):
403         deps.append(('lwext4', 'carl2'))
404
405     return deps
406
407 option_defaults = { "gui": True, "variant": None }
408
409 def configure_options(target, options):
410     opt = ''
411
412     if not (target.platform == 'linux' and target.distro == 'ubuntu' and target.version == '18.04'):
413         # Currently we only build tests on Ubuntu 18.04
414         opt += ' --disable-tests'
415
416     if target.debug:
417         opt += ' --enable-debug'
418     if target.platform == 'windows':
419         opt += ' --target-windows'
420     elif target.platform == 'linux':
421         opt += ' --static-dcpomatic --static-wxwidgets --static-ffmpeg --static-dcp --static-sub --static-cxml'
422         if target.distro == 'centos':
423             if target.version == '6.5':
424                 opt += ' --static-boost --static-xmlpp'
425             elif target.version == '7':
426                 opt += ' --workaround-gssapi'
427                 # Centos 7 ships with glibmm 2.50.0 which requires C++11
428                 # but its compiler (gcc 4.8.5) defaults to C++97.  Go figure.
429                 # I worry that this will cause ABI problems but I don't have
430                 # a better solution.
431                 opt += ' --force-cpp11'
432     elif target.platform == 'osx' and target.bits == 64:
433         opt += ' --force-cpp11'
434
435     if not options['gui']:
436         opt += ' --disable-gui'
437
438     if options['variant'] is not None:
439         opt += ' --variant=%s' % options['variant']
440
441     # Build Windows debug versions with static linking as I think gdb works better then
442     if target.debug and target.platform == 'windows':
443         opt += ' --static-dcpomatic'
444
445     if can_build_disk(target):
446        opt += ' --enable-disk'
447
448     return opt
449
450 def build(target, options):
451     if target.platform == 'flatpak':
452         target.checkout_dependencies()
453         prefix = 'https://dcpomatic.com/deps'
454         modules = []
455         modules.append({'name': 'libzip',
456                         'buildsystem': 'cmake',
457                         'sources': [{'type': 'archive',
458                                      'url': '%s/libzip-1.4.0.tar.xz' % prefix,
459                                      'sha256': 'e508aba025f5f94b267d5120fc33761bcd98440ebe49dbfe2ed3df3afeacc7b1'}]})
460         modules.append({'name': 'libsigc++',
461                         'sources': [{'type': 'archive',
462                                      'url': '%s/libsigc++-2.10.0.tar.xz' % prefix,
463                                      'sha256': 'f843d6346260bfcb4426259e314512b99e296e8ca241d771d21ac64f28298d81'}]})
464         modules.append({'name': 'glibmm',
465                         'sources': [{'type': 'archive',
466                                      'url': '%s/glibmm-2.48.1.tar.xz' % prefix,
467                                      'sha256': 'dc225f7d2f466479766332483ea78f82dc349d59399d30c00de50e5073157cdf'}]})
468         modules.append({'name': 'cairomm',
469                         'sources': [{'type': 'archive',
470                                      'url': '%s/cairomm-1.12.2.tar.gz' % prefix,
471                                      'sha256': '45c47fd4d0aa77464a75cdca011143fea3ef795c4753f6e860057da5fb8bd599'}]})
472         modules.append({'name': 'pangomm',
473                         'sources': [{'type': 'archive',
474                                      'url': '%s/pangomm-2.40.1.tar.xz' % prefix,
475                                      'sha256': '9762ee2a2d5781be6797448d4dd2383ce14907159b30bc12bf6b08e7227be3af'}]})
476         modules.append({'name': 'libxml++',
477                         'sources': [{'type': 'archive',
478                                      'url': '%s/libxml++-2.40.1.tar.xz' % prefix,
479                                      'sha256': '4ad4abdd3258874f61c2e2a41d08e9930677976d303653cd1670d3e9f35463e9'}]})
480         modules.append({'name': 'xmlsec1',
481                         'sources': [{'type': 'archive',
482                                      'url': '%s/xmlsec1-1.2.25.tar.gz' % prefix,
483                                      'sha256': '967ca83edf25ccb5b48a3c4a09ad3405a63365576503bf34290a42de1b92fcd2'}]})
484         modules.append({'name': 'openjpeg2',
485                         'buildsystem': 'cmake',
486                         'sources': [{'type': 'dir', 'path': os.path.abspath('../openjpeg2-cdist')}]})
487         modules.append({'name': 'boost',
488                         'buildsystem': 'simple',
489                         'build-commands': [
490                             './bootstrap.sh --prefix=/app',
491                             './b2 install'
492                         ],
493                         'sources': [{'type': 'archive',
494                                      'url': '%s/boost_1_66_0.tar.bz2' % prefix,
495                                      'sha256': '5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9'}]})
496         modules.append({'name': 'asdcplib',
497                         'buildsystem': 'simple',
498                         'build-commands': [
499                             './waf configure --prefix=/app  --libdir=/app/lib build install'
500                         ],
501                         'sources': [{'type': 'dir', 'path': os.path.abspath('../asdcplib-carl')}]})
502         modules.append({'name': 'locked_sstream',
503                         'buildsystem': 'simple',
504                         'build-commands': [
505                             './waf configure --prefix=/app build install'
506                         ],
507                         'sources': [{'type': 'dir', 'path': os.path.abspath('../locked_sstream')}]})
508         modules.append({'name': 'libcxml',
509                         'buildsystem': 'simple',
510                         'build-commands': [
511                             './waf configure --prefix=/app  --libdir=/app/lib build install'
512                         ],
513                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libcxml')}]})
514         modules.append({'name': 'libdcp',
515                         'buildsystem': 'simple',
516                         'build-commands': [
517                             './waf configure --prefix=/app --libdir=/app/lib build install'
518                         ],
519                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libdcp')}]})
520         modules.append({'name': 'libsub',
521                         'buildsystem': 'simple',
522                         'build-commands': [
523                             './waf configure --prefix=/app --libdir=/app/lib build install'
524                         ],
525                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libsub')}]})
526         modules.append({'name': 'rtaudio',
527                         'build-options': {
528                         'config-opts': [
529                             '--prefix=/app',
530                             '--with-pulse',
531                             '--with-alsa'
532                         ]
533                         },
534                         'sources': [{'type': 'dir', 'path': os.path.abspath('../rtaudio-cdist')}]})
535         modules.append({'name': 'wxwidgets',
536                         'sources': [{'type': 'archive',
537                                      'url': '%s/wxWidgets-3.0.3.tar.bz2' % prefix,
538                                      'sha256': '08c8033f48ec1b23520f036cde37b5ae925a6a65f137ded665633ca159b9307b'}]})
539         modules.append({'name': 'libssh',
540                         'buildsystem': 'cmake',
541                         'builddir': True,
542                         'sources': [{'type': 'archive',
543                                      'url': '%s/libssh-0.7.5.tar.xz' % prefix,
544                                      'sha256': '54e86dd5dc20e5367e58f3caab337ce37675f863f80df85b6b1614966a337095'}]})
545         modules.append({'name': 'dcpomatic',
546                         'buildsystem': 'simple',
547                         'build-commands': [
548                             './waf configure --prefix=/app build install'
549                          ],
550                         'build-options': {
551                            'build-args': ['--share=network']
552                         },
553                         'sources': [{'type': 'dir', 'path': os.path.abspath('.')}]})
554         desc = {'app-id': 'com.dcpomatic.DCP-o-matic',
555                 'runtime': 'org.gnome.Sdk',
556                 'runtime-version': '3.26',
557                 'sdk': 'org.gnome.Sdk',
558                 'command': 'dcpomatic2',
559                 'finish-args': ['--socket=x11', '--share=ipc', '--share=network', '--socket=pulseaudio', '--filesystem=host'],
560                 'modules': modules}
561         os.makedirs('build/platform')
562         with open('build/com.dcpomatic.DCP-o-matic.json', 'w') as outfile:
563             json.dump(desc, outfile)
564         target.command('%s --repo=build/platform/repo build/platform/flatpak build/com.dcpomatic.DCP-o-matic.json' % target.flatpak_builder())
565     else:
566         target.command('./waf configure --prefix=%s %s' % (target.directory, configure_options(target, options)))
567         target.command('./waf')
568
569         if target.platform == 'linux' or target.platform == 'osx':
570             target.command('./waf install')
571
572 def package_windows(target):
573     identifier = ''
574     if target.version is not None:
575         identifier = '%s.' % target.version
576     identifier += '%d' % target.bits
577     shutil.copyfile('build/platform/windows/installer.%s.nsi' % identifier, 'build/platform/windows/installer2.%s.nsi' % identifier)
578     target.command('sed -i "s~%%resources%%~%s/platform/windows~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
579     target.command('sed -i "s~%%graphics%%~%s/graphics~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
580     target.command('sed -i "s~%%static_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.windows_prefix, identifier))
581     target.command('sed -i "s~%%cdist_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.directory, identifier))
582     target.command('sed -i "s~%%mingw%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.environment_prefix, identifier))
583     target.command('sed -i "s~%%binaries%%~%s/build~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
584     target.command('sed -i "s~%%bits%%~32~g" build/platform/windows/installer2.%s.nsi' % identifier)
585     target.command('makensis build/platform/windows/installer2.%s.nsi' % identifier)
586     return os.path.abspath(glob.glob('build/platform/windows/*%s*.exe' % target.bits)[0])
587
588 def package_debian(target, cpu, version, options):
589     make_control(target.version, target.bits, 'debian/control', target.debug, options['gui'])
590     target.command('./waf dist')
591     f = open('debian/files', 'w')
592     print('dcpomatic_%s-1_%s.deb video extra' % (version, cpu), file=f)
593     shutil.rmtree('build/deb', ignore_errors=True)
594
595     os.makedirs('build/deb')
596     os.chdir('build/deb')
597     shutil.move('../../dcpomatic-%s.tar.bz2' % version, 'dcpomatic_%s.orig.tar.bz2' % version)
598     target.command('tar xjf dcpomatic_%s.orig.tar.bz2' % version)
599     os.chdir('dcpomatic-%s' % version)
600     target.command('dch -b -v %s-1 "New upstream release."' % version)
601     target.set('CDIST_LINKFLAGS', target.get('LINKFLAGS'))
602     target.set('CDIST_CXXFLAGS', target.get('CXXFLAGS'))
603     target.set('CDIST_PKG_CONFIG_PATH', target.get('PKG_CONFIG_PATH'))
604     target.set('CDIST_DIRECTORY', target.directory)
605
606     target.set('CDIST_CONFIGURE', '"' + configure_options(target, options) + '"')
607     if target.debug:
608         target.set('CDIST_DEBUG_PACKAGE', '--dbg-package=dcpomatic-dbg')
609
610     target.command('dpkg-buildpackage -uc -us')
611
612     debs = []
613     for p in glob.glob('../*.deb'):
614         debs.append(os.path.abspath(p))
615
616     return debs
617
618 def package_rpm(target, cpu, version, options):
619     topdir = os.path.realpath('build/rpmbuild')
620     os.makedirs('%s/BUILD' % topdir)
621     os.makedirs('%s/RPMS' % topdir)
622     os.makedirs('%s/SOURCES' % topdir)
623     os.makedirs('%s/SPECS' % topdir)
624     os.makedirs('%s/SRPMS' % topdir)
625
626     target.command('./waf dist')
627     shutil.copyfile(
628         "%s/src/dcpomatic/dcpomatic-%s.tar.bz2" % (target.directory, version),
629         "%s/SOURCES/dcpomatic-%s.tar.bz2" % (topdir, version)
630         )
631
632     requires = None
633     if target.distro == 'mageia':
634         requires = "lib64xmlsec1-devel"
635
636     make_spec('build/platform/linux/dcpomatic2.spec', version, target, options, requires)
637     cmd = 'rpmbuild --define "_topdir %s" -bb build/platform/linux/dcpomatic2.spec' % topdir
638     target.command(cmd)
639     rpms = []
640
641     if cpu == "amd64":
642         cpu = "x86_64"
643     else:
644         cpu = "i686"
645
646     for p in glob.glob('%s/RPMS/%s/*.rpm' % (topdir, cpu)):
647         rpms.append(os.path.abspath(p))
648
649     return rpms
650
651 def make_appimage(target, nice_name, internal_name, version):
652     nice_filename = nice_name.replace(' ', '_')
653     os.makedirs('build/%s.AppDir/usr/bin' % nice_filename)
654     target.command('cp %s/bin/%s build/%s.AppDir/usr/bin' % (target.directory, internal_name, nice_filename))
655     target.command('cp %s/src/openssl/apps/openssl build/%s.AppDir/usr/bin/dcpomatic2_openssl' % (target.directory, nice_filename))
656     target.command('mkdir -p build/%s.AppDir/usr/share/libdcp' % nice_filename)
657     target.command('cp -r %s/share/libdcp/xsd build/%s.AppDir/usr/share/libdcp/' % (target.directory, nice_filename))
658     with open('build/%s.AppDir/AppRun' % nice_filename, 'w') as f:
659         print('#!/bin/bash', file=f)
660         print('export APPDIR="$(dirname "$(readlink -f "$0")")"', file=f)
661         print('export PATH=$APPDIR/usr/bin:$PATH', file=f)
662         print('export XDG_DATA_DIRS="$APPDIR/usr/share/:/usr/share/:$XDG_DATA_DIRS"', file=f)
663         print('"$APPDIR"/usr/bin/%s $@' % internal_name, file=f)
664     target.command('chmod a+rx build/%s.AppDir/AppRun' % nice_filename)
665     with open('build/%s.AppDir/%s.desktop' % (nice_filename, internal_name), 'w') as f:
666         print('[Desktop Entry]', file=f)
667         print('Type=Application', file=f)
668         print('Categories=AudioVideo;', file=f)
669         print('Name=%s' % nice_name, file=f)
670         print('Icon=%s' % internal_name, file=f)
671     target.command('cp graphics/linux/256/%s.png build/%s.AppDir' % (internal_name, nice_filename))
672     target.command('linuxdeploy-x86_64.AppImage --appdir build/%s.AppDir' % nice_filename)
673     target.command('appimagetool-x86_64.AppImage build/%s.AppDir' % nice_filename)
674     target.command('mv %s-x86_64.AppImage build/%s-%s-x86_64.AppImage' % (nice_filename, nice_filename, version))
675     return os.path.abspath('build/%s-%s-x86_64.AppImage' % (nice_filename, version))
676
677 def package(target, version, options):
678     """version: DCP-o-matic version string"""
679     if target.platform == 'windows':
680         return package_windows(target)
681     elif target.platform == 'linux':
682         if target.detail == 'appimage':
683             out = []
684             out.append(make_appimage(target, 'DCP-o-matic', 'dcpomatic2', version))
685             out.append(make_appimage(target, 'DCP-o-matic Player', 'dcpomatic2_player', version))
686             out.append(make_appimage(target, 'DCP-o-matic Playlist Editor', 'dcpomatic2_playlist', version))
687             out.append(make_appimage(target, 'DCP-o-matic KDM Creator', 'dcpomatic2_kdm', version))
688             out.append(make_appimage(target, 'DCP-o-matic Batch Converter', 'dcpomatic2_batch', version))
689             out.append(make_appimage(target, 'DCP-o-matic Encode Server', 'dcpomatic2_server', version))
690             return out
691         else:
692             if target.bits == 32:
693                 cpu = 'i386'
694             else:
695                 cpu = 'amd64'
696
697             if target.distro == 'debian' or target.distro == 'ubuntu':
698                 return package_debian(target, cpu, version, options)
699             elif target.distro == 'centos' or target.distro == 'fedora' or target.distro == 'mageia':
700                 return package_rpm(target, cpu, version, options)
701     elif target.platform == 'osx' and target.bits is None:
702         target.command('bash platform/osx/make_dmg.sh %s %s universal no %s %s' % (target.environment_prefix, target.directory, target.apple_id, target.apple_password))
703         return [os.path.abspath(x) for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg')]
704     elif target.platform == 'osx' and target.bits == 64:
705         target.command('bash platform/osx/make_dmg.sh %s %s thin %s %s' % (target.environment_prefix, target.directory, target.apple_id, target.apple_password))
706         return [os.path.abspath(x) for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg')]
707     elif target.platform == 'docker':
708         shutil.copyfile(target.deb, 'build/platform/docker')
709         f = open('build/platform/docker/Dockerfile', 'w')
710         print('FROM debian:jessie', file=f)
711         print('MAINTAINER carl@dcpomatic.com', file=f)
712         print('ADD build/platform/docker/dcpomatic_%s-1_amd64.deb /tmp' % (version, version), file=f)
713         print('RUN apt-get -o Acquire:http::Timeout="5" update; exit 0', file=f)
714         print('RUN dpkg -i /tmp/dcpomatic_*.deb; exit 0', file=f)
715         print('RUN apt-get -y -f install', file=f)
716         print('RUN apt-get clean', file=f)
717         print('EXPOSE 6192', file=f)
718         print('CMD ["/usr/bin/dcpomatic2_server_cli", "--verbose"]', file=f)
719         f.close()
720         target.command('docker build build/platform/docker -t dcpomatic-server:%s' % version)
721         target.command('docker save dcpomatic-server:%s -o dcpomatic-server-%s-docker.tar' % (version, version))
722     elif target.platform == 'flatpak':
723         target.command('%s build-bundle build/platform/repo build/dcpomatic_%s.flatpak com.dcpomatic.DCP-o-matic' % (target.flatpak(), version))
724         return os.path.abspath('build/dcpomatic_%s.flatpak' % version)
725
726 def make_pot(target):
727     target.command('./waf pot')
728     return [os.path.abspath('build/src/lib/libdcpomatic.pot'),
729             os.path.abspath('build/src/wx/libdcpomatic-wx.pot'),
730             os.path.abspath('build/src/tools/dcpomatic.pot')]
731
732 def make_manual(target):
733     os.chdir('doc/manual')
734     target.command('make')
735     target.command('pdflatex colour.tex')
736     return [os.path.abspath('pdf'), os.path.abspath('html'), os.path.abspath('colour.pdf')]
737
738 def test(target, test):
739     if target.platform != 'windows':
740         target.set('LC_ALL', 'C')
741         cmd = 'run/tests '
742         if target.debug:
743             cmd += '--backtrace '
744         if test is not None:
745             cmd += '--run_test=%s' % test
746         target.command(cmd)