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