Project

General

Profile

Bundle-python » History » Version 13

Saúl Ibarra Corretgé, 02/13/2015 09:58 AM

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 13 Saúl Ibarra Corretgé
* Download the desired Python version, at the time of this writing, 2.7.9
11 1 Saúl Ibarra Corretgé
12
<pre>
13 13 Saúl Ibarra Corretgé
wget http://python.org/ftp/python/2.7.9/Python-2.7.9.tar.bz2
14 1 Saúl Ibarra Corretgé
</pre>
15
16
* Uncompress and get ready to compile
17
18
<pre>
19 13 Saúl Ibarra Corretgé
tar jxvf Python-2.7.9.tar.bz2
20
cd Python-2.7.9
21 1 Saúl Ibarra Corretgé
</pre>
22
23
* Create a temporary directory for the build result
24
25
<pre>
26
mkdir -p /tmp/py
27
</pre>
28
29 13 Saúl Ibarra Corretgé
* Compile Python (Framework build) with compatibility for OSX >= 10.9
30 1 Saúl Ibarra Corretgé
31
<pre>
32 13 Saúl Ibarra Corretgé
./configure --prefix=/tmp/py --enable-framework=/tmp/py MACOSX_DEPLOYMENT_TARGET=10.9
33 1 Saúl Ibarra Corretgé
make
34
make install
35
</pre>
36
37
The resulting framework will be located in /tmp/py
38
39
* Change the dynamic link target in the main binary file of the Python Framework
40
41
<pre>
42
cd /tmp/py/Python.framework/Versions/2.7
43
chmod +w Python
44
install_name_tool -id @executable_path/../Frameworks/Python.framework/Versions/2.7/Python Python
45
chmod -w Python
46
</pre>
47
48 13 Saúl Ibarra Corretgé
The framework is almost ready for inclusion on the project.
49 1 Saúl Ibarra Corretgé
50 2 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 -RH@ instead.
51
52 1 Saúl Ibarra Corretgé
53
* Reduce the size of the Python Framework:
54
55 12 Adrian Georgescu
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:
56 3 Saúl Ibarra Corretgé
57
<pre>
58
*.pyc
59 1 Saúl Ibarra Corretgé
*.pyo
60 12 Adrian Georgescu
Versions/Current/lib/python2.7/config/python.o
61 3 Saúl Ibarra Corretgé
Versions/Current/Mac
62
Versions/Current/bin
63
Versions/Current/share
64
Versions/Current/Resources/English*
65
Versions/Current/Resources/*.app
66
Versions/Current/lib/python2.7/test
67
Versions/Current/lib/python2.7/plat-*
68
Versions/Current/lib/python2.7/idlelib
69
Versions/Current/lib/python2.7/curses
70
Versions/Current/lib/python2.7/lib2to3
71
Versions/Current/lib/python2.7/lib-tk
72
Versions/Current/lib/python2.7/bsddb
73 1 Saúl Ibarra Corretgé
</pre>
74 3 Saúl Ibarra Corretgé
75 4 Saúl Ibarra Corretgé
* Prevent system paths from being used with this bundle
76
77
Edit @Versions/Current/lib/python2.7/site.py@ and add the following lines at the end on the @main()@ function body:
78
79
<pre>
80
    # Remove system paths so that only things contained in this Framework are used
81
    sys.path = [x for x in sys.path if not x.startswith(('/System', '/Library'))]
82
</pre>
83 5 Saúl Ibarra Corretgé
84
h2. Compiling PyObjC
85
86 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.
87 5 Saúl Ibarra Corretgé
88
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:
89 1 Saúl Ibarra Corretgé
90 5 Saúl Ibarra Corretgé
<pre>
91
pip install pyobjc-core
92
pip install pyobjc
93 1 Saúl Ibarra Corretgé
</pre>
94
95 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:
96
97
<pre>
98
AddressBook
99
AppKit
100 1 Saúl Ibarra Corretgé
Cocoa
101 5 Saúl Ibarra Corretgé
CoreFoundation
102
Foundation
103 13 Saúl Ibarra Corretgé
JavaScriptCore
104 5 Saúl Ibarra Corretgé
LaunchServices
105 1 Saúl Ibarra Corretgé
PyObjCTools
106
Quartz
107 13 Saúl Ibarra Corretgé
ScriptingBridge
108
StoreKit
109 1 Saúl Ibarra Corretgé
WebKit
110 8 Adrian Georgescu
objc
111 6 Saúl Ibarra Corretgé
</pre>
112
113
*NOTE:* The _objc_ package is located inside a _PyObjC_ directory, just copy it from there, without the parent directory.
114
115 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.
116 6 Saúl Ibarra Corretgé
117
118
h1. Creating a sandbox
119
120
<pre>
121
sudo easy_install pip
122
sudo pip install virtualenv virtualenvwrapper
123
</pre>
124
125
Add to ~.bashrc
126
127 9 Adrian Georgescu
<pre>
128
# Virtualenv
129
export WORKON_HOME=$HOME/.virtualenvs
130
export PIP_VIRTUALENV_BASE=$WORKON_HOME
131
export PIP_RESPECT_VIRTUALENV=true
132
export VIRTUALENVWRAPPER_SCRIPT=/usr/local/bin/virtualenvwrapper.sh
133
[[ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]] && source /usr/local/bin/virtualenvwrapper_lazy.sh
134
</pre>
135 10 Adrian Georgescu
136 13 Saúl Ibarra Corretgé
Creating a sandbox:
137 10 Adrian Georgescu
138
<pre>
139 13 Saúl Ibarra Corretgé
mkvirtualenv -p $(which python2.7) sandbox
140
</pre>
141
142
Exiting the sandbox:
143
144
<pre>
145 10 Adrian Georgescu
deactivate
146 13 Saúl Ibarra Corretgé
</pre>
147
148
Entering the sandbox:
149
150
<pre>
151 11 Adrian Georgescu
workon sandbox
152
</pre>