2017-03-12 01:41:47 +00:00
|
|
|
# Copyright 2017 Virgil Dupras
|
2014-10-05 20:31:16 +00:00
|
|
|
#
|
2015-01-03 21:33:16 +00:00
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
2014-10-05 20:31:16 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2009-12-30 16:34:41 +00:00
|
|
|
|
2017-08-28 23:27:17 +00:00
|
|
|
import sys
|
2009-12-30 16:34:41 +00:00
|
|
|
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
|
2012-04-07 15:21:38 +00:00
|
|
|
from argparse import ArgumentParser
|
2013-03-24 16:02:41 +00:00
|
|
|
import platform
|
2017-08-28 23:27:17 +00:00
|
|
|
import re
|
2009-12-30 16:34:41 +00:00
|
|
|
|
2014-10-13 19:08:59 +00:00
|
|
|
from hscommon.build import (
|
2016-06-01 00:21:07 +00:00
|
|
|
print_and_do, copy_packages, build_debian_changelog,
|
|
|
|
get_module_version, filereplace, copy, setup_package_argparser,
|
2017-03-12 01:41:47 +00:00
|
|
|
copy_all
|
2014-10-13 19:08:59 +00:00
|
|
|
)
|
2010-02-09 14:42:48 +00:00
|
|
|
|
2012-04-07 15:21:38 +00:00
|
|
|
def parse_args():
|
|
|
|
parser = ArgumentParser()
|
2012-06-20 17:09:42 +00:00
|
|
|
setup_package_argparser(parser)
|
|
|
|
return parser.parse_args()
|
2012-04-07 15:21:38 +00:00
|
|
|
|
2013-09-22 13:38:52 +00:00
|
|
|
def copy_files_to_package(destpath, packages, with_so):
|
|
|
|
# when with_so is true, we keep .so files in the package, and otherwise, we don't. We need this
|
|
|
|
# flag because when building debian src pkg, we *don't* want .so files (they're compiled later)
|
|
|
|
# and when we're packaging under Arch, we're packaging a binary package, so we want them.
|
2013-04-14 21:21:08 +00:00
|
|
|
if op.exists(destpath):
|
|
|
|
shutil.rmtree(destpath)
|
|
|
|
os.makedirs(destpath)
|
|
|
|
shutil.copy('run.py', op.join(destpath, 'run.py'))
|
2013-09-22 13:38:52 +00:00
|
|
|
extra_ignores = ['*.so'] if not with_so else None
|
|
|
|
copy_packages(packages, destpath, extra_ignores=extra_ignores)
|
2013-04-14 21:21:08 +00:00
|
|
|
os.remove(op.join(destpath, 'qt', 'run_template.py')) # It doesn't belong in the package.
|
|
|
|
shutil.copytree(op.join('build', 'help'), op.join(destpath, 'help'))
|
|
|
|
shutil.copytree(op.join('build', 'locale'), op.join(destpath, 'locale'))
|
|
|
|
compileall.compile_dir(destpath)
|
|
|
|
|
2016-06-01 00:21:07 +00:00
|
|
|
def package_debian_distribution(distribution):
|
2016-06-01 02:32:37 +00:00
|
|
|
app_version = get_module_version('core')
|
2012-10-26 14:23:50 +00:00
|
|
|
version = '{}~{}'.format(app_version, distribution)
|
2016-06-01 00:21:07 +00:00
|
|
|
destpath = op.join('build', 'dupeguru-{}'.format(version))
|
2010-04-07 10:56:43 +00:00
|
|
|
srcpath = op.join(destpath, 'src')
|
2016-06-01 00:21:07 +00:00
|
|
|
packages = [
|
2016-06-01 02:32:37 +00:00
|
|
|
'hscommon', 'core', 'qtlib', 'qt', 'send2trash', 'hsaudiotag'
|
2016-06-01 00:21:07 +00:00
|
|
|
]
|
2013-09-22 13:38:52 +00:00
|
|
|
copy_files_to_package(srcpath, packages, with_so=False)
|
2016-06-01 00:21:07 +00:00
|
|
|
os.mkdir(op.join(destpath, 'modules'))
|
2016-06-01 02:32:37 +00:00
|
|
|
copy_all(op.join('core', 'pe', 'modules', '*.*'), op.join(destpath, 'modules'))
|
2016-06-01 00:21:07 +00:00
|
|
|
copy(op.join('qt', 'pe', 'modules', 'block.c'), op.join(destpath, 'modules', 'block_qt.c'))
|
|
|
|
copy(op.join('pkg', 'debian', 'build_pe_modules.py'), op.join(destpath, 'build_pe_modules.py'))
|
2012-06-16 14:35:23 +00:00
|
|
|
debdest = op.join(destpath, 'debian')
|
2014-04-19 21:48:48 +00:00
|
|
|
debskel = op.join('pkg', 'debian')
|
2012-06-16 14:35:23 +00:00
|
|
|
os.makedirs(debdest)
|
2016-06-29 02:39:23 +00:00
|
|
|
debopts = json.load(open(op.join(debskel, 'dupeguru.json')))
|
2012-07-11 19:07:29 +00:00
|
|
|
for fn in ['compat', 'copyright', 'dirs', 'rules']:
|
2014-04-19 21:48:48 +00:00
|
|
|
copy(op.join(debskel, fn), op.join(debdest, fn))
|
|
|
|
filereplace(op.join(debskel, 'control'), op.join(debdest, 'control'), **debopts)
|
|
|
|
filereplace(op.join(debskel, 'Makefile'), op.join(destpath, 'Makefile'), **debopts)
|
2016-06-01 00:21:07 +00:00
|
|
|
filereplace(op.join(debskel, 'dupeguru.desktop'), op.join(debdest, 'dupeguru.desktop'), **debopts)
|
2016-06-07 00:48:26 +00:00
|
|
|
changelogpath = op.join('help', 'changelog')
|
2012-06-16 14:35:23 +00:00
|
|
|
changelog_dest = op.join(debdest, 'changelog')
|
|
|
|
project_name = debopts['pkgname']
|
2016-06-01 00:21:07 +00:00
|
|
|
from_version = '2.9.2'
|
2014-10-13 19:08:59 +00:00
|
|
|
build_debian_changelog(
|
|
|
|
changelogpath, changelog_dest, project_name, from_version=from_version,
|
|
|
|
distribution=distribution
|
|
|
|
)
|
2016-06-01 00:21:07 +00:00
|
|
|
shutil.copy(op.join('images', 'dgse_logo_128.png'), srcpath)
|
2010-04-07 10:56:43 +00:00
|
|
|
os.chdir(destpath)
|
2012-10-26 14:23:50 +00:00
|
|
|
cmd = "dpkg-buildpackage -S"
|
2012-07-11 20:21:40 +00:00
|
|
|
os.system(cmd)
|
2012-10-26 14:23:50 +00:00
|
|
|
os.chdir('../..')
|
|
|
|
|
2016-06-01 00:21:07 +00:00
|
|
|
def package_debian():
|
2013-04-14 21:21:08 +00:00
|
|
|
print("Packaging for Ubuntu")
|
2016-06-10 13:15:20 +00:00
|
|
|
for distribution in ['trusty', 'xenial']:
|
2016-06-01 00:21:07 +00:00
|
|
|
package_debian_distribution(distribution)
|
2010-04-07 10:56:43 +00:00
|
|
|
|
2016-06-01 00:21:07 +00:00
|
|
|
def package_arch():
|
2013-04-14 21:21:08 +00:00
|
|
|
# For now, package_arch() will only copy the source files into build/. It copies less packages
|
|
|
|
# than package_debian because there are more python packages available in Arch (so we don't
|
|
|
|
# need to include them).
|
|
|
|
print("Packaging for Arch")
|
2016-06-01 00:21:07 +00:00
|
|
|
srcpath = op.join('build', 'dupeguru-arch')
|
|
|
|
packages = [
|
2016-06-01 02:32:37 +00:00
|
|
|
'hscommon', 'core', 'qtlib', 'qt', 'send2trash', 'hsaudiotag',
|
2016-06-01 00:21:07 +00:00
|
|
|
]
|
2013-09-22 13:38:52 +00:00
|
|
|
copy_files_to_package(srcpath, packages, with_so=True)
|
2016-06-01 00:21:07 +00:00
|
|
|
shutil.copy(op.join('images', 'dgse_logo_128.png'), srcpath)
|
2016-06-29 02:39:23 +00:00
|
|
|
debopts = json.load(open(op.join('pkg', 'arch', 'dupeguru.json')))
|
2016-06-01 00:21:07 +00:00
|
|
|
filereplace(op.join('pkg', 'arch', 'dupeguru.desktop'), op.join(srcpath, 'dupeguru.desktop'), **debopts)
|
2013-04-14 21:21:08 +00:00
|
|
|
|
2016-06-01 00:21:07 +00:00
|
|
|
def package_source_tgz():
|
2013-12-21 17:13:26 +00:00
|
|
|
print("Creating git archive")
|
2016-06-01 02:32:37 +00:00
|
|
|
app_version = get_module_version('core')
|
2016-06-01 00:21:07 +00:00
|
|
|
name = 'dupeguru-src-{}.tar'.format(app_version)
|
2016-08-14 00:30:24 +00:00
|
|
|
base_path = os.getcwd()
|
|
|
|
build_path = op.join(base_path, 'build')
|
|
|
|
dest = op.join(build_path, name)
|
2013-06-23 13:36:44 +00:00
|
|
|
print_and_do('git archive -o {} HEAD'.format(dest))
|
2016-08-14 00:30:24 +00:00
|
|
|
# Now, we need to include submodules
|
2017-03-12 01:46:57 +00:00
|
|
|
SUBMODULES = ['hscommon', 'qtlib']
|
2016-08-14 00:30:24 +00:00
|
|
|
for submodule in SUBMODULES:
|
|
|
|
print("Adding submodule {} to archive".format(submodule))
|
|
|
|
os.chdir(submodule)
|
|
|
|
archive_path = op.join(build_path, '{}.tar'.format(submodule))
|
2016-08-14 00:37:08 +00:00
|
|
|
print_and_do('git archive -o {} --prefix {}/ HEAD'.format(archive_path, submodule))
|
2016-08-14 00:30:24 +00:00
|
|
|
os.chdir(base_path)
|
|
|
|
print_and_do('tar -A {} -f {}'.format(archive_path, dest))
|
2013-12-21 17:13:26 +00:00
|
|
|
print_and_do('gzip {}'.format(dest))
|
2013-05-05 14:47:43 +00:00
|
|
|
|
2017-08-28 23:27:17 +00:00
|
|
|
def package_windows():
|
|
|
|
from cx_Freeze import setup, Executable
|
|
|
|
app_version = get_module_version('core')
|
|
|
|
arch = platform.architecture()[0]
|
|
|
|
buildpath = op.join('build', 'dupeguru-win{}'.format(arch))
|
|
|
|
# remove existing build directory
|
|
|
|
if op.exists(buildpath):
|
|
|
|
shutil.rmtree(buildpath)
|
|
|
|
include_files = []
|
|
|
|
# include locale files if they are built otherwise exit as it will break
|
|
|
|
# the localization
|
|
|
|
if op.exists('build/locale'):
|
|
|
|
include_files.append(('build/locale', 'locale'))
|
|
|
|
else:
|
|
|
|
print("Locale files not built, exiting...")
|
|
|
|
return
|
|
|
|
# include help files if they are built otherwise exit as they should be included?
|
|
|
|
if op.exists('build/help'):
|
|
|
|
include_files.append(('build/help', 'help'))
|
|
|
|
else:
|
|
|
|
print("Help files not built, exiting...")
|
|
|
|
return
|
|
|
|
# options for cx_Freeze
|
|
|
|
# if zip_include packages is not used, the cx_Freeze packager will include
|
|
|
|
# the whole PyQT5 directory
|
|
|
|
options = {
|
|
|
|
'build_exe': {
|
|
|
|
'build_exe': buildpath,
|
|
|
|
'excludes': [],
|
|
|
|
'includes': ['atexit'],
|
|
|
|
'include_files': include_files,
|
|
|
|
'include_msvcr': True,
|
|
|
|
'zip_include_packages': ['*'],
|
|
|
|
'zip_exclude_packages': []
|
|
|
|
},
|
|
|
|
}
|
|
|
|
# executables to build, uses se edition icon
|
|
|
|
executables = [
|
|
|
|
Executable(
|
|
|
|
script='run.py',
|
|
|
|
base='Win32GUI',
|
|
|
|
targetName='dupeguru.exe',
|
|
|
|
icon='images/dgse_logo.ico',
|
|
|
|
copyright='Copyright (C) 2017 Hardcoded Software'
|
|
|
|
)
|
|
|
|
]
|
|
|
|
# call cx_freeze
|
|
|
|
setup(
|
|
|
|
name='dupeguru',
|
|
|
|
version=app_version,
|
|
|
|
description='Tool to find duplicate files on your computer.',
|
|
|
|
options=options,
|
|
|
|
executables=executables,
|
|
|
|
script_args=['build']
|
|
|
|
)
|
|
|
|
# Information to pass to NSIS
|
|
|
|
version_array = app_version.split('.')
|
|
|
|
match = re.search('[0-9]+', arch)
|
|
|
|
bits = match.group(0)
|
|
|
|
# Call NSIS (TODO update to not use hardcoded path)
|
|
|
|
cmd = ('"C:\\Program Files (x86)\\NSIS\\Bin\\makensis.exe" '
|
|
|
|
'/DVERSIONMAJOR={0} /DVERSIONMINOR={1} /DVERSIONPATCH={2} /DBITS={3} setup.nsi')
|
|
|
|
print_and_do(cmd.format(version_array[0], version_array[1], version_array[2], bits))
|
|
|
|
|
2009-12-30 16:34:41 +00:00
|
|
|
def main():
|
2012-04-07 15:21:38 +00:00
|
|
|
args = parse_args()
|
2013-05-05 14:47:43 +00:00
|
|
|
if args.src_pkg:
|
2016-06-01 00:21:07 +00:00
|
|
|
print("Creating source package for dupeGuru")
|
|
|
|
package_source_tgz()
|
2013-05-05 14:47:43 +00:00
|
|
|
return
|
2017-03-12 01:41:47 +00:00
|
|
|
print("Packaging dupeGuru with UI qt")
|
2017-08-28 23:27:17 +00:00
|
|
|
if sys.platform == 'win32':
|
|
|
|
package_windows()
|
2017-03-12 01:41:47 +00:00
|
|
|
else:
|
2017-08-28 23:27:17 +00:00
|
|
|
if not args.arch_pkg:
|
|
|
|
distname, _, _ = platform.dist()
|
|
|
|
else:
|
|
|
|
distname = 'arch'
|
|
|
|
if distname == 'arch':
|
|
|
|
package_arch()
|
|
|
|
else:
|
|
|
|
package_debian()
|
2009-12-30 16:34:41 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2010-04-07 10:56:43 +00:00
|
|
|
main()
|