Project

General

Profile

Bundle-python » History » Version 19

Adrian Georgescu, 11/03/2016 09:56 PM

1 1 Saúl Ibarra Corretgé
h1. Building a Python Framework to bundle inside Blink
2
3
In order to avoid using the system Python a custom Framework build is needed. Using a bundled Python version will make the package bigger in size, but all package versions are controlled and not up to the environment. Also, we can use the latest Python version, with latest bugfixes and features, since Apple only updates the system Python version on every major OS release.
4
5 13 Saúl Ibarra Corretgé
The following instructions only apply for 64bit builds, 32bit builds are no longer supported.
6 7 Adrian Georgescu
7 1 Saúl Ibarra Corretgé
 
8 7 Adrian Georgescu
h2. Building the Python Framework itself
9 1 Saúl Ibarra Corretgé
10 18 Saúl Ibarra Corretgé
* Install it using Homebrew
11 1 Saúl Ibarra Corretgé
12
<pre>
13 18 Saúl Ibarra Corretgé
brew install python
14 1 Saúl Ibarra Corretgé
</pre>
15
16 18 Saúl Ibarra Corretgé
The framework will be installed and linked with Homebrew supplied OpenSSL and SQLite versions. Those libraries will need to be copied too.
17 1 Saúl Ibarra Corretgé
18 18 Saúl Ibarra Corretgé
*NOTE*: Be careful when copying the framework around, it contains symlinks and if @cp -r@ is used the size will we doubled, use @cp -a@ instead.
19 13 Saúl Ibarra Corretgé
20 1 Saúl Ibarra Corretgé
21 2 Saúl Ibarra Corretgé
* Reduce the size of the Python Framework:
22
23 1 Saúl Ibarra Corretgé
There are a number of things that can (and must when submitting a sandbox app to Mac App Store) be removed from the framework directory to make it smaller in size:
24
25
<pre>
26 12 Adrian Georgescu
*.pyc
27 3 Saúl Ibarra Corretgé
*.pyo
28
Versions/Current/lib/python2.7/config/python.o
29 1 Saúl Ibarra Corretgé
Versions/Current/Mac
30 12 Adrian Georgescu
Versions/Current/bin
31 3 Saúl Ibarra Corretgé
Versions/Current/share
32 18 Saúl Ibarra Corretgé
Versions/Current/Resources/*
33 3 Saúl Ibarra Corretgé
Versions/Current/Resources/*.app
34
Versions/Current/lib/python2.7/test
35
Versions/Current/lib/python2.7/plat-*
36
Versions/Current/lib/python2.7/idlelib
37
Versions/Current/lib/python2.7/curses
38
Versions/Current/lib/python2.7/lib2to3
39
Versions/Current/lib/python2.7/lib-tk
40
Versions/Current/lib/python2.7/bsddb
41 18 Saúl Ibarra Corretgé
Versions/Current/lib/python2.7/lib-dynload/gdbm.so
42
Versions/Current/lib/python2.7/lib-dynload/readline.so
43 1 Saúl Ibarra Corretgé
</pre>
44 3 Saúl Ibarra Corretgé
45 4 Saúl Ibarra Corretgé
* Prevent system paths from being used with this bundle
46
47 17 Saúl Ibarra Corretgé
Replace @Versions/Current/lib/python2.7/site.py@ with an empty file.
48 5 Saúl Ibarra Corretgé
49
h2. Compiling PyObjC
50
51 13 Saúl Ibarra Corretgé
In order to get a PyObjC version that will work with the framework created above (Python 2.7, 64bits) an equivalent Python must be used to compile it. That is, if has to be a Python 2.7 version (it doesn't have to be the exact version) and it has to be a 64bit version. The MACOSX_DEPLOYMENT_TARGET must also be set to the appropriate value.
52 5 Saúl Ibarra Corretgé
53
PyObjcC can be installed with easy_install or pip. We install it in 2 steps to save some compilation time due to a bug in the build system:
54 1 Saúl Ibarra Corretgé
55 5 Saúl Ibarra Corretgé
<pre>
56
pip install pyobjc-core
57
pip install pyobjc
58 1 Saúl Ibarra Corretgé
</pre>
59
60 5 Saúl Ibarra Corretgé
When compiling PyObjC a Python package will be created for every system framework, but not all of them are needed (at the moment), so just pick the ones we use:
61
62
<pre>
63
AddressBook
64
AppKit
65 1 Saúl Ibarra Corretgé
Cocoa
66 5 Saúl Ibarra Corretgé
CoreFoundation
67
Foundation
68 13 Saúl Ibarra Corretgé
JavaScriptCore
69 5 Saúl Ibarra Corretgé
LaunchServices
70 1 Saúl Ibarra Corretgé
PyObjCTools
71
Quartz
72 13 Saúl Ibarra Corretgé
ScriptingBridge
73
StoreKit
74 1 Saúl Ibarra Corretgé
WebKit
75 8 Adrian Georgescu
objc
76 6 Saúl Ibarra Corretgé
</pre>
77
78
*NOTE:* The _objc_ package is located inside a _PyObjC_ directory, just copy it from there, without the parent directory.
79
80 13 Saúl Ibarra Corretgé
*NOTE:* _PyObjCTools_ is not a valid Python package, as it lacks a @__init__.py@ file, an empty one needs to be manually created.
81 6 Saúl Ibarra Corretgé
82 16 Saúl Ibarra Corretgé
h2. Module exceptions
83
84
When copying built Python modules into the distribution folder, care must be taken with the 2 following packages:
85
86
* zope: an empty @__init__.py@ file must be created in the @zope@ directory
87
* cryptography: the @*-dist.info@ must be copied too
88 6 Saúl Ibarra Corretgé
89 14 Saúl Ibarra Corretgé
h1. Creating a sandbox (Python virtualenv)
90 6 Saúl Ibarra Corretgé
91
<pre>
92
sudo easy_install pip
93
sudo pip install virtualenv virtualenvwrapper
94
</pre>
95
96
Add to ~.bashrc
97
98 9 Adrian Georgescu
<pre>
99
# Virtualenv
100
export WORKON_HOME=$HOME/.virtualenvs
101
export PIP_VIRTUALENV_BASE=$WORKON_HOME
102
export PIP_RESPECT_VIRTUALENV=true
103
export VIRTUALENVWRAPPER_SCRIPT=/usr/local/bin/virtualenvwrapper.sh
104
[[ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]] && source /usr/local/bin/virtualenvwrapper_lazy.sh
105
</pre>
106 10 Adrian Georgescu
107 13 Saúl Ibarra Corretgé
Creating a sandbox:
108 10 Adrian Georgescu
109
<pre>
110 13 Saúl Ibarra Corretgé
mkvirtualenv -p $(which python2.7) sandbox
111
</pre>
112
113
Exiting the sandbox:
114
115
<pre>
116 10 Adrian Georgescu
deactivate
117 13 Saúl Ibarra Corretgé
</pre>
118
119
Entering the sandbox:
120
121
<pre>
122 11 Adrian Georgescu
workon sandbox
123
</pre>
124 19 Adrian Georgescu
125
h2. Content of a Resources/lib bundled with Blink (as of November 3rd, 2016)
126
127
<pre>
128
AVFoundation
129
AddressBook
130
AppKit
131
Cocoa
132
CoreFoundation
133
Crypto
134
Foundation
135
LaunchServices
136
PyObjCTools
137
Quartz
138
ScriptingBridge
139
WebKit
140
_cffi_backend.so
141
_ldap.so
142
_markerlib
143
application
144
cffi
145
cjson.so
146
cryptography
147
cryptography-1.5.1.dist-info
148
dateutil
149
dns
150
dsml.py
151
enum
152
eventlib
153
formencode
154
gmpy2.so
155
gnutls
156
greenlet.so
157
idna
158
ipaddress.py
159
ldap
160
ldapurl.py
161
ldif.py
162
lxml
163
msrplib
164
objc
165
otr
166
pkg_resources
167
pyasn1
168
pycparser
169
pydispatch
170
pytz
171
service_identity
172
sipsimple
173
six.py
174
sqlobject
175
twisted
176
xcaplib
177
</pre>