mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 23:39:02 +00:00
fdde538b66
--HG-- rename : help_me/templates/credits.mako => help_me/en/credits.md rename : help_me/templates/directories.mako => help_me/en/directories.md rename : help_me/templates/faq.mako => help_me/en/faq.md rename : help_me/templates/intro.mako => help_me/en/intro.md rename : help_me/templates/power_marker.mako => help_me/en/power_marker.md rename : help_me/templates/preferences.mako => help_me/en/preferences.md rename : help_me/templates/quick_start.mako => help_me/en/quick_start.md rename : help_me/templates/results.mako => help_me/en/results.md rename : help_me/templates/versions.mako => help_me/en/versions.md rename : help_pe/templates/credits.mako => help_pe/en/credits.md rename : help_pe/templates/directories.mako => help_pe/en/directories.md rename : help_pe/templates/faq.mako => help_pe/en/faq.md rename : help_pe/templates/intro.mako => help_pe/en/intro.md rename : help_pe/templates/power_marker.mako => help_pe/en/power_marker.md rename : help_pe/templates/preferences.mako => help_pe/en/preferences.md rename : help_pe/templates/quick_start.mako => help_pe/en/quick_start.md rename : help_pe/templates/results.mako => help_pe/en/results.md rename : help_pe/templates/versions.mako => help_pe/en/versions.md rename : help_se/templates/credits.mako => help_se/en/credits.md rename : help_se/templates/directories.mako => help_se/en/directories.md rename : help_se/templates/faq.mako => help_se/en/faq.md rename : help_se/templates/intro.mako => help_se/en/intro.md rename : help_se/templates/power_marker.mako => help_se/en/power_marker.md rename : help_se/templates/preferences.mako => help_se/en/preferences.md rename : help_se/templates/quick_start.mako => help_se/en/quick_start.md rename : help_se/templates/results.mako => help_se/en/results.md rename : help_se/templates/versions.mako => help_se/en/versions.md
106 lines
3.5 KiB
Python
106 lines
3.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Created By: Virgil Dupras
|
|
# Created On: 2009-12-30
|
|
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
#
|
|
# This software is licensed under the "HS" License as described in the "LICENSE" file,
|
|
# which should be included with this package. The terms are also available at
|
|
# http://www.hardcoded.net/licenses/hs_license
|
|
|
|
import sys
|
|
import os
|
|
import os.path as op
|
|
import shutil
|
|
|
|
from setuptools import setup
|
|
import yaml
|
|
|
|
from hscommon import helpgen
|
|
from hscommon.build import add_to_pythonpath, print_and_do, build_all_qt_ui, copy_packages
|
|
|
|
def build_cocoa(edition, dev, help_destpath):
|
|
if not dev:
|
|
print "Building help index"
|
|
os.system('open -a /Developer/Applications/Utilities/Help\\ Indexer.app {0}'.format(help_destpath))
|
|
|
|
print "Building dg_cocoa.plugin"
|
|
if op.exists('build'):
|
|
shutil.rmtree('build')
|
|
os.mkdir('build')
|
|
if not dev:
|
|
specific_packages = {
|
|
'se': ['core_se'],
|
|
'me': ['core_me'],
|
|
'pe': ['core_pe'],
|
|
}[edition]
|
|
copy_packages(['core', 'hscommon'] + specific_packages, 'build')
|
|
cocoa_project_path = 'cocoa/{0}'.format(edition)
|
|
shutil.copy(op.join(cocoa_project_path, 'dg_cocoa.py'), 'build')
|
|
os.chdir('build')
|
|
script_args = ['py2app', '-A'] if dev else ['py2app']
|
|
setup(
|
|
script_args = script_args,
|
|
plugin = ['dg_cocoa.py'],
|
|
setup_requires = ['py2app'],
|
|
)
|
|
os.chdir('..')
|
|
pluginpath = op.join(cocoa_project_path, 'dg_cocoa.plugin')
|
|
if op.exists(pluginpath):
|
|
shutil.rmtree(pluginpath)
|
|
shutil.move('build/dist/dg_cocoa.plugin', pluginpath)
|
|
if dev:
|
|
# In alias mode, the tweakings we do to the pythonpath aren't counted in. We have to
|
|
# manually put a .pth in the plugin
|
|
pthpath = op.join(pluginpath, 'Contents/Resources/dev.pth')
|
|
open(pthpath, 'w').write(op.abspath('.'))
|
|
os.chdir(cocoa_project_path)
|
|
print "Building the XCode project"
|
|
args = []
|
|
if dev:
|
|
args.append('-configuration dev')
|
|
else:
|
|
args.append('-configuration release')
|
|
args = ' '.join(args)
|
|
os.system('xcodebuild {0}'.format(args))
|
|
os.chdir('..')
|
|
|
|
def build_qt(edition, dev):
|
|
build_all_qt_ui(op.join('qtlib', 'ui'))
|
|
build_all_qt_ui(op.join('qt', 'base'))
|
|
build_all_qt_ui(op.join('qt', edition))
|
|
print_and_do("pyrcc4 {0} > {1}".format(op.join('qt', 'base', 'dg.qrc'), op.join('qt', 'base', 'dg_rc.py')))
|
|
if edition == 'pe':
|
|
os.chdir(op.join('qt', edition))
|
|
os.system('python gen.py')
|
|
os.chdir(op.join('..', '..'))
|
|
|
|
def main():
|
|
conf = yaml.load(open('conf.yaml'))
|
|
edition = conf['edition']
|
|
ui = conf['ui']
|
|
dev = conf['dev']
|
|
print "Building dupeGuru {0} with UI {1}".format(edition.upper(), ui)
|
|
if dev:
|
|
print "Building in Dev mode"
|
|
add_to_pythonpath('.')
|
|
print "Generating Help"
|
|
windows = sys.platform == 'win32'
|
|
profile = 'win_en' if windows else 'osx_en'
|
|
help_dir = 'help_{0}'.format(edition)
|
|
dest_dir = 'dupeguru_{0}_help'.format(edition) if edition != 'se' else 'dupeguru_help'
|
|
help_basepath = op.abspath(help_dir)
|
|
help_destpath = op.abspath(op.join(help_dir, dest_dir))
|
|
helpgen.gen(help_basepath, help_destpath, profile=profile)
|
|
print "Building dupeGuru"
|
|
if edition == 'pe':
|
|
os.chdir('core_pe')
|
|
os.system('python gen.py')
|
|
os.chdir('..')
|
|
if ui == 'cocoa':
|
|
build_cocoa(edition, dev, help_destpath)
|
|
elif ui == 'qt':
|
|
build_qt(edition, dev)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|