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