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