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