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