Project

General

Profile

Bundle-python » History » Version 20

Adrian Georgescu, 11/03/2016 10:01 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 20 Adrian Georgescu
*NOTE:* _PyObjCTools_ is not a valid Python package, as it lacks a @__init__.py@ file, an empty one needs to be manually created with this content:
81
82
<pre>
83
__import__('pkg_resources').declare_namespace(__name__)
84
</pre>
85 6 Saúl Ibarra Corretgé
86 16 Saúl Ibarra Corretgé
h2. Module exceptions
87
88
When copying built Python modules into the distribution folder, care must be taken with the 2 following packages:
89
90
* zope: an empty @__init__.py@ file must be created in the @zope@ directory
91
* cryptography: the @*-dist.info@ must be copied too
92 6 Saúl Ibarra Corretgé
93 14 Saúl Ibarra Corretgé
h1. Creating a sandbox (Python virtualenv)
94 6 Saúl Ibarra Corretgé
95
<pre>
96
sudo easy_install pip
97
sudo pip install virtualenv virtualenvwrapper
98
</pre>
99
100
Add to ~.bashrc
101
102 9 Adrian Georgescu
<pre>
103
# Virtualenv
104
export WORKON_HOME=$HOME/.virtualenvs
105
export PIP_VIRTUALENV_BASE=$WORKON_HOME
106
export PIP_RESPECT_VIRTUALENV=true
107
export VIRTUALENVWRAPPER_SCRIPT=/usr/local/bin/virtualenvwrapper.sh
108
[[ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]] && source /usr/local/bin/virtualenvwrapper_lazy.sh
109
</pre>
110 10 Adrian Georgescu
111 13 Saúl Ibarra Corretgé
Creating a sandbox:
112 10 Adrian Georgescu
113
<pre>
114 13 Saúl Ibarra Corretgé
mkvirtualenv -p $(which python2.7) sandbox
115
</pre>
116
117
Exiting the sandbox:
118
119
<pre>
120 10 Adrian Georgescu
deactivate
121 13 Saúl Ibarra Corretgé
</pre>
122
123
Entering the sandbox:
124
125
<pre>
126 11 Adrian Georgescu
workon sandbox
127
</pre>
128 19 Adrian Georgescu
129
h2. Content of a Resources/lib bundled with Blink (as of November 3rd, 2016)
130
131
<pre>
132
AVFoundation
133
AddressBook
134
AppKit
135
Cocoa
136
CoreFoundation
137
Crypto
138
Foundation
139
LaunchServices
140
PyObjCTools
141
Quartz
142
ScriptingBridge
143
WebKit
144
_cffi_backend.so
145
_ldap.so
146
_markerlib
147
application
148
cffi
149
cjson.so
150
cryptography
151
cryptography-1.5.1.dist-info
152
dateutil
153
dns
154
dsml.py
155
enum
156
eventlib
157
formencode
158
gmpy2.so
159
gnutls
160
greenlet.so
161
idna
162
ipaddress.py
163
ldap
164
ldapurl.py
165
ldif.py
166
lxml
167
msrplib
168
objc
169
otr
170
pkg_resources
171
pyasn1
172
pycparser
173
pydispatch
174
pytz
175
service_identity
176
sipsimple
177
six.py
178
sqlobject
179
twisted
180
xcaplib
181
</pre>