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