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