-
Notifications
You must be signed in to change notification settings - Fork 49
/
build.py
executable file
·180 lines (168 loc) · 7.57 KB
/
build.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#!/usr/bin/env python3
# Created By: Virgil Dupras
# Created On: 2011-06-18
# Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
#
# This software is licensed under the "GPL v3" 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/gplv3_license
import sys
import os
import os.path as op
import shutil
import json
from argparse import ArgumentParser
import compileall
from hscommon import sphinxgen
from hscommon.build import (print_and_do, copy_packages, get_module_version, filereplace,
add_to_pythonpath, copy, copy_sysconfig_files_for_embed, OSXAppStructure, build_cocoa_ext,
build_cocoalib_xibless, copy_all, copy_embeddable_python_dylib, collect_stdlib_dependencies)
from hscommon.plat import ISOSX
from hscommon.util import ensure_folder, delete_files_with_pattern
def parse_args():
parser = ArgumentParser()
parser.add_argument('--clean', action='store_true', dest='clean',
help="Clean build folder before building")
parser.add_argument('--cocoa-compile', action='store_true', dest='cocoa_compile',
help="Build only Cocoa modules and executables")
parser.add_argument('--xibless', action='store_true', dest='xibless',
help="Build only xibless UIs")
parser.add_argument('--doc', action='store_true', dest='doc',
help="Build only the help file")
args = parser.parse_args()
return args
def build_xibless():
import xibless
ensure_folder('cocoa/autogen')
xibless.generate('cocoa/ui/edit_pane.py', 'cocoa/autogen/PMEditPane_UI')
xibless.generate('cocoa/ui/build_pane.py', 'cocoa/autogen/PMBuildPane_UI')
xibless.generate('cocoa/ui/page_pane.py', 'cocoa/autogen/PMPageController_UI')
xibless.generate('cocoa/ui/main_window.py', 'cocoa/autogen/PMMainWindow_UI')
xibless.generate('cocoa/ui/main_menu.py', 'cocoa/autogen/PMMainMenu_UI')
def build_cocoa(dev):
app = OSXAppStructure('build/PdfMasher.app')
print('Generating Info.plist')
app_version = get_module_version('core')
filereplace('cocoa/InfoTemplate.plist', 'cocoa/Info.plist', version=app_version)
app.create('cocoa/Info.plist')
print("Building the cocoa layer")
build_cocoalib_xibless(withfairware=False)
build_xibless()
pydep_folder = op.join(app.resources, 'py')
if not op.exists(pydep_folder):
os.mkdir(pydep_folder)
build_cocoa_proxy_module()
build_cocoa_bridging_interfaces()
copy_embeddable_python_dylib('build')
tocopy = ['core', 'ebooks', 'hscommon', 'cocoa/inter', 'cocoalib/cocoa', 'jobprogress', 'objp',
'cssutils', 'cssselect', 'pdfminer', 'lxml', 'ply', 'markdown', 'encutils']
copy_packages(tocopy, pydep_folder, create_links=dev)
copy('cocoa/pyplugin.py', 'build/pyplugin.py')
sys.path.insert(0, 'build')
collect_stdlib_dependencies('build/pyplugin.py', pydep_folder)
del sys.path[0]
# Views are not referenced by python code, so they're not found by the collector.
copy_all('build/inter/*.so', op.join(pydep_folder, 'inter'))
copy_sysconfig_files_for_embed(pydep_folder)
if not dev:
# Important: Don't ever run delete_files_with_pattern('*.py') on dev builds because you'll
# be deleting all py files in symlinked folders.
compileall.compile_dir(pydep_folder, force=True, legacy=True)
delete_files_with_pattern(pydep_folder, '*.py')
delete_files_with_pattern(pydep_folder, '__pycache__')
os.chdir('cocoa')
print("Compiling with WAF")
os.system('{0} waf configure && {0} waf'.format(sys.executable))
os.chdir('..')
print("Creating the .app folder")
app.copy_executable('cocoa/build/PdfMasher')
resources = ['images/main_icon.icns', 'cocoa/dsa_pub.pem', 'build/pyplugin.py', 'build/help']
app.copy_resources(*resources, use_symlinks=dev)
app.copy_frameworks('build/Python', 'cocoalib/Sparkle.framework')
print("Creating the run.py file")
copy('cocoa/runtemplate.py', 'run.py')
def build_cocoa_proxy_module():
print("Building Cocoa Proxy")
import objp.p2o
objp.p2o.generate_python_proxy_code('cocoalib/cocoa/CocoaProxy.h', 'build/CocoaProxy.m')
build_cocoa_ext("CocoaProxy", 'cocoalib/cocoa',
['cocoalib/cocoa/CocoaProxy.m', 'build/CocoaProxy.m', 'build/ObjP.m',
'cocoalib/HSErrorReportWindow.m', 'cocoa/autogen/HSErrorReportWindow_UI.m'],
['AppKit', 'CoreServices'],
['cocoalib', 'cocoa/autogen'])
def build_cocoa_bridging_interfaces():
print("Building Cocoa Bridging Interfaces")
import objp.o2p
import objp.p2o
add_to_pythonpath('cocoa')
add_to_pythonpath('cocoalib')
from cocoa.inter import (PyGUIObject, GUIObjectView, PyTable, TableView, PyColumns,
ColumnsView, PyBaseApp, BaseAppView, PyTextField)
from inter.app import PyPdfMasher, PdfMasherView
from inter.build_pane import PyBuildPane
from inter.edit_pane import PyEditPane, EditPaneView
from inter.element_table import PyElementTable
from inter.page_controller import PyPageController, PageControllerView
from inter.page_repr import PyPageRepr, PageReprView
allclasses = [PyGUIObject, PyTable, PyColumns, PyBaseApp, PyTextField, PyPdfMasher,
PyBuildPane, PyEditPane, PyElementTable, PyPageController, PyPageRepr]
for class_ in allclasses:
objp.o2p.generate_objc_code(class_, 'cocoa/autogen', inherit=True)
allclasses = [GUIObjectView, TableView, ColumnsView, BaseAppView, EditPaneView,
PageControllerView, PageReprView, PdfMasherView]
clsspecs = [objp.o2p.spec_from_python_class(class_) for class_ in allclasses]
objp.p2o.generate_python_proxy_code_from_clsspec(clsspecs, 'build/CocoaViews.m')
build_cocoa_ext('CocoaViews', 'cocoa/inter', ['build/CocoaViews.m', 'build/ObjP.m'])
def build_qt():
print("Building resource file")
qrc_path = op.join('qt', 'pm.qrc')
pyrc_path = op.join('qt', 'pm_rc.py')
print_and_do("pyrcc4 -py3 {0} > {1}".format(qrc_path, pyrc_path))
print("Creating the run.py file")
runtemplate_path = op.join('qt', 'runtemplate.py')
shutil.copy(runtemplate_path, 'run.py')
def build_help():
print("Generating Help")
platform = 'osx' if ISOSX else 'win'
current_path = op.abspath('.')
confpath = op.join(current_path, 'help', 'conf.tmpl')
help_basepath = op.join(current_path, 'help', 'en')
help_destpath = op.join(current_path, 'build', 'help')
changelog_path = op.join(current_path, 'help', 'changelog')
tixurl = "http://bitbucket.org/hsoft/pdfmasher/issue/{0}"
confrepl = {'platform': platform}
sphinxgen.gen(help_basepath, help_destpath, changelog_path, tixurl, confrepl, confpath)
def build_normal(ui, dev):
build_help()
if ui == 'cocoa':
build_cocoa(dev)
elif ui == 'qt':
build_qt()
def main():
args = parse_args()
conf = json.load(open('conf.json'))
ui = conf['ui']
dev = conf['dev']
print("Building PdfMasher with UI {0}".format(ui))
if dev:
print("Building in Dev mode")
if args.clean:
if op.exists('build'):
shutil.rmtree('build')
if not op.exists('build'):
os.mkdir('build')
if args.doc:
build_help()
elif args.cocoa_compile:
build_cocoa_proxy_module()
build_cocoa_bridging_interfaces()
os.chdir('cocoa')
os.system('{0} waf configure && {0} waf'.format(sys.executable))
os.chdir('..')
copy('cocoa/build/PdfMasher', 'build/PdfMasher.app/Contents/MacOS/PdfMasher')
elif args.xibless:
build_xibless()
else:
build_normal(ui, dev)
if __name__ == '__main__':
main()