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