2009-12-30 16:34:41 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2009-12-30
|
2011-04-12 08:04:01 +00:00
|
|
|
# Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
2009-12-30 16:34:41 +00:00
|
|
|
#
|
2010-09-30 10:17:41 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-12-30 16:34:41 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2009-12-30 16:34:41 +00:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import os.path as op
|
2010-04-07 10:56:43 +00:00
|
|
|
import compileall
|
2010-02-09 14:52:09 +00:00
|
|
|
import shutil
|
2011-01-11 15:21:36 +00:00
|
|
|
import json
|
2009-12-30 16:34:41 +00:00
|
|
|
|
2011-09-22 13:32:09 +00:00
|
|
|
from hscommon.plat import ISWINDOWS, ISLINUX
|
2010-07-13 06:08:18 +00:00
|
|
|
from hscommon.build import (build_dmg, add_to_pythonpath, print_and_do, copy_packages,
|
2011-01-13 10:56:46 +00:00
|
|
|
build_debian_changelog, copy_qt_plugins, get_module_version)
|
2010-02-09 14:42:48 +00:00
|
|
|
|
|
|
|
def package_cocoa(edition):
|
|
|
|
app_path = {
|
2011-12-02 15:48:59 +00:00
|
|
|
'se': 'cocoa/se/dupeGuru.app',
|
|
|
|
'me': 'cocoa/me/dupeGuru ME.app',
|
|
|
|
'pe': 'cocoa/pe/dupeGuru PE.app',
|
2010-02-09 14:42:48 +00:00
|
|
|
}[edition]
|
|
|
|
build_dmg(app_path, '.')
|
|
|
|
|
2010-04-08 10:17:03 +00:00
|
|
|
def package_windows(edition, dev):
|
2011-09-22 13:32:09 +00:00
|
|
|
if not ISWINDOWS:
|
2010-08-11 14:39:06 +00:00
|
|
|
print("Qt packaging only works under Windows.")
|
2010-02-09 14:42:48 +00:00
|
|
|
return
|
|
|
|
add_to_pythonpath('.')
|
2011-01-13 10:56:46 +00:00
|
|
|
app_version = get_module_version('core_{}'.format(edition))
|
2010-10-05 08:48:07 +00:00
|
|
|
distdir = 'dist'
|
2010-02-09 14:42:48 +00:00
|
|
|
|
2010-10-05 08:48:07 +00:00
|
|
|
if op.exists(distdir):
|
|
|
|
shutil.rmtree(distdir)
|
2010-04-07 15:30:04 +00:00
|
|
|
|
2011-03-20 11:28:53 +00:00
|
|
|
# Since v4.2.3, cx_freeze started to falsely include tkinter in the package. We exclude it explicitly because of that.
|
|
|
|
cmd = 'cxfreeze --base-name Win32GUI --target-dir "{0}" --target-name "{1}.exe" --icon {2} --exclude-modules tkinter run.py'
|
2010-04-07 15:30:04 +00:00
|
|
|
target_name = {'se': 'dupeGuru', 'me': 'dupeGuru ME', 'pe': 'dupeGuru PE'}[edition]
|
2010-10-05 08:48:07 +00:00
|
|
|
icon_path = 'images\\dg{0}_logo.ico'.format(edition)
|
|
|
|
print_and_do(cmd.format(distdir, target_name, icon_path))
|
2010-04-07 15:30:04 +00:00
|
|
|
|
2010-04-08 10:17:03 +00:00
|
|
|
if not dev:
|
|
|
|
# Copy qt plugins
|
2010-10-05 08:48:07 +00:00
|
|
|
plugin_dest = op.join(distdir, 'qt4_plugins')
|
2010-04-08 10:17:03 +00:00
|
|
|
plugin_names = ['accessible', 'codecs', 'iconengines', 'imageformats']
|
|
|
|
copy_qt_plugins(plugin_names, plugin_dest)
|
|
|
|
|
|
|
|
# Compress with UPX
|
2010-10-05 08:48:07 +00:00
|
|
|
libs = [name for name in os.listdir(distdir) if op.splitext(name)[1] in ('.pyd', '.dll', '.exe')]
|
2010-04-07 15:30:04 +00:00
|
|
|
for lib in libs:
|
2010-10-05 08:48:07 +00:00
|
|
|
print_and_do("upx --best \"{0}\"".format(op.join(distdir, lib)))
|
2010-04-13 13:04:15 +00:00
|
|
|
|
2011-01-13 10:56:46 +00:00
|
|
|
help_path = op.join('build', 'help')
|
2011-11-30 16:06:08 +00:00
|
|
|
print("Copying {} to dist\\help".format(help_path))
|
2010-10-05 08:48:07 +00:00
|
|
|
shutil.copytree(help_path, op.join(distdir, 'help'))
|
2011-11-30 16:06:08 +00:00
|
|
|
locale_path = op.join('build', 'locale')
|
|
|
|
print("Copying {} to dist\\locale".format(locale_path))
|
|
|
|
shutil.copytree(locale_path, op.join(distdir, 'locale'))
|
2010-02-09 14:42:48 +00:00
|
|
|
|
|
|
|
# AdvancedInstaller.com has to be in your PATH
|
|
|
|
# this is so we don'a have to re-commit installer.aip at every version change
|
2010-10-05 08:48:07 +00:00
|
|
|
installer_path = op.join('qt', edition, 'installer.aip')
|
|
|
|
shutil.copy(installer_path, 'installer_tmp.aip')
|
2011-01-13 10:56:46 +00:00
|
|
|
print_and_do('AdvancedInstaller.com /edit installer_tmp.aip /SetVersion %s' % app_version)
|
2010-02-09 14:42:48 +00:00
|
|
|
print_and_do('AdvancedInstaller.com /build installer_tmp.aip -force')
|
|
|
|
os.remove('installer_tmp.aip')
|
2010-10-05 08:48:07 +00:00
|
|
|
if op.exists('installer_tmp.back.aip'):
|
|
|
|
os.remove('installer_tmp.back.aip')
|
2009-12-30 16:34:41 +00:00
|
|
|
|
2010-04-07 10:56:43 +00:00
|
|
|
def package_debian(edition):
|
2011-01-13 10:56:46 +00:00
|
|
|
app_version = get_module_version('core_{}'.format(edition))
|
2010-04-07 10:56:43 +00:00
|
|
|
ed = lambda s: s.format(edition)
|
2011-01-13 10:56:46 +00:00
|
|
|
destpath = op.join('build', 'dupeguru-{0}-{1}'.format(edition, app_version))
|
2011-01-13 11:23:21 +00:00
|
|
|
if op.exists(destpath):
|
|
|
|
shutil.rmtree(destpath)
|
2010-04-07 10:56:43 +00:00
|
|
|
srcpath = op.join(destpath, 'src')
|
|
|
|
os.makedirs(destpath)
|
2010-10-05 09:02:02 +00:00
|
|
|
os.makedirs(srcpath)
|
|
|
|
shutil.copy('run.py', op.join(srcpath, 'run.py'))
|
2011-01-11 12:36:05 +00:00
|
|
|
packages = ['hscommon', 'core', ed('core_{0}'), 'qtlib', 'qt', 'send2trash', 'jobprogress']
|
2010-07-14 09:40:46 +00:00
|
|
|
if edition == 'me':
|
|
|
|
packages.append('hsaudiotag')
|
2010-04-07 10:56:43 +00:00
|
|
|
copy_packages(packages, srcpath)
|
2010-08-18 05:55:01 +00:00
|
|
|
import sip, PyQt4
|
|
|
|
shutil.copy(sip.__file__, srcpath)
|
2010-08-17 14:26:46 +00:00
|
|
|
qtsrcpath = op.dirname(PyQt4.__file__)
|
|
|
|
qtdestpath = op.join(srcpath, 'PyQt4')
|
|
|
|
os.makedirs(qtdestpath)
|
|
|
|
shutil.copy(op.join(qtsrcpath, '__init__.py'), qtdestpath)
|
|
|
|
shutil.copy(op.join(qtsrcpath, 'Qt.so'), qtdestpath)
|
|
|
|
shutil.copy(op.join(qtsrcpath, 'QtCore.so'), qtdestpath)
|
|
|
|
shutil.copy(op.join(qtsrcpath, 'QtGui.so'), qtdestpath)
|
2010-04-07 10:56:43 +00:00
|
|
|
shutil.copytree(ed('debian_{0}'), op.join(destpath, 'debian'))
|
2011-01-13 11:23:21 +00:00
|
|
|
changelogpath = op.join('help', ed('changelog_{}'))
|
2010-04-07 10:56:43 +00:00
|
|
|
changelog_dest = op.join(destpath, 'debian', 'changelog')
|
|
|
|
project_name = ed('dupeguru-{0}')
|
|
|
|
from_version = {'se': '2.9.2', 'me': '5.7.2', 'pe': '1.8.5'}[edition]
|
2011-01-11 15:21:36 +00:00
|
|
|
build_debian_changelog(changelogpath, changelog_dest, project_name, from_version=from_version)
|
2011-01-13 11:23:21 +00:00
|
|
|
shutil.copytree(op.join('build', 'help'), op.join(srcpath, 'help'))
|
2011-11-30 17:13:02 +00:00
|
|
|
shutil.copytree(op.join('build', 'locale'), op.join(srcpath, 'locale'))
|
2010-04-07 10:56:43 +00:00
|
|
|
shutil.copy(op.join('images', ed('dg{0}_logo_128.png')), srcpath)
|
|
|
|
compileall.compile_dir(srcpath)
|
|
|
|
os.chdir(destpath)
|
|
|
|
os.system("dpkg-buildpackage")
|
|
|
|
|
2009-12-30 16:34:41 +00:00
|
|
|
def main():
|
2011-01-11 15:21:36 +00:00
|
|
|
conf = json.load(open('conf.json'))
|
2009-12-30 16:34:41 +00:00
|
|
|
edition = conf['edition']
|
|
|
|
ui = conf['ui']
|
|
|
|
dev = conf['dev']
|
2010-08-11 14:39:06 +00:00
|
|
|
print("Packaging dupeGuru {0} with UI {1}".format(edition.upper(), ui))
|
2009-12-30 16:34:41 +00:00
|
|
|
if ui == 'cocoa':
|
2010-02-09 14:42:48 +00:00
|
|
|
package_cocoa(edition)
|
2009-12-30 16:34:41 +00:00
|
|
|
elif ui == 'qt':
|
2011-09-22 13:32:09 +00:00
|
|
|
if ISWINDOWS:
|
2010-04-08 10:17:03 +00:00
|
|
|
package_windows(edition, dev)
|
2011-09-22 13:32:09 +00:00
|
|
|
elif ISLINUX:
|
2010-04-07 10:56:43 +00:00
|
|
|
package_debian(edition)
|
|
|
|
else:
|
2010-08-11 14:39:06 +00:00
|
|
|
print("Qt packaging only works under Windows or Linux.")
|
2009-12-30 16:34:41 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2010-04-07 10:56:43 +00:00
|
|
|
main()
|