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