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