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