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