7e75cb8d2a6b995a025caf296eed5f2c82025f92
[dcpomatic.git] / cscript
1 # -*- mode: python -*-
2 #
3 #    Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net>
4 #
5 #    This file is part of DCP-o-matic.
6 #
7 #    DCP-o-matic is free software; you can redistribute it and/or modify
8 #    it under the terms of the GNU General Public License as published by
9 #    the Free Software Foundation; either version 2 of the License, or
10 #    (at your option) any later version.
11 #
12 #    DCP-o-matic is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU General Public License for more details.
16 #
17 #    You should have received a copy of the GNU General Public License
18 #    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 from __future__ import print_function
22 import glob
23 import shutil
24 import os
25 import copy
26 import json
27
28 deb_build_depends = dict()
29
30 deb_build_depends_base = ['debhelper', 'python', 'g++', 'pkg-config', 'libsndfile1-dev', 'libgtk2.0-dev', 'libx264-dev']
31
32 deb_build_depends['16.04'] = copy.deepcopy(deb_build_depends_base)
33 deb_build_depends['16.04'].extend(['libssh-dev'])
34 deb_build_depends['18.04'] = copy.deepcopy(deb_build_depends_base)
35 deb_build_depends['18.04'].extend(['libssh-dev'])
36 deb_build_depends['19.10'] = copy.deepcopy(deb_build_depends_base)
37 deb_build_depends['19.10'].extend(['libssh-dev'])
38 deb_build_depends['20.04'] = copy.deepcopy(deb_build_depends_base)
39 deb_build_depends['20.04'].extend(['libssh-dev'])
40 deb_build_depends['9'] = copy.deepcopy(deb_build_depends_base)
41 deb_build_depends['9'].extend(['libssh-gcrypt-dev'])
42 deb_build_depends['10'] = copy.deepcopy(deb_build_depends_base)
43 deb_build_depends['10'].extend(['libssh-gcrypt-dev'])
44 deb_build_depends['unstable'] = copy.deepcopy(deb_build_depends_base)
45
46 deb_depends = dict()
47 deb_depends_gui = dict()
48
49 deb_depends_base = ['libc6', 'libsndfile1', 'libsamplerate0', 'libxmlsec1', 'libxmlsec1-openssl', 'libgtk2.0-0']
50
51 deb_depends['16.04'] = copy.deepcopy(deb_depends_base)
52 deb_depends['16.04'].extend(['libboost-filesystem1.58.0',
53                              'libboost-thread1.58.0',
54                              'libboost-regex1.58.0',
55                              'libxml++2.6-2v5',
56                              'libboost-date-time1.58.0',
57                              'libzip4',
58                              'libcairomm-1.0-1v5',
59                              'libpangomm-1.4-1v5',
60                              'libwxgtk3.0-0v5',
61                              'libicu55',
62                              'libnettle6',
63                              'libssh-4',
64                              'libx264-148',
65                              'libcurl3',
66                              'libxerces-c3.1'])
67
68 deb_depends['18.04'] = copy.deepcopy(deb_depends_base)
69 deb_depends['18.04'].extend(['libboost-filesystem1.65.1',
70                              'libboost-thread1.65.1',
71                              'libboost-regex1.65.1',
72                              'libboost-date-time1.65.1',
73                              'libcairomm-1.0-1v5',
74                              'libpangomm-1.4-1v5',
75                              'libxml++2.6-2v5',
76                              'libzip4',
77                              'libwxgtk3.0-0v5',
78                              'libicu60',
79                              'libnettle6',
80                              'libssh-4',
81                              'libx264-152',
82                              'libcurl4',
83                              'libpulse0',
84                              'libxerces-c3.2',
85                              'libnanomsg4'])
86
87 deb_depends['19.10'] = copy.deepcopy(deb_depends_base)
88 deb_depends['19.10'].extend(['libboost-filesystem1.67.0',
89                              'libboost-thread1.67.0',
90                              'libboost-regex1.67.0',
91                              'libboost-date-time1.67.0',
92                              'libcairomm-1.0-1v5',
93                              'libpangomm-1.4-1v5',
94                              'libxml++2.6-2v5',
95                              'libzip5',
96                              'libwxgtk3.0-0v5',
97                              'libicu63',
98                              'libnettle6',
99                              'libssh-4',
100                              'libx264-155',
101                              'libcurl4',
102                              'libpulse0',
103                              'libxerces-c3.2',
104                              'libnanomsg5'])
105
106 deb_depends['20.04'] = copy.deepcopy(deb_depends_base)
107 deb_depends['20.04'].extend(['libboost-filesystem1.71.0',
108                              'libboost-thread1.71.0',
109                              'libboost-regex1.71.0',
110                              'libboost-date-time1.71.0',
111                              'libcairomm-1.0-1v5',
112                              'libpangomm-1.4-1v5',
113                              'libxml++2.6-2v5',
114                              'libzip5',
115                              'libwxgtk3.0-gtk3-0v5',
116                              'libicu66',
117                              'libnettle7',
118                              'libssh-4',
119                              'libx264-155',
120                              'libcurl4',
121                              'libpulse0',
122                              'libxerces-c3.2',
123                              'libnanomsg5'])
124
125 deb_depends['9'] = copy.deepcopy(deb_depends_base)
126 deb_depends['9'].extend(['libboost-filesystem1.62.0',
127                          'libboost-thread1.62.0',
128                          'libboost-regex1.62.0',
129                          'libboost-date-time1.62.0',
130                          'libxml++2.6-2v5',
131                          'libgtk2.0-0',
132                          'libzip4',
133                          'libcairomm-1.0-1v5',
134                          'libpangomm-1.4-1v5',
135                          'libicu57',
136                          'libssh-4',
137                          'libssh-gcrypt-4',
138                          'libnettle6',
139                          'libx264-148',
140                          'libcurl3',
141                          'libxerces-c3.1'])
142
143 deb_depends_gui['9'] = [ 'libwxgtk3.0-0v5',
144                          'libxcb-xfixes0',
145                          'libxcb-shape0',
146                          'libasound2',
147                          'libpulse0' ]
148
149 deb_depends['10'] = copy.deepcopy(deb_depends_base)
150 deb_depends['10'].extend(['libboost-filesystem1.67.0',
151                           'libboost-thread1.67.0',
152                           'libboost-regex1.67.0',
153                           'libboost-date-time1.67.0',
154                           'libxml++2.6-2v5',
155                           'libgtk2.0-0',
156                           'libzip4',
157                           'libcairomm-1.0-1v5',
158                           'libpangomm-1.4-1v5',
159                           'libicu63',
160                           'libssh-4',
161                           'libssh-gcrypt-4',
162                           'libnettle6',
163                           'libx264-155',
164                           'libcurl4',
165                           'libxerces-c3.2',
166                           'libnanomsg5'])
167
168 deb_depends_gui['10'] = [ 'libwxgtk3.0-0v5',
169                           'libxcb-xfixes0',
170                           'libxcb-shape0',
171                           'libasound2',
172                           'libpulse0' ]
173
174 deb_depends['unstable'] = copy.deepcopy(deb_depends_base)
175 deb_depends['unstable'].extend(['libboost-filesystem1.67.0',
176                                 'libboost-thread1.67.0',
177                                 'libboost-regex1.67.0',
178                                 'libboost-date-time1.67.0',
179                                 'libxml++2.6-2v5',
180                                 'libgtk2.0-0',
181                                 'libzip4',
182                                 'libicu63',
183                                 'libnettle6',
184                                 'libx264-155',
185                                 'libcurl4',
186                                 'libxerces-c3.2'])
187
188 def can_build_disk(target):
189     # We can build dcpomatic2_disk on platforms that have Boost process and can build the lwext4
190     # library.  For now, just whitelist good ones here.
191     #
192     # - Lots of Linux distros (including Ubuntu 16.04) don't have a new enough boost (1.64 or above)
193     # - 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.
194     # - On Centos 7 there is a build error in lwext4 related to __unused
195     if target.platform == 'windows':
196         return True
197     if target.platform == 'osx':
198         return True
199     if target.platform == 'linux':
200         if target.distro == 'ubuntu' and target.version in ['18.04', '19.10', '20.04']:
201             return True
202         if target.distro == 'debian' and target.version == '10':
203             return True
204         if target.detail == 'appimage':
205             return True 
206         if target.distro == 'fedora' and target.version == '31':
207             return True
208         if target.distro == 'centos' and target.version == '8':
209             return True
210     return False
211
212 def packages(name, packages, f):
213     s = '%s: ' % name
214     for p in packages:
215         s += str(p) + ', '
216     print(s[:-2], file=f)
217
218 def make_control(debian_version, bits, filename, debug, gui):
219     f = open(filename, 'w')
220     print('Source: dcpomatic', file=f)
221     print('Section: video', file=f)
222     print('Priority: extra', file=f)
223     print('Maintainer: Carl Hetherington <carl@dcpomatic.com>', file=f)
224     packages('Build-Depends', deb_build_depends[debian_version], f)
225     print('Standards-Version: 3.9.3', file=f)
226     print('Homepage: https://dcpomatic.com/', file=f)
227     print('', file=f)
228     print('Package: dcpomatic', file=f)
229     if bits == 32:
230         print('Architecture: i386', file=f)
231     else:
232         print('Architecture: amd64', file=f)
233
234     pkg = deb_depends[debian_version]
235     if gui and debian_version in deb_depends_gui:
236         pkg.extend(deb_depends_gui[debian_version])
237
238     packages('Depends', pkg, f)
239
240     print('Description: Generator of Digital Cinema Packages (DCPs)', file=f)
241     print('  DCP-o-matic generates Digital Cinema Packages (DCPs) from videos, images,', file=f)
242     print('  sound and subtitle files.  You can use it to make content for playback on DCI-compliant', file=f)
243     print('  cinema projectors.', file=f)
244
245     if debug:
246         print('', file=f)
247         print('Package: dcpomatic-dbg', file=f)
248         if bits == 32:
249             print('Architecture: i386', file=f)
250         else:
251             print('Architecture: amd64', file=f)
252         print('Section: debug', file=f)
253         print('Priority: extra', file=f)
254         packages('Depends', pkg, f)
255         print('Description: debugging symbols for dcpomatic', file=f)
256         print('  This package contains the debugging symbols for dcpomatic.', file=f)
257         print('', file=f)
258
259 def make_spec(filename, version, target, options, requires=None):
260     """Make a .spec file for a RPM build"""
261     tools = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(filename))), "src/tools")
262     f = open(filename, 'w')
263     print('Summary:A program that generates Digital Cinema Packages (DCPs) from video and audio files', file=f)
264     print('Name:dcpomatic2', file=f)
265     print('Version:%s' % version, file=f)
266     print('Release:1%{?dist}', file=f)
267     print('License:GPL', file=f)
268     print('Group:Applications/Multimedia', file=f)
269     print('URL:https://dcpomatic.com/', file=f)
270     if requires is not None:
271         print('Requires:%s' % requires, file=f)
272     print('', file=f)
273     print('%description', file=f)
274     print('DCP-o-matic generates Digital Cinema Packages (DCPs) from video and audio ', file=f)
275     print('files for presentation on DCI-compliant digital projectors.', file=f)
276     print('', file=f)
277     print('%files', file=f)
278     print('%{_bindir}/dcpomatic2', file=f)
279     print('%{_bindir}/dcpomatic2_batch', file=f)
280     print('%{_bindir}/dcpomatic2_cli', file=f)
281     print('%{_bindir}/dcpomatic2_create', file=f)
282     print('%{_bindir}/dcpomatic2_kdm', file=f)
283     print('%{_bindir}/dcpomatic2_server', file=f)
284     print('%{_bindir}/dcpomatic2_server_cli', file=f)
285     print('%{_bindir}/dcpomatic2_kdm_cli', file=f)
286     print('%{_bindir}/dcpomatic2_player', file=f)
287     print('%{_bindir}/dcpomatic2_playlist', file=f)
288     print('%{_bindir}/dcpomatic2_openssl', file=f)
289     if options['variant'] == 'swaroop-studio':
290         print('%{_bindir}/dcpomatic2_ecinema', file=f)
291         print('%{_bindir}/dcpomatic2_uuid', file=f)
292     if os.path.exists(os.path.join(tools, "dcpomatic2_disk")):
293         print('%{_bindir}/dcpomatic2_disk', file=f)
294         print('%{_bindir}/dcpomatic2_disk_writer', file=f)
295     print('%{_datadir}/applications/dcpomatic2.desktop', file=f)
296     print('%{_datadir}/applications/dcpomatic2_batch.desktop', file=f)
297     print('%{_datadir}/applications/dcpomatic2_server.desktop', file=f)
298     print('%{_datadir}/applications/dcpomatic2_kdm.desktop', file=f)
299     print('%{_datadir}/applications/dcpomatic2_player.desktop', file=f)
300     print('%{_datadir}/applications/dcpomatic2_playlist.desktop', file=f)
301     print('%{_datadir}/applications/dcpomatic2_playlist.desktop', file=f)
302     if os.path.exists(os.path.join(tools, "dcpomatic2_disk")):
303         print('%{_datadir}/applications/dcpomatic2_disk.desktop', file=f)
304     print('%{_datadir}/dcpomatic2/dcpomatic2_server_small.png', file=f)
305     print('%{_datadir}/dcpomatic2/select.png', file=f)
306     print('%{_datadir}/dcpomatic2/sequence.png', file=f)
307     print('%{_datadir}/dcpomatic2/snap.png', file=f)
308     print('%{_datadir}/dcpomatic2/zoom.png', file=f)
309     print('%{_datadir}/dcpomatic2/zoom_all.png', file=f)
310     print('%{_datadir}/dcpomatic2/tick.png', file=f)
311     print('%{_datadir}/dcpomatic2/no_tick.png', file=f)
312     print('%{_datadir}/dcpomatic2/me.jpg', file=f)
313     print('%{_datadir}/dcpomatic2/LiberationSans-Regular.ttf', file=f)
314     print('%{_datadir}/dcpomatic2/LiberationSans-Italic.ttf', file=f)
315     print('%{_datadir}/dcpomatic2/LiberationSans-Bold.ttf', file=f)
316     print('%{_datadir}/dcpomatic2/splash.png', file=f)
317     for r in ['128x128', '16x16', '22x22', '256x256', '32x32', '48x48', '512x512', '64x64']:
318         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2.png' % r, file=f)
319         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_batch.png' % r, file=f)
320         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_kdm.png' % r, file=f)
321         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_server.png' % r, file=f)
322         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_player.png' % r, file=f)
323         print('%%{_datadir}/icons/hicolor/%s/apps/dcpomatic2_playlist.png' % r, file=f)
324     for l in ['de_DE', 'es_ES', 'fr_FR', 'it_IT', 'sv_SE', 'nl_NL', 'ru_RU', 'pl_PL', 'da_DK',
325               'pt_PT', 'pt_BR', 'sk_SK', 'cs_CZ', 'uk_UA', 'zh_CN', 'tr_TR', 'ko_KR']:
326         print('%%{_datadir}/locale/%s/LC_MESSAGES/dcpomatic2.mo' % l, file=f)
327         print('%%{_datadir}/locale/%s/LC_MESSAGES/libdcpomatic2-wx.mo' % l, file=f)
328         print('%%{_datadir}/locale/%s/LC_MESSAGES/libdcpomatic2.mo' % l, file=f)
329     print('', file=f)
330     print('%prep', file=f)
331     print('rm -rf $RPM_BUILD_DIR/dcpomatic-%s' % version, file=f)
332     print('tar xjf $RPM_SOURCE_DIR/dcpomatic-%s.tar.bz2' % version, file=f)
333     print('%build', file=f)
334     print('cd dcpomatic-%s' % version, file=f)
335     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)
336     print('CXXFLAGS="-I%s/include" LDFLAGS="-L%s/lib" ./waf configure --prefix=%%{buildroot}/usr --install-prefix=/usr %s' %
337           (target.directory, target.directory, configure_options(target, options)), file=f)
338     print('./waf', file=f)
339     print('%install', file=f)
340     print('cd dcpomatic-%s' % version, file=f)
341     print('./waf install', file=f)
342     print('/bin/cp %s/src/openssl/apps/openssl %%{buildroot}/usr/bin/dcpomatic2_openssl' % target.directory, file=f)
343     print('', file=f)
344     print('%post', file=f)
345     print('/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :', file=f)
346     print('', file=f)
347     print('%postun', file=f)
348     print('if [ $1 -eq 0 ] ; then', file=f)
349     print('    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null', file=f)
350     print('    /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :', file=f)
351     print('fi', file=f)
352     print('', file=f)
353     print('%posttrans', file=f)
354     print('/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :', file=f)
355
356 def dependencies(target, options):
357
358     if target.platform == 'linux':
359         ffmpeg_options = { 'shared': False }
360     else:
361         ffmpeg_options = {}
362
363     if target.platform == 'windows' and target.version == 'xp':
364         deps = [('ffmpeg-cdist', '5783efa', ffmpeg_options)]
365     elif target.platform != 'linux' or target.distro != 'arch':
366         deps = [('ffmpeg-cdist', '20d3ddf', ffmpeg_options)]
367     else:
368         # Use distro-provided FFmpeg on Arch
369         deps = []
370
371     # Let's use C++11 mode if we can
372     cpp_lib_options = {'force-cpp11': True} if (
373             (target.platform == 'osx' and target.bits == 64) or
374             (target.platform == 'windows')) else {}
375
376     deps.append(('libdcp', None, cpp_lib_options))
377     deps.append(('libsub', None, cpp_lib_options))
378     deps.append(('leqm-nrt', 'carl'))
379     deps.append(('rtaudio', 'carl'))
380     # We get our OpenSSL libraries from the environment, but we
381     # also need a patched openssl binary to make certificates.
382     # This dependency is to get that binary, which is added into
383     # the appropriate place later
384     deps.append(('openssl', 'carl'))
385     if can_build_disk(target):
386         deps.append(('lwext4', 'carl2'))
387
388     return deps
389
390 option_defaults = { "gui": True, "variant": None }
391
392 def configure_options(target, options):
393     opt = ''
394
395     if not (target.platform == 'linux' and target.distro == 'ubuntu' and target.version == '18.04'):
396         # Currently we only build tests on Ubuntu 18.04
397         opt += ' --disable-tests'
398
399     if target.debug:
400         opt += ' --enable-debug'
401     if target.platform == 'windows':
402         opt += ' --target-windows'
403     elif target.platform == 'linux':
404         opt += ' --static-dcpomatic --static-wxwidgets --static-ffmpeg --static-dcp --static-sub --static-cxml'
405         if target.distro == 'centos':
406             if target.version == '6.5':
407                 opt += ' --static-boost --static-xmlpp'
408             elif target.version == '7':
409                 opt += ' --workaround-gssapi'
410                 # Centos 7 ships with glibmm 2.50.0 which requires C++11
411                 # but its compiler (gcc 4.8.5) defaults to C++97.  Go figure.
412                 # I worry that this will cause ABI problems but I don't have
413                 # a better solution.
414                 opt += ' --force-cpp11'
415     elif target.platform == 'osx' and target.bits == 64:
416         opt += ' --force-cpp11'
417
418     if not options['gui']:
419         opt += ' --disable-gui'
420
421     if options['variant'] is not None:
422         opt += ' --variant=%s' % options['variant']
423
424     # Build Windows debug versions with static linking as I think gdb works better then
425     if target.debug and target.platform == 'windows':
426         opt += ' --static-dcpomatic'
427
428     if can_build_disk(target):
429        opt += ' --enable-disk'
430
431     return opt
432
433 def build(target, options):
434     if target.platform == 'flatpak':
435         target.checkout_dependencies()
436         prefix = 'https://dcpomatic.com/deps'
437         modules = []
438         modules.append({'name': 'libzip',
439                         'buildsystem': 'cmake',
440                         'sources': [{'type': 'archive',
441                                      'url': '%s/libzip-1.4.0.tar.xz' % prefix,
442                                      'sha256': 'e508aba025f5f94b267d5120fc33761bcd98440ebe49dbfe2ed3df3afeacc7b1'}]})
443         modules.append({'name': 'libsigc++',
444                         'sources': [{'type': 'archive',
445                                      'url': '%s/libsigc++-2.10.0.tar.xz' % prefix,
446                                      'sha256': 'f843d6346260bfcb4426259e314512b99e296e8ca241d771d21ac64f28298d81'}]})
447         modules.append({'name': 'glibmm',
448                         'sources': [{'type': 'archive',
449                                      'url': '%s/glibmm-2.48.1.tar.xz' % prefix,
450                                      'sha256': 'dc225f7d2f466479766332483ea78f82dc349d59399d30c00de50e5073157cdf'}]})
451         modules.append({'name': 'cairomm',
452                         'sources': [{'type': 'archive',
453                                      'url': '%s/cairomm-1.12.2.tar.gz' % prefix,
454                                      'sha256': '45c47fd4d0aa77464a75cdca011143fea3ef795c4753f6e860057da5fb8bd599'}]})
455         modules.append({'name': 'pangomm',
456                         'sources': [{'type': 'archive',
457                                      'url': '%s/pangomm-2.40.1.tar.xz' % prefix,
458                                      'sha256': '9762ee2a2d5781be6797448d4dd2383ce14907159b30bc12bf6b08e7227be3af'}]})
459         modules.append({'name': 'libxml++',
460                         'sources': [{'type': 'archive',
461                                      'url': '%s/libxml++-2.40.1.tar.xz' % prefix,
462                                      'sha256': '4ad4abdd3258874f61c2e2a41d08e9930677976d303653cd1670d3e9f35463e9'}]})
463         modules.append({'name': 'xmlsec1',
464                         'sources': [{'type': 'archive',
465                                      'url': '%s/xmlsec1-1.2.25.tar.gz' % prefix,
466                                      'sha256': '967ca83edf25ccb5b48a3c4a09ad3405a63365576503bf34290a42de1b92fcd2'}]})
467         modules.append({'name': 'openjpeg2',
468                         'buildsystem': 'cmake',
469                         'sources': [{'type': 'dir', 'path': os.path.abspath('../openjpeg2-cdist')}]})
470         modules.append({'name': 'boost',
471                         'buildsystem': 'simple',
472                         'build-commands': [
473                             './bootstrap.sh --prefix=/app',
474                             './b2 install'
475                         ],
476                         'sources': [{'type': 'archive',
477                                      'url': '%s/boost_1_66_0.tar.bz2' % prefix,
478                                      'sha256': '5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9'}]})
479         modules.append({'name': 'asdcplib',
480                         'buildsystem': 'simple',
481                         'build-commands': [
482                             './waf configure --prefix=/app  --libdir=/app/lib build install'
483                         ],
484                         'sources': [{'type': 'dir', 'path': os.path.abspath('../asdcplib-carl')}]})
485         modules.append({'name': 'locked_sstream',
486                         'buildsystem': 'simple',
487                         'build-commands': [
488                             './waf configure --prefix=/app build install'
489                         ],
490                         'sources': [{'type': 'dir', 'path': os.path.abspath('../locked_sstream')}]})
491         modules.append({'name': 'libcxml',
492                         'buildsystem': 'simple',
493                         'build-commands': [
494                             './waf configure --prefix=/app  --libdir=/app/lib build install'
495                         ],
496                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libcxml')}]})
497         modules.append({'name': 'libdcp',
498                         'buildsystem': 'simple',
499                         'build-commands': [
500                             './waf configure --prefix=/app --libdir=/app/lib build install'
501                         ],
502                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libdcp')}]})
503         modules.append({'name': 'libsub',
504                         'buildsystem': 'simple',
505                         'build-commands': [
506                             './waf configure --prefix=/app --libdir=/app/lib build install'
507                         ],
508                         'sources': [{'type': 'dir', 'path': os.path.abspath('../libsub')}]})
509         modules.append({'name': 'rtaudio',
510                         'build-options': {
511                         'config-opts': [
512                             '--prefix=/app',
513                             '--with-pulse',
514                             '--with-alsa'
515                         ]
516                         },
517                         'sources': [{'type': 'dir', 'path': os.path.abspath('../rtaudio-cdist')}]})
518         modules.append({'name': 'wxwidgets',
519                         'sources': [{'type': 'archive',
520                                      'url': '%s/wxWidgets-3.0.3.tar.bz2' % prefix,
521                                      'sha256': '08c8033f48ec1b23520f036cde37b5ae925a6a65f137ded665633ca159b9307b'}]})
522         modules.append({'name': 'libssh',
523                         'buildsystem': 'cmake',
524                         'builddir': True,
525                         'sources': [{'type': 'archive',
526                                      'url': '%s/libssh-0.7.5.tar.xz' % prefix,
527                                      'sha256': '54e86dd5dc20e5367e58f3caab337ce37675f863f80df85b6b1614966a337095'}]})
528         modules.append({'name': 'dcpomatic',
529                         'buildsystem': 'simple',
530                         'build-commands': [
531                             './waf configure --prefix=/app build install'
532                          ],
533                         'build-options': {
534                            'build-args': ['--share=network']
535                         },
536                         'sources': [{'type': 'dir', 'path': os.path.abspath('.')}]})
537         desc = {'app-id': 'com.dcpomatic.DCP-o-matic',
538                 'runtime': 'org.gnome.Sdk',
539                 'runtime-version': '3.26',
540                 'sdk': 'org.gnome.Sdk',
541                 'command': 'dcpomatic2',
542                 'finish-args': ['--socket=x11', '--share=ipc', '--share=network', '--socket=pulseaudio', '--filesystem=host'],
543                 'modules': modules}
544         os.makedirs('build/platform')
545         with open('build/com.dcpomatic.DCP-o-matic.json', 'w') as outfile:
546             json.dump(desc, outfile)
547         target.command('%s --repo=build/platform/repo build/platform/flatpak build/com.dcpomatic.DCP-o-matic.json' % target.flatpak_builder())
548     else:
549         target.command('./waf configure --prefix=%s %s' % (target.directory, configure_options(target, options)))
550         target.command('./waf')
551
552         if target.platform == 'linux' or target.platform == 'osx':
553             target.command('./waf install')
554
555 def package_windows(target):
556     identifier = ''
557     if target.version is not None:
558         identifier = '%s.' % target.version
559     identifier += '%d' % target.bits
560     shutil.copyfile('build/platform/windows/installer.%s.nsi' % identifier, 'build/platform/windows/installer2.%s.nsi' % identifier)
561     target.command('sed -i "s~%%resources%%~%s/platform/windows~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
562     target.command('sed -i "s~%%graphics%%~%s/graphics~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
563     target.command('sed -i "s~%%static_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.windows_prefix, identifier))
564     target.command('sed -i "s~%%cdist_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.directory, identifier))
565     target.command('sed -i "s~%%mingw%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.environment_prefix, identifier))
566     target.command('sed -i "s~%%binaries%%~%s/build~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), identifier))
567     target.command('sed -i "s~%%bits%%~32~g" build/platform/windows/installer2.%s.nsi' % identifier)
568     target.command('makensis build/platform/windows/installer2.%s.nsi' % identifier)
569     return os.path.abspath(glob.glob('build/platform/windows/*%s*.exe' % target.bits)[0])
570
571 def package_debian(target, cpu, version, options):
572     make_control(target.version, target.bits, 'debian/control', target.debug, options['gui'])
573     target.command('./waf dist')
574     f = open('debian/files', 'w')
575     print('dcpomatic_%s-1_%s.deb video extra' % (version, cpu), file=f)
576     shutil.rmtree('build/deb', ignore_errors=True)
577
578     os.makedirs('build/deb')
579     os.chdir('build/deb')
580     shutil.move('../../dcpomatic-%s.tar.bz2' % version, 'dcpomatic_%s.orig.tar.bz2' % version)
581     target.command('tar xjf dcpomatic_%s.orig.tar.bz2' % version)
582     os.chdir('dcpomatic-%s' % version)
583     target.command('dch -b -v %s-1 "New upstream release."' % version)
584     target.set('CDIST_LINKFLAGS', target.get('LINKFLAGS'))
585     target.set('CDIST_CXXFLAGS', target.get('CXXFLAGS'))
586     target.set('CDIST_PKG_CONFIG_PATH', target.get('PKG_CONFIG_PATH'))
587     target.set('CDIST_DIRECTORY', target.directory)
588
589     target.set('CDIST_CONFIGURE', '"' + configure_options(target, options) + '"')
590     if target.debug:
591         target.set('CDIST_DEBUG_PACKAGE', '--dbg-package=dcpomatic-dbg')
592
593     target.command('dpkg-buildpackage -uc -us')
594
595     debs = []
596     for p in glob.glob('../*.deb'):
597         debs.append(os.path.abspath(p))
598
599     return debs
600
601 def package_rpm(target, cpu, version, options):
602     topdir = os.path.realpath('build/rpmbuild')
603     os.makedirs('%s/BUILD' % topdir)
604     os.makedirs('%s/RPMS' % topdir)
605     os.makedirs('%s/SOURCES' % topdir)
606     os.makedirs('%s/SPECS' % topdir)
607     os.makedirs('%s/SRPMS' % topdir)
608
609     target.command('./waf dist')
610     shutil.copyfile(
611         "%s/src/dcpomatic/dcpomatic-%s.tar.bz2" % (target.directory, version),
612         "%s/SOURCES/dcpomatic-%s.tar.bz2" % (topdir, version)
613         )
614
615     requires = None
616     if target.distro == 'mageia':
617         requires = "lib64xmlsec1-devel"
618
619     make_spec('build/platform/linux/dcpomatic2.spec', version, target, options, requires)
620     cmd = 'rpmbuild --define "_topdir %s" -bb build/platform/linux/dcpomatic2.spec' % topdir
621     target.command(cmd)
622     rpms = []
623
624     if cpu == "amd64":
625         cpu = "x86_64"
626     else:
627         cpu = "i686"
628
629     for p in glob.glob('%s/RPMS/%s/*.rpm' % (topdir, cpu)):
630         rpms.append(os.path.abspath(p))
631
632     return rpms
633
634 def make_appimage(target, nice_name, internal_name, version):
635     nice_filename = nice_name.replace(' ', '_')
636     os.makedirs('build/%s.AppDir/usr/bin' % nice_filename)
637     target.command('cp %s/bin/%s build/%s.AppDir/usr/bin' % (target.directory, internal_name, nice_filename))
638     target.command('cp %s/src/openssl/apps/openssl build/%s.AppDir/usr/bin/dcpomatic2_openssl' % (target.directory, nice_filename))
639     target.command('mkdir -p build/%s.AppDir/usr/share/libdcp' % nice_filename)
640     target.command('cp -r %s/share/libdcp/xsd build/%s.AppDir/usr/share/libdcp/' % (target.directory, nice_filename))
641     with open('build/%s.AppDir/AppRun' % nice_filename, 'w') as f:
642         print('#!/bin/bash', file=f)
643         print('export APPDIR="$(dirname "$(readlink -f "$0")")"', file=f)
644         print('export PATH=$APPDIR/usr/bin:$PATH', file=f)
645         print('export XDG_DATA_DIRS="$APPDIR/usr/share/:/usr/share/:$XDG_DATA_DIRS"', file=f)
646         print('"$APPDIR"/usr/bin/%s $@' % internal_name, file=f)
647     target.command('chmod a+rx build/%s.AppDir/AppRun' % nice_filename)
648     with open('build/%s.AppDir/%s.desktop' % (nice_filename, internal_name), 'w') as f:
649         print('[Desktop Entry]', file=f)
650         print('Type=Application', file=f)
651         print('Categories=AudioVideo;', file=f)
652         print('Name=%s' % nice_name, file=f)
653         print('Icon=%s' % internal_name, file=f)
654     target.command('cp graphics/linux/256/%s.png build/%s.AppDir' % (internal_name, nice_filename))
655     target.command('linuxdeploy-x86_64.AppImage --appdir build/%s.AppDir' % nice_filename)
656     target.command('appimagetool-x86_64.AppImage build/%s.AppDir' % nice_filename)
657     target.command('mv %s-x86_64.AppImage build/%s-%s-x86_64.AppImage' % (nice_filename, nice_filename, version))
658     return os.path.abspath('build/%s-%s-x86_64.AppImage' % (nice_filename, version))
659
660 def package(target, version, options):
661     """version: DCP-o-matic version string"""
662     if target.platform == 'windows':
663         return package_windows(target)
664     elif target.platform == 'linux':
665         if target.detail == 'appimage':
666             out = []
667             out.append(make_appimage(target, 'DCP-o-matic', 'dcpomatic2', version))
668             out.append(make_appimage(target, 'DCP-o-matic Player', 'dcpomatic2_player', version))
669             out.append(make_appimage(target, 'DCP-o-matic Playlist Editor', 'dcpomatic2_playlist', version))
670             out.append(make_appimage(target, 'DCP-o-matic KDM Creator', 'dcpomatic2_kdm', version))
671             out.append(make_appimage(target, 'DCP-o-matic Batch Converter', 'dcpomatic2_batch', version))
672             out.append(make_appimage(target, 'DCP-o-matic Encode Server', 'dcpomatic2_server', version))
673             return out
674         else:
675             if target.bits == 32:
676                 cpu = 'i386'
677             else:
678                 cpu = 'amd64'
679
680             if target.distro == 'debian' or target.distro == 'ubuntu':
681                 return package_debian(target, cpu, version, options)
682             elif target.distro == 'centos' or target.distro == 'fedora' or target.distro == 'mageia':
683                 return package_rpm(target, cpu, version, options)
684     elif target.platform == 'osx' and target.bits is None:
685         target.command('bash platform/osx/make_dmg.sh %s %s universal no %s %s' % (target.environment_prefix, target.directory, target.apple_id, target.apple_password))
686         return [os.path.abspath(x) for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg')]
687     elif target.platform == 'osx' and target.bits == 64:
688         target.command('bash platform/osx/make_dmg.sh %s %s thin %s %s' % (target.environment_prefix, target.directory, target.apple_id, target.apple_password))
689         return [os.path.abspath(x) for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg')]
690     elif target.platform == 'docker':
691         shutil.copyfile(target.deb, 'build/platform/docker')
692         f = open('build/platform/docker/Dockerfile', 'w')
693         print('FROM debian:jessie', file=f)
694         print('MAINTAINER carl@dcpomatic.com', file=f)
695         print('ADD build/platform/docker/dcpomatic_%s-1_amd64.deb /tmp' % (version, version), file=f)
696         print('RUN apt-get -o Acquire:http::Timeout="5" update; exit 0', file=f)
697         print('RUN dpkg -i /tmp/dcpomatic_*.deb; exit 0', file=f)
698         print('RUN apt-get -y -f install', file=f)
699         print('RUN apt-get clean', file=f)
700         print('EXPOSE 6192', file=f)
701         print('CMD ["/usr/bin/dcpomatic2_server_cli", "--verbose"]', file=f)
702         f.close()
703         target.command('docker build build/platform/docker -t dcpomatic-server:%s' % version)
704         target.command('docker save dcpomatic-server:%s -o dcpomatic-server-%s-docker.tar' % (version, version))
705     elif target.platform == 'flatpak':
706         target.command('%s build-bundle build/platform/repo build/dcpomatic_%s.flatpak com.dcpomatic.DCP-o-matic' % (target.flatpak(), version))
707         return os.path.abspath('build/dcpomatic_%s.flatpak' % version)
708
709 def make_pot(target):
710     target.command('./waf pot')
711     return [os.path.abspath('build/src/lib/libdcpomatic.pot'),
712             os.path.abspath('build/src/wx/libdcpomatic-wx.pot'),
713             os.path.abspath('build/src/tools/dcpomatic.pot')]
714
715 def make_manual(target):
716     os.chdir('doc/manual')
717     target.command('make')
718     target.command('pdflatex colour.tex')
719     return [os.path.abspath('pdf'), os.path.abspath('html'), os.path.abspath('colour.pdf')]
720
721 def test(target, test):
722     if target.platform != 'windows':
723         target.set('LC_ALL', 'C')
724         cmd = 'run/tests '
725         if target.debug:
726             cmd += '--backtrace '
727         if test is not None:
728             cmd += '--run_test=%s' % test
729         target.command(cmd)