Build for Ubuntu 24.04.
[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.png', file=f)
461     print('%{_datadir}/dcpomatic2/me.jpg', file=f)
462     print('%{_datadir}/dcpomatic2/add_black.png', file=f)
463     print('%{_datadir}/dcpomatic2/add_white.png', file=f)
464     print('%{_datadir}/dcpomatic2/pause_black.png', file=f)
465     print('%{_datadir}/dcpomatic2/pause_white.png', file=f)
466     print('%{_datadir}/dcpomatic2/LiberationSans-Regular.ttf', file=f)
467     print('%{_datadir}/dcpomatic2/LiberationSans-Italic.ttf', file=f)
468     print('%{_datadir}/dcpomatic2/LiberationSans-Bold.ttf', file=f)
469     print('%{_datadir}/dcpomatic2/splash.png', file=f)
470     for r in ['128x128', '16x16', '22x22', '256x256', '32x32', '48x48', '512x512', '64x64']:
471         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2.png' % r, file=f)
472         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_batch.png' % r, file=f)
473         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_editor.png' % r, file=f)
474         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_kdm.png' % r, file=f)
475         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_server.png' % r, file=f)
476         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_player.png' % r, file=f)
477         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_playlist.png' % r, file=f)
478         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_disk.png' % r, file=f)
479         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_combiner.png' % r, file=f)
480     for l in ['de_DE', 'es_ES', 'fr_FR', 'it_IT', 'sv_SE', 'nl_NL', 'ru_RU', 'pl_PL', 'da_DK',
481               'pt_PT', 'pt_BR', 'sk_SK', 'cs_CZ', 'uk_UA', 'zh_CN', 'tr_TR', 'sl_SI', 'hu_HU',
482               'ka_KA', 'fa_IR']:
483         print('%%{_datadir}/locale/%s/LC_MESSAGES/dcpomatic2.mo' % l, file=f)
484         print('%%{_datadir}/locale/%s/LC_MESSAGES/libdcpomatic2-wx.mo' % l, file=f)
485         print('%%{_datadir}/locale/%s/LC_MESSAGES/libdcpomatic2.mo' % l, file=f)
486     print('%{_datadir}/libdcp/tags/*', file=f)
487     print('%{_datadir}/libdcp/xsd/*', file=f)
488     print('%{_datadir}/libdcp/ratings', file=f)
489     print('%{_datadir}/polkit-1/actions/com.dcpomatic.write-drive.policy', file=f)
490     print('', file=f)
491     print('%prep', file=f)
492     print('rm -rf $RPM_BUILD_DIR/dcpomatic-%s' % version, file=f)
493     print('tar xjf $RPM_SOURCE_DIR/dcpomatic-%s.tar.bz2' % version, file=f)
494     print('%build', file=f)
495     print('cd dcpomatic-%s' % version, file=f)
496     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)
497     print('CXXFLAGS="-I%s/include" LDFLAGS="-L%s/lib" ./waf configure --prefix=%%{buildroot}/usr --destdir=/usr %s' %
498           (target.directory, target.directory, configure_options(target, options, for_package=True)), file=f)
499     print('./waf', file=f)
500     print('%install', file=f)
501     print('cd dcpomatic-%s' % version, file=f)
502     print('./waf install', file=f)
503     print('/bin/cp %s/src/openssl/apps/openssl %%{buildroot}/usr/bin/dcpomatic2_openssl' % target.directory, file=f)
504     print('/bin/mkdir -p %{buildroot}/usr/share/libdcp', file=f)
505     print('/bin/cp -r %s/src/libdcp/tags %%{buildroot}/usr/share/libdcp' % target.directory, file=f)
506     print('/bin/cp -r %s/src/libdcp/xsd %%{buildroot}/usr/share/libdcp' % target.directory, file=f)
507     print('/bin/cp %s/src/libdcp/ratings %%{buildroot}/usr/share/libdcp' % target.directory, file=f)
508     print('/bin/mv %s/bin/dcpverify %%{buildroot}/usr/bin/dcpomatic2_verify' % target.directory, file=f)
509     print('/bin/mv %s/bin/dcpkdm %%{buildroot}/usr/bin/dcpomatic2_kdm_inspect' % target.directory, file=f)
510     print('', file=f)
511     print('%post', file=f)
512     print('/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :', file=f)
513     print('setcap "cap_dac_override+ep cap_sys_admin+ep" /usr/bin/dcpomatic2_disk_writer', file=f)
514     print('', file=f)
515     print('%postun', file=f)
516     print('if [ $1 -eq 0 ] ; then', file=f)
517     print('    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null', file=f)
518     print('    /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :', file=f)
519     print('fi', file=f)
520     print('', file=f)
521     print('%posttrans', file=f)
522     print('/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :', file=f)
523
524 def dependencies(target, options):
525
526     if target.platform == 'linux':
527         ffmpeg_options = { 'shared': False }
528     else:
529         ffmpeg_options = {}
530
531     if target.platform != 'linux' or target.distro != 'arch':
532         deps = [('ffmpeg', '7276e269a93c2ae30e302c34708e8095ac5475e8', ffmpeg_options)]
533     else:
534         # Use distro-provided FFmpeg on Arch
535         deps = []
536
537     deps.append(('libdcp', 'v1.8.97'))
538     deps.append(('libsub', 'v1.6.47'))
539     deps.append(('leqm-nrt', '30dcaea1373ac62fba050e02ce5b0c1085797a23'))
540     deps.append(('rtaudio', 'f619b76'))
541     # We get our OpenSSL libraries from the environment, but we
542     # also need a patched openssl binary to make certificates.
543     # This dependency is to get that binary, which is added into
544     # the appropriate place later
545     deps.append(('openssl', '54298369cacfe0ae01c5aa42ace8a463fd2e7a2e'))
546     if can_build_disk(target):
547         deps.append(('lwext4', 'ab082923a791b58478d1d9939d65a0583566ac1f'))
548     deps.append(('ffcmp', '53c853d2935de3f2b0d53777529e48c102afd237'))
549
550     return deps
551
552 option_defaults = { "gui": True, "variant": None }
553
554 def configure_options(target, options, for_package=False):
555     opt = ' --warnings-are-errors'
556
557     if for_package or not (
558             (target.platform == 'linux' and target.distro == 'ubuntu' and target.version in ['18.04', '22.04']) or
559             (target.platform == 'osx') or
560             (target.platform == 'windows')
561         ):
562         # Currently we only build tests on macOS, Windows, and some Ubuntu versions
563         opt += ' --disable-tests'
564
565     if target.debug:
566         opt += ' --enable-debug'
567     if target.platform == 'windows':
568         opt += f' --target-windows-{target.bits}'
569     elif target.platform == 'linux':
570         opt += ' --static-dcpomatic --static-wxwidgets --static-ffmpeg --static-dcp --static-sub --static-cxml'
571         if target.distro == 'centos':
572             if target.version == '6.5':
573                 opt += ' --static-boost --static-xmlpp'
574             elif target.version == '7':
575                 opt += ' --workaround-gssapi'
576
577     if not options['gui']:
578         opt += ' --disable-gui'
579
580     if options['variant'] is not None:
581         opt += ' --variant=%s' % options['variant']
582
583     # Build Windows debug versions with static linking as I think gdb works better then
584     if target.debug and target.platform == 'windows':
585         opt += ' --static-dcpomatic'
586
587     if can_build_disk(target):
588         opt += ' --enable-disk'
589
590     if target.platform == 'osx' and target.arch == 'arm64':
591         opt += ' --target-macos-arm64 --wx-config=%s/wx-config' % target.bin
592
593     return opt
594
595 def build(target, options, for_package):
596     if target.platform == 'flatpak':
597         target.checkout_dependencies()
598         prefix = 'https://dcpomatic.com/deps'
599         modules = []
600         modules.append({'name': 'libzip',
601                         'buildsystem': 'cmake',
602                         'sources': [{'type': 'archive',
603                                      'url': '%s/libzip-1.4.0.tar.xz' % prefix,
604                                      'sha256': 'e508aba025f5f94b267d5120fc33761bcd98440ebe49dbfe2ed3df3afeacc7b1'}]})
605         modules.append({'name': 'libsigc++',
606                         'sources': [{'type': 'archive',
607                                      'url': '%s/libsigc++-2.10.0.tar.xz' % prefix,
608                                      'sha256': 'f843d6346260bfcb4426259e314512b99e296e8ca241d771d21ac64f28298d81'}]})
609         modules.append({'name': 'glibmm',
610                         'sources': [{'type': 'archive',
611                                      'url': '%s/glibmm-2.48.1.tar.xz' % prefix,
612                                      'sha256': 'dc225f7d2f466479766332483ea78f82dc349d59399d30c00de50e5073157cdf'}]})
613         modules.append({'name': 'cairomm',
614                         'sources': [{'type': 'archive',
615                                      'url': '%s/cairomm-1.12.2.tar.gz' % prefix,
616                                      'sha256': '45c47fd4d0aa77464a75cdca011143fea3ef795c4753f6e860057da5fb8bd599'}]})
617         modules.append({'name': 'pangomm',
618                         'sources': [{'type': 'archive',
619                                      'url': '%s/pangomm-2.40.1.tar.xz' % prefix,
620                                      'sha256': '9762ee2a2d5781be6797448d4dd2383ce14907159b30bc12bf6b08e7227be3af'}]})
621         modules.append({'name': 'libxml++',
622                         'sources': [{'type': 'archive',
623                                      'url': '%s/libxml++-2.40.1.tar.xz' % prefix,
624                                      'sha256': '4ad4abdd3258874f61c2e2a41d08e9930677976d303653cd1670d3e9f35463e9'}]})
625         modules.append({'name': 'xmlsec1',
626                         'sources': [{'type': 'archive',
627                                      'url': '%s/xmlsec1-1.2.25.tar.gz' % prefix,
628                                      'sha256': '967ca83edf25ccb5b48a3c4a09ad3405a63365576503bf34290a42de1b92fcd2'}]})
629         modules.append({'name': 'openjpeg2',
630                         'buildsystem': 'cmake',
631                         'sources': [{'type': 'dir', 'path': os.path.abspath('../openjpeg2-cdist')}]})
632         modules.append({'name': 'boost',
633                         'buildsystem': 'simple',
634                         'build-commands': [
635                             './bootstrap.sh --prefix=/app',
636                             './b2 install'
637                         ],
638                         'sources': [{'type': 'archive',
639                                      'url': '%s/boost_1_66_0.tar.bz2' % prefix,
640                                      'sha256': '5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9'}]})
641         modules.append({'name': 'asdcplib',
642                         'buildsystem': 'simple',
643                         'build-commands': [
644                             './waf configure --prefix=/app  --libdir=/app/lib build install'
645                         ],
646                         'sources': [{'type': 'dir', 'path': os.path.abspath('../asdcplib-carl')}]})
647         modules.append({'name': 'locked_sstream',
648                         'buildsystem': 'simple',
649                         'build-commands': [
650                             './waf configure --prefix=/app build install'
651                         ],
652                         'sources': [{'type': 'dir', 'path': os.path.abspath('../locked_sstream')}]})
653         modules.append({'name': 'libcxml',
654                         'buildsystem': 'simple',
655                         'build-commands': [
656                             './waf configure --prefix=/app  --libdir=/app/lib build install'
657                         ],
658                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libcxml')}]})
659         modules.append({'name': 'libdcp',
660                         'buildsystem': 'simple',
661                         'build-commands': [
662                             './waf configure --prefix=/app --libdir=/app/lib build install'
663                         ],
664                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libdcp')}]})
665         modules.append({'name': 'libsub',
666                         'buildsystem': 'simple',
667                         'build-commands': [
668                             './waf configure --prefix=/app --libdir=/app/lib build install'
669                         ],
670                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libsub')}]})
671         modules.append({'name': 'rtaudio',
672                         'build-options': {
673                         'config-opts': [
674                             '--prefix=/app',
675                             '--with-pulse',
676                             '--with-alsa'
677                         ]
678                         },
679                         'sources': [{'type': 'dir', 'path': os.path.abspath('../rtaudio-cdist')}]})
680         modules.append({'name': 'wxwidgets',
681                         'sources': [{'type': 'archive',
682                                      'url': '%s/wxWidgets-3.0.3.tar.bz2' % prefix,
683                                      'sha256': '08c8033f48ec1b23520f036cde37b5ae925a6a65f137ded665633ca159b9307b'}]})
684         modules.append({'name': 'libssh',
685                         'buildsystem': 'cmake',
686                         'builddir': True,
687                         'sources': [{'type': 'archive',
688                                      'url': '%s/libssh-0.7.5.tar.xz' % prefix,
689                                      'sha256': '54e86dd5dc20e5367e58f3caab337ce37675f863f80df85b6b1614966a337095'}]})
690         modules.append({'name': 'dcpomatic',
691                         'buildsystem': 'simple',
692                         'build-commands': [
693                             './waf configure --prefix=/app build install'
694                          ],
695                         'build-options': {
696                            'build-args': ['--share=network']
697                         },
698                         'sources': [{'type': 'dir', 'path': os.path.abspath('.')}]})
699         desc = {'app-id': 'com.dcpomatic.DCP-o-matic',
700                 'runtime': 'org.gnome.Sdk',
701                 'runtime-version': '3.26',
702                 'sdk': 'org.gnome.Sdk',
703                 'command': 'dcpomatic2',
704                 'finish-args': ['--socket=x11', '--share=ipc', '--share=network', '--socket=pulseaudio', '--filesystem=host'],
705                 'modules': modules}
706         os.makedirs('build/platform')
707         with open('build/com.dcpomatic.DCP-o-matic.json', 'w') as outfile:
708             json.dump(desc, outfile)
709         target.command('%s --repo=build/platform/repo build/platform/flatpak build/com.dcpomatic.DCP-o-matic.json' % target.flatpak_builder())
710     elif target.platform != 'linux' or target.detail == 'appimage' or not for_package:
711         target.command('./waf configure --prefix=%s %s' % (target.directory, configure_options(target, options, for_package)))
712         target.command('./waf')
713         target.command('./waf install')
714
715 def package_windows(target):
716     identifier = ''
717     if target.version is not None:
718         identifier = '%s.' % target.version
719     identifier += '%d' % target.bits
720     shutil.copyfile('build/platform/windows/installer.%s.nsi' % identifier, 'build/platform/windows/installer2.%s.nsi' % identifier)
721     target.command('sed -i "s~%%resources%%~%s/platform/windows~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
722     target.command('sed -i "s~%%graphics%%~%s/graphics~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
723     target.command('sed -i "s~%%static_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.windows_prefix, identifier))
724     target.command('sed -i "s~%%cdist_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.directory, identifier))
725     target.command('sed -i "s~%%mingw%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.environment_prefix, identifier))
726     target.command('sed -i "s~%%binaries%%~%s/build~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
727     target.command('sed -i "s~%%bits%%~32~g" build/platform/windows/installer2.%s.nsi' % identifier)
728     target.command('makensis build/platform/windows/installer2.%s.nsi' % identifier)
729     return os.path.abspath(glob.glob('build/platform/windows/*%s*.exe' % target.bits)[0])
730
731 def package_debian(target, cpu, version, options):
732     make_control(target.version, target.bits, 'debian/control', target.debug, options['gui'])
733     if target.version != '9' and target.version != '16.04' and options['gui']:
734         with open('debian/postinst', 'w') as f:
735             print('#!/bin/sh', file=f)
736             # Get the required capability to write to disks
737             print('setcap "cap_dac_override+ep cap_sys_admin+ep" /usr/bin/dcpomatic2_disk_writer', file=f)
738     target.command('./waf dist')
739     f = open('debian/files', 'w')
740     suffix = '' if options['gui'] else '-cli'
741     print(f'dcpomatic{suffix}_{version}-1_{cpu}.deb video extra', file=f)
742     shutil.rmtree('build/deb', ignore_errors=True)
743
744     os.makedirs('build/deb')
745     os.chdir('build/deb')
746     shutil.move('../../dcpomatic-%s.tar.bz2' % version, 'dcpomatic_%s.orig.tar.bz2' % version)
747     target.command('tar xjf dcpomatic_%s.orig.tar.bz2' % version)
748     os.chdir('dcpomatic-%s' % version)
749     target.set('EMAIL', 'carl@dcpomatic.com')
750     target.command('dch -b -v %s-1 "New upstream release."' % version)
751     target.set('CDIST_LINKFLAGS', target.get('LINKFLAGS'))
752     target.set('CDIST_CXXFLAGS', target.get('CXXFLAGS'))
753     target.set('CDIST_PKG_CONFIG_PATH', target.get('PKG_CONFIG_PATH'))
754     target.set('CDIST_DIRECTORY', target.directory)
755
756     target.set('CDIST_CONFIGURE', '"' + configure_options(target, options, for_package=True) + '"')
757     target.set('CDIST_PACKAGE', f'dcpomatic{suffix}')
758     target.set('CDIST_WX_VERSION', "3.2" if target.version in ("23.04", "23.10", "24.04") else "3.1")
759     if not target.debug:
760         target.set('CDIST_DEBUG_PACKAGE_FLAG', '--no-ddebs')
761
762     target.command('dpkg-buildpackage -uc -us')
763
764     debs = []
765     for p in glob.glob('../*.deb'):
766         debs.append(os.path.abspath(p))
767
768     return debs
769
770 def package_rpm(target, cpu, version, options):
771     topdir = os.path.realpath('build/rpmbuild')
772     os.makedirs('%s/BUILD' % topdir)
773     os.makedirs('%s/RPMS' % topdir)
774     os.makedirs('%s/SOURCES' % topdir)
775     os.makedirs('%s/SPECS' % topdir)
776     os.makedirs('%s/SRPMS' % topdir)
777
778     target.command('./waf dist')
779     shutil.copyfile(
780         "%s/src/dcpomatic/dcpomatic-%s.tar.bz2" % (target.directory, version),
781         "%s/SOURCES/dcpomatic-%s.tar.bz2" % (topdir, version)
782         )
783
784     requires = None
785     if target.distro == 'mageia':
786         requires = "lib64xmlsec1-devel lib64canberra-gtk0 libcap-utils"
787
788     make_spec('dcpomatic2.spec', version, target, options, requires)
789     cmd = 'rpmbuild --define "_topdir %s" -bb dcpomatic2.spec' % topdir
790     target.command(cmd)
791     rpms = []
792
793     if cpu == "amd64":
794         cpu = "x86_64"
795     else:
796         cpu = "i686"
797
798     for p in glob.glob('%s/RPMS/%s/*.rpm' % (topdir, cpu)):
799         rpms.append(os.path.abspath(p))
800
801     return rpms
802
803 def make_appimage(target, nice_name, internal_name, version, extra_binaries=None):
804     nice_filename = nice_name.replace(' ', '_')
805     appdir = f'build/{nice_filename}.AppDir'
806     os.makedirs(f'{appdir}/usr/bin')
807     target.command(f'cp {target.directory}/bin/{internal_name} {appdir}/usr/bin')
808     target.command(f'cp {target.directory}/src/openssl/apps/openssl {appdir}/usr/bin/dcpomatic2_openssl')
809     target.command(f'cp {target.directory}/bin/dcpverify {appdir}/usr/bin/dcpomatic2_verify')
810     target.command(f'cp {target.directory}/bin/dcpkdm {appdir}/usr/bin/dcpomatic2_kdm_inspect')
811     if extra_binaries:
812         for bin in extra_binaries:
813             target.command(f'cp {target.directory}/bin/{bin} {appdir}/usr/bin')
814     target.command(f'mkdir -p {appdir}/usr/share/libdcp')
815     target.command(f'cp -r {target.directory}/share/dcpomatic2 {appdir}/usr/share/')
816     target.command(f'cp -r {target.directory}/share/libdcp/xsd {appdir}/usr/share/libdcp/')
817     target.command(f'cp -r {target.directory}/share/libdcp/tags {appdir}/usr/share/libdcp/')
818     target.command(f'cp {target.directory}/share/libdcp/ratings {appdir}/usr/share/libdcp/')
819     lib = 'usr/lib/x86_64-linux-gnu'
820     target.command(f'mkdir -p build/{nice_filename}.AppDir/{lib}/gdk-pixbuf-2.0/2.10.0')
821     target.command(f'cp -a /{lib}/gdk-pixbuf-2.0 build/{nice_filename}.AppDir/usr/lib/x86_64-linux-gnu/')
822     target.command('sudo apt update')
823     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']:
824         target.command(f'apt download {package}')
825         target.command(f'dpkg-deb -x {package}*.deb {appdir}')
826     target.command(f'glib-compile-schemas {appdir}/usr/share/glib-2.0/schemas')
827     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')
828     # Stop anything loading from outside the AppImage
829     target.command(f'sed -i -e "s|/usr|/xxx|g" {appdir}/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2')
830
831     if internal_name == 'dcpomatic2_disk':
832         target.command(f'mkdir -p {appdir}/usr/share/polkit-1/actions')
833         target.command(f'cp {target.directory}/share/polkit-1/actions/com.dcpomatic.write-drive.policy {appdir}/usr/share/polkit-1/actions')
834
835     with open(f'{appdir}/AppRun', 'w') as f:
836         print('#!/bin/bash', file=f)
837         print('export PATH=$APPDIR/usr/bin:$PATH', file=f)
838         print('export XDG_DATA_DIRS="$APPDIR/usr/share/:/usr/share/:$XDG_DATA_DIRS"', file=f)
839         print('export GDK_PIXBUF_MODULEDIR=$(readlink -f "$APPDIR"/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/ )', file=f)
840         print('export GDK_PIXBUF_MODULE_FILE=$(readlink -f "$APPDIR"/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders.cache )', file=f)
841         print('export LD_LIBRARY_PATH=$GDK_PIXBUF_MODULEDIR:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu', file=f)
842         print(f'"$APPDIR"/usr/bin/{internal_name} $@', file=f)
843     target.command(f'chmod a+rx {appdir}/AppRun')
844     with open(f'{appdir}/{internal_name}.desktop', 'w') as f:
845         print('[Desktop Entry]', file=f)
846         print('Type=Application', file=f)
847         print('Categories=AudioVideo;', file=f)
848         print(f'Name={nice_name}', file=f)
849         print(f'Icon={internal_name}', file=f)
850     target.command(f'cp graphics/linux/256/{internal_name}.png {appdir}')
851     target.command(f'linuxdeploy-x86_64.AppImage --appdir {appdir}')
852     target.command(f'appimagetool-x86_64.AppImage {appdir}')
853     target.command(f'mv {nice_filename}-x86_64.AppImage build/{nice_filename}-{version}-x86_64.AppImage')
854     return os.path.abspath(f'build/{nice_filename}-{version}-x86_64.AppImage')
855
856 def package(target, version, options):
857     """version: DCP-o-matic version string"""
858     if target.platform == 'windows':
859         return package_windows(target)
860     elif target.platform == 'linux':
861         if target.detail == 'appimage':
862             out = []
863             out.append(make_appimage(target, 'DCP-o-matic', 'dcpomatic2', version, ('dcpomatic2_map', 'dcpomatic2_cli')))
864             out.append(make_appimage(target, 'DCP-o-matic Player', 'dcpomatic2_player', version))
865             out.append(make_appimage(target, 'DCP-o-matic Playlist Editor', 'dcpomatic2_playlist', version))
866             out.append(make_appimage(target, 'DCP-o-matic KDM Creator', 'dcpomatic2_kdm', version))
867             out.append(make_appimage(target, 'DCP-o-matic Batch Converter', 'dcpomatic2_batch', version))
868             out.append(make_appimage(target, 'DCP-o-matic Encode Server', 'dcpomatic2_server', version))
869             out.append(make_appimage(target, 'DCP-o-matic Combiner', 'dcpomatic2_combiner', version))
870             out.append(make_appimage(target, 'DCP-o-matic Editor', 'dcpomatic2_editor', version))
871             return out
872         else:
873             if target.bits == 32:
874                 cpu = 'i386'
875             else:
876                 cpu = 'amd64'
877
878             if target.distro == 'debian' or target.distro == 'ubuntu':
879                 return package_debian(target, cpu, version, options)
880             elif target.distro == 'centos' or target.distro == 'fedora' or target.distro == 'mageia':
881                 return package_rpm(target, cpu, version, options)
882     elif target.platform == 'osx':
883         archs = '-a ' + ' -a '.join(f'{t.arch}/{t.deployment}' for t in target.sub_targets)
884         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)
885         if 'part' in options:
886             cmd += ' -b ' + options['part']
887         target.command(cmd)
888         return glob.glob('build/platform/osx/DCP-o-matic*.dmg')
889     elif target.platform == 'docker':
890         shutil.copyfile(target.deb, 'build/platform/docker')
891         f = open('build/platform/docker/Dockerfile', 'w')
892         print('FROM debian:jessie', file=f)
893         print('MAINTAINER carl@dcpomatic.com', file=f)
894         print('ADD build/platform/docker/dcpomatic_%s-1_amd64.deb /tmp' % (version, version), file=f)
895         print('RUN apt-get -o Acquire:http::Timeout="5" update; exit 0', file=f)
896         print('RUN dpkg -i /tmp/dcpomatic_*.deb; exit 0', file=f)
897         print('RUN apt-get -y -f install', file=f)
898         print('RUN apt-get clean', file=f)
899         print('EXPOSE 6192', file=f)
900         print('CMD ["/usr/bin/dcpomatic2_server_cli", "--verbose"]', file=f)
901         f.close()
902         target.command('docker build build/platform/docker -t dcpomatic-server:%s' % version)
903         target.command('docker save dcpomatic-server:%s -o dcpomatic-server-%s-docker.tar' % (version, version))
904     elif target.platform == 'flatpak':
905         target.command('%s build-bundle build/platform/repo build/dcpomatic_%s.flatpak com.dcpomatic.DCP-o-matic' % (target.flatpak(), version))
906         return os.path.abspath('build/dcpomatic_%s.flatpak' % version)
907
908 def make_pot(target):
909     target.command('./waf pot')
910     return [os.path.abspath('build/src/lib/libdcpomatic.pot'),
911             os.path.abspath('build/src/wx/libdcpomatic-wx.pot'),
912             os.path.abspath('build/src/tools/dcpomatic.pot')]
913
914 def make_manual(target):
915     target.command('make -C doc/manual LIBDCP=../../../libdcp')
916     os.chdir('doc/manual')
917     target.command('pdflatex colour.tex')
918     return [os.path.abspath('pdf'), os.path.abspath('html'), os.path.abspath('colour.pdf')]
919
920 def test(target, options, test):
921     target.set('LC_ALL', 'C')
922     if target.platform == 'windows':
923         cmd = 'run\\tests '
924     else:
925         cmd = 'run/tests --check --log_level=test_suite '
926     if target.debug:
927         cmd += '--backtrace '
928     if test is not None:
929         cmd += '-t %s' % test
930     target.command(cmd)