Bump libdcp for fix to GH #20, a spurious rejection of a KDM.
[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', 'v1.8.82'))
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         target.checkout_dependencies()
570         prefix = 'https://dcpomatic.com/deps'
571         modules = []
572         modules.append({'name': 'libzip',
573                         'buildsystem': 'cmake',
574                         'sources': [{'type': 'archive',
575                                      'url': '%s/libzip-1.4.0.tar.xz' % prefix,
576                                      'sha256': 'e508aba025f5f94b267d5120fc33761bcd98440ebe49dbfe2ed3df3afeacc7b1'}]})
577         modules.append({'name': 'libsigc++',
578                         'sources': [{'type': 'archive',
579                                      'url': '%s/libsigc++-2.10.0.tar.xz' % prefix,
580                                      'sha256': 'f843d6346260bfcb4426259e314512b99e296e8ca241d771d21ac64f28298d81'}]})
581         modules.append({'name': 'glibmm',
582                         'sources': [{'type': 'archive',
583                                      'url': '%s/glibmm-2.48.1.tar.xz' % prefix,
584                                      'sha256': 'dc225f7d2f466479766332483ea78f82dc349d59399d30c00de50e5073157cdf'}]})
585         modules.append({'name': 'cairomm',
586                         'sources': [{'type': 'archive',
587                                      'url': '%s/cairomm-1.12.2.tar.gz' % prefix,
588                                      'sha256': '45c47fd4d0aa77464a75cdca011143fea3ef795c4753f6e860057da5fb8bd599'}]})
589         modules.append({'name': 'pangomm',
590                         'sources': [{'type': 'archive',
591                                      'url': '%s/pangomm-2.40.1.tar.xz' % prefix,
592                                      'sha256': '9762ee2a2d5781be6797448d4dd2383ce14907159b30bc12bf6b08e7227be3af'}]})
593         modules.append({'name': 'libxml++',
594                         'sources': [{'type': 'archive',
595                                      'url': '%s/libxml++-2.40.1.tar.xz' % prefix,
596                                      'sha256': '4ad4abdd3258874f61c2e2a41d08e9930677976d303653cd1670d3e9f35463e9'}]})
597         modules.append({'name': 'xmlsec1',
598                         'sources': [{'type': 'archive',
599                                      'url': '%s/xmlsec1-1.2.25.tar.gz' % prefix,
600                                      'sha256': '967ca83edf25ccb5b48a3c4a09ad3405a63365576503bf34290a42de1b92fcd2'}]})
601         modules.append({'name': 'openjpeg2',
602                         'buildsystem': 'cmake',
603                         'sources': [{'type': 'dir', 'path': os.path.abspath('../openjpeg2-cdist')}]})
604         modules.append({'name': 'boost',
605                         'buildsystem': 'simple',
606                         'build-commands': [
607                             './bootstrap.sh --prefix=/app',
608                             './b2 install'
609                         ],
610                         'sources': [{'type': 'archive',
611                                      'url': '%s/boost_1_66_0.tar.bz2' % prefix,
612                                      'sha256': '5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9'}]})
613         modules.append({'name': 'asdcplib',
614                         'buildsystem': 'simple',
615                         'build-commands': [
616                             './waf configure --prefix=/app  --libdir=/app/lib build install'
617                         ],
618                         'sources': [{'type': 'dir', 'path': os.path.abspath('../asdcplib-carl')}]})
619         modules.append({'name': 'locked_sstream',
620                         'buildsystem': 'simple',
621                         'build-commands': [
622                             './waf configure --prefix=/app build install'
623                         ],
624                         'sources': [{'type': 'dir', 'path': os.path.abspath('../locked_sstream')}]})
625         modules.append({'name': 'libcxml',
626                         'buildsystem': 'simple',
627                         'build-commands': [
628                             './waf configure --prefix=/app  --libdir=/app/lib build install'
629                         ],
630                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libcxml')}]})
631         modules.append({'name': 'libdcp',
632                         'buildsystem': 'simple',
633                         'build-commands': [
634                             './waf configure --prefix=/app --libdir=/app/lib build install'
635                         ],
636                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libdcp')}]})
637         modules.append({'name': 'libsub',
638                         'buildsystem': 'simple',
639                         'build-commands': [
640                             './waf configure --prefix=/app --libdir=/app/lib build install'
641                         ],
642                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libsub')}]})
643         modules.append({'name': 'rtaudio',
644                         'build-options': {
645                         'config-opts': [
646                             '--prefix=/app',
647                             '--with-pulse',
648                             '--with-alsa'
649                         ]
650                         },
651                         'sources': [{'type': 'dir', 'path': os.path.abspath('../rtaudio-cdist')}]})
652         modules.append({'name': 'wxwidgets',
653                         'sources': [{'type': 'archive',
654                                      'url': '%s/wxWidgets-3.0.3.tar.bz2' % prefix,
655                                      'sha256': '08c8033f48ec1b23520f036cde37b5ae925a6a65f137ded665633ca159b9307b'}]})
656         modules.append({'name': 'libssh',
657                         'buildsystem': 'cmake',
658                         'builddir': True,
659                         'sources': [{'type': 'archive',
660                                      'url': '%s/libssh-0.7.5.tar.xz' % prefix,
661                                      'sha256': '54e86dd5dc20e5367e58f3caab337ce37675f863f80df85b6b1614966a337095'}]})
662         modules.append({'name': 'dcpomatic',
663                         'buildsystem': 'simple',
664                         'build-commands': [
665                             './waf configure --prefix=/app build install'
666                          ],
667                         'build-options': {
668                            'build-args': ['--share=network']
669                         },
670                         'sources': [{'type': 'dir', 'path': os.path.abspath('.')}]})
671         desc = {'app-id': 'com.dcpomatic.DCP-o-matic',
672                 'runtime': 'org.gnome.Sdk',
673                 'runtime-version': '3.26',
674                 'sdk': 'org.gnome.Sdk',
675                 'command': 'dcpomatic2',
676                 'finish-args': ['--socket=x11', '--share=ipc', '--share=network', '--socket=pulseaudio', '--filesystem=host'],
677                 'modules': modules}
678         os.makedirs('build/platform')
679         with open('build/com.dcpomatic.DCP-o-matic.json', 'w') as outfile:
680             json.dump(desc, outfile)
681         target.command('%s --repo=build/platform/repo build/platform/flatpak build/com.dcpomatic.DCP-o-matic.json' % target.flatpak_builder())
682     elif target.platform != 'linux' or target.detail == 'appimage' or not for_package:
683         target.command('./waf configure --prefix=%s %s' % (target.directory, configure_options(target, options, for_package)))
684         target.command('./waf')
685         target.command('./waf install')
686
687 def package_windows(target):
688     identifier = ''
689     if target.version is not None:
690         identifier = '%s.' % target.version
691     identifier += '%d' % target.bits
692     shutil.copyfile('build/platform/windows/installer.%s.nsi' % identifier, 'build/platform/windows/installer2.%s.nsi' % identifier)
693     target.command('sed -i "s~%%resources%%~%s/platform/windows~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
694     target.command('sed -i "s~%%graphics%%~%s/graphics~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
695     target.command('sed -i "s~%%static_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.windows_prefix, identifier))
696     target.command('sed -i "s~%%cdist_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.directory, identifier))
697     target.command('sed -i "s~%%mingw%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.environment_prefix, identifier))
698     target.command('sed -i "s~%%binaries%%~%s/build~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
699     target.command('sed -i "s~%%bits%%~32~g" build/platform/windows/installer2.%s.nsi' % identifier)
700     target.command('makensis build/platform/windows/installer2.%s.nsi' % identifier)
701     return os.path.abspath(glob.glob('build/platform/windows/*%s*.exe' % target.bits)[0])
702
703 def package_debian(target, cpu, version, options):
704     make_control(target.version, target.bits, 'debian/control', target.debug, options['gui'])
705     if target.version != '9' and target.version != '16.04' and options['gui']:
706         with open('debian/postinst', 'w') as f:
707             print('#!/bin/sh', file=f)
708             # Get the required capability to write to disks
709             print('setcap "cap_dac_override+ep cap_sys_admin+ep" /usr/bin/dcpomatic2_disk_writer', file=f)
710     target.command('./waf dist')
711     f = open('debian/files', 'w')
712     suffix = '' if options['gui'] else '-cli'
713     print(f'dcpomatic{suffix}_{version}-1_{cpu}.deb video extra', file=f)
714     shutil.rmtree('build/deb', ignore_errors=True)
715
716     os.makedirs('build/deb')
717     os.chdir('build/deb')
718     shutil.move('../../dcpomatic-%s.tar.bz2' % version, 'dcpomatic_%s.orig.tar.bz2' % version)
719     target.command('tar xjf dcpomatic_%s.orig.tar.bz2' % version)
720     os.chdir('dcpomatic-%s' % version)
721     target.set('EMAIL', 'carl@dcpomatic.com')
722     target.command('dch -b -v %s-1 "New upstream release."' % version)
723     target.set('CDIST_LINKFLAGS', target.get('LINKFLAGS'))
724     target.set('CDIST_CXXFLAGS', target.get('CXXFLAGS'))
725     target.set('CDIST_PKG_CONFIG_PATH', target.get('PKG_CONFIG_PATH'))
726     target.set('CDIST_DIRECTORY', target.directory)
727
728     target.set('CDIST_CONFIGURE', '"' + configure_options(target, options, for_package=True) + '"')
729     target.set('CDIST_PACKAGE', f'dcpomatic{suffix}')
730     target.set('CDIST_WX_VERSION', "3.2" if target.version == "23.04" else "3.1")
731     if not target.debug:
732         target.set('CDIST_DEBUG_PACKAGE_FLAG', '--no-ddebs')
733
734     target.command('dpkg-buildpackage -uc -us')
735
736     debs = []
737     for p in glob.glob('../*.deb'):
738         debs.append(os.path.abspath(p))
739
740     return debs
741
742 def package_rpm(target, cpu, version, options):
743     topdir = os.path.realpath('build/rpmbuild')
744     os.makedirs('%s/BUILD' % topdir)
745     os.makedirs('%s/RPMS' % topdir)
746     os.makedirs('%s/SOURCES' % topdir)
747     os.makedirs('%s/SPECS' % topdir)
748     os.makedirs('%s/SRPMS' % topdir)
749
750     target.command('./waf dist')
751     shutil.copyfile(
752         "%s/src/dcpomatic/dcpomatic-%s.tar.bz2" % (target.directory, version),
753         "%s/SOURCES/dcpomatic-%s.tar.bz2" % (topdir, version)
754         )
755
756     requires = None
757     if target.distro == 'mageia':
758         requires = "lib64xmlsec1-devel lib64canberra-gtk0 libcap-utils"
759
760     make_spec('dcpomatic2.spec', version, target, options, requires)
761     cmd = 'rpmbuild --define "_topdir %s" -bb dcpomatic2.spec' % topdir
762     target.command(cmd)
763     rpms = []
764
765     if cpu == "amd64":
766         cpu = "x86_64"
767     else:
768         cpu = "i686"
769
770     for p in glob.glob('%s/RPMS/%s/*.rpm' % (topdir, cpu)):
771         rpms.append(os.path.abspath(p))
772
773     return rpms
774
775 def make_appimage(target, nice_name, internal_name, version, extra_binaries=None):
776     nice_filename = nice_name.replace(' ', '_')
777     appdir = f'build/{nice_filename}.AppDir'
778     os.makedirs(f'{appdir}/usr/bin')
779     target.command(f'cp {target.directory}/bin/{internal_name} {appdir}/usr/bin')
780     target.command(f'cp {target.directory}/src/openssl/apps/openssl {appdir}/usr/bin/dcpomatic2_openssl')
781     target.command(f'cp {target.directory}/bin/dcpverify {appdir}/usr/bin/dcpomatic2_verify')
782     target.command(f'cp {target.directory}/bin/dcpkdm {appdir}/usr/bin/dcpomatic2_kdm_inspect')
783     if extra_binaries:
784         for bin in extra_binaries:
785             target.command(f'cp {target.directory}/bin/{bin} {appdir}/usr/bin')
786     target.command(f'mkdir -p {appdir}/usr/share/libdcp')
787     target.command(f'cp -r {target.directory}/share/dcpomatic2 {appdir}/usr/share/')
788     target.command(f'cp -r {target.directory}/share/libdcp/xsd {appdir}/usr/share/libdcp/')
789     target.command(f'cp -r {target.directory}/share/libdcp/tags {appdir}/usr/share/libdcp/')
790     target.command(f'cp {target.directory}/share/libdcp/ratings {appdir}/usr/share/libdcp/')
791     lib = 'usr/lib/x86_64-linux-gnu'
792     target.command(f'mkdir -p build/{nice_filename}.AppDir/{lib}/gdk-pixbuf-2.0/2.10.0')
793     target.command(f'cp -a /{lib}/gdk-pixbuf-2.0 build/{nice_filename}.AppDir/usr/lib/x86_64-linux-gnu/')
794     target.command('apt update')
795     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']:
796         target.command(f'apt download {package}')
797         target.command(f'dpkg-deb -x {package}*.deb {appdir}')
798     target.command(f'glib-compile-schemas {appdir}/usr/share/glib-2.0/schemas')
799     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')
800     # Stop anything loading from outside the AppImage
801     target.command(f'sed -i -e "s|/usr|/xxx|g" {appdir}/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2')
802
803     if internal_name == 'dcpomatic2_disk':
804         target.command(f'mkdir -p {appdir}/usr/share/polkit-1/actions')
805         target.command(f'cp {target.directory}/share/polkit-1/actions/com.dcpomatic.write-drive.policy {appdir}/usr/share/polkit-1/actions')
806
807     with open(f'{appdir}/AppRun', 'w') as f:
808         print('#!/bin/bash', file=f)
809         print('export PATH=$APPDIR/usr/bin:$PATH', file=f)
810         print('export XDG_DATA_DIRS="$APPDIR/usr/share/:/usr/share/:$XDG_DATA_DIRS"', file=f)
811         print('export GDK_PIXBUF_MODULEDIR=$(readlink -f "$APPDIR"/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/ )', file=f)
812         print('export GDK_PIXBUF_MODULE_FILE=$(readlink -f "$APPDIR"/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders.cache )', file=f)
813         print('export LD_LIBRARY_PATH=$GDK_PIXBUF_MODULEDIR:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu', file=f)
814         print(f'"$APPDIR"/usr/bin/{internal_name} $@', file=f)
815     target.command(f'chmod a+rx {appdir}/AppRun')
816     with open(f'{appdir}/{internal_name}.desktop', 'w') as f:
817         print('[Desktop Entry]', file=f)
818         print('Type=Application', file=f)
819         print('Categories=AudioVideo;', file=f)
820         print(f'Name={nice_name}', file=f)
821         print(f'Icon={internal_name}', file=f)
822     target.command(f'cp graphics/linux/256/{internal_name}.png {appdir}')
823     target.command(f'linuxdeploy-x86_64.AppImage --appdir {appdir}')
824     target.command(f'appimagetool-x86_64.AppImage {appdir}')
825     target.command(f'mv {nice_filename}-x86_64.AppImage build/{nice_filename}-{version}-x86_64.AppImage')
826     return os.path.abspath(f'build/{nice_filename}-{version}-x86_64.AppImage')
827
828 def package(target, version, options):
829     """version: DCP-o-matic version string"""
830     if target.platform == 'windows':
831         return package_windows(target)
832     elif target.platform == 'linux':
833         if target.detail == 'appimage':
834             out = []
835             out.append(make_appimage(target, 'DCP-o-matic', 'dcpomatic2', version, ('dcpomatic2_map', 'dcpomatic2_cli')))
836             out.append(make_appimage(target, 'DCP-o-matic Player', 'dcpomatic2_player', version))
837             out.append(make_appimage(target, 'DCP-o-matic Playlist Editor', 'dcpomatic2_playlist', version))
838             out.append(make_appimage(target, 'DCP-o-matic KDM Creator', 'dcpomatic2_kdm', version))
839             out.append(make_appimage(target, 'DCP-o-matic Batch Converter', 'dcpomatic2_batch', version))
840             out.append(make_appimage(target, 'DCP-o-matic Encode Server', 'dcpomatic2_server', version))
841             out.append(make_appimage(target, 'DCP-o-matic Combiner', 'dcpomatic2_combiner', version))
842             out.append(make_appimage(target, 'DCP-o-matic Editor', 'dcpomatic2_editor', version))
843             return out
844         else:
845             if target.bits == 32:
846                 cpu = 'i386'
847             else:
848                 cpu = 'amd64'
849
850             if target.distro == 'debian' or target.distro == 'ubuntu':
851                 return package_debian(target, cpu, version, options)
852             elif target.distro == 'centos' or target.distro == 'fedora' or target.distro == 'mageia':
853                 return package_rpm(target, cpu, version, options)
854     elif target.platform == 'osx':
855         archs = '-a ' + ' -a '.join(f'{t.arch}/{t.deployment}' for t in target.sub_targets)
856         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)
857         if 'part' in options:
858             cmd += ' -b ' + options['part']
859         target.command(cmd)
860         return glob.glob('build/platform/osx/DCP-o-matic*.dmg')
861     elif target.platform == 'docker':
862         shutil.copyfile(target.deb, 'build/platform/docker')
863         f = open('build/platform/docker/Dockerfile', 'w')
864         print('FROM debian:jessie', file=f)
865         print('MAINTAINER carl@dcpomatic.com', file=f)
866         print('ADD build/platform/docker/dcpomatic_%s-1_amd64.deb /tmp' % (version, version), file=f)
867         print('RUN apt-get -o Acquire:http::Timeout="5" update; exit 0', file=f)
868         print('RUN dpkg -i /tmp/dcpomatic_*.deb; exit 0', file=f)
869         print('RUN apt-get -y -f install', file=f)
870         print('RUN apt-get clean', file=f)
871         print('EXPOSE 6192', file=f)
872         print('CMD ["/usr/bin/dcpomatic2_server_cli", "--verbose"]', file=f)
873         f.close()
874         target.command('docker build build/platform/docker -t dcpomatic-server:%s' % version)
875         target.command('docker save dcpomatic-server:%s -o dcpomatic-server-%s-docker.tar' % (version, version))
876     elif target.platform == 'flatpak':
877         target.command('%s build-bundle build/platform/repo build/dcpomatic_%s.flatpak com.dcpomatic.DCP-o-matic' % (target.flatpak(), version))
878         return os.path.abspath('build/dcpomatic_%s.flatpak' % version)
879
880 def make_pot(target):
881     target.command('./waf pot')
882     return [os.path.abspath('build/src/lib/libdcpomatic.pot'),
883             os.path.abspath('build/src/wx/libdcpomatic-wx.pot'),
884             os.path.abspath('build/src/tools/dcpomatic.pot')]
885
886 def make_manual(target):
887     target.command('make -C doc/manual LIBDCP=../../../libdcp')
888     os.chdir('doc/manual')
889     target.command('pdflatex colour.tex')
890     return [os.path.abspath('pdf'), os.path.abspath('html'), os.path.abspath('colour.pdf')]
891
892 def test(target, options, test):
893     target.set('LC_ALL', 'C')
894     if target.platform == 'windows':
895         cmd = 'run\\tests '
896     else:
897         cmd = 'run/tests --check --log_level=test_suite '
898     if target.debug:
899         cmd += '--backtrace '
900     if test is not None:
901         cmd += '-t %s' % test
902     target.command(cmd)