| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2008 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.31 2007/02/03 02:10:23 kloeri Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.39 2008/05/29 21:19:19 hawking Exp $ |
|
|
4 | |
|
|
5 | # @ECLASS: python.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # python@gentoo.org |
| 4 | # |
8 | # |
| 5 | # Author: Alastair Tse <liquidx@gentoo.org> |
9 | # original author: Alastair Tse <liquidx@gentoo.org> |
| 6 | # |
|
|
| 7 | # A Utility Eclass that should be inherited by anything that deals with |
10 | # @BLURB: A Utility Eclass that should be inherited by anything that deals with Python or Python modules. |
| 8 | # Python or Python modules. |
11 | # @DESCRIPTION: |
| 9 | # |
12 | # Some useful functions for dealing with python. |
| 10 | # - Features: |
|
|
| 11 | # python_version() - sets PYVER/PYVER_MAJOR/PYVER_MINOR |
|
|
| 12 | # python_tkinter_exists() - Checks for tkinter support in python |
|
|
| 13 | # python_mod_exists() - Checks if a python module exists |
|
|
| 14 | # python_mod_compile() - Compiles a .py file to a .pyc/.pyo |
|
|
| 15 | # python_mod_optimize() - Generates .pyc/.pyo precompiled scripts |
|
|
| 16 | # python_mod_cleanup() - Goes through /usr/lib*/python* to remove |
|
|
| 17 | # orphaned *.pyc *.pyo |
|
|
| 18 | # python_makesym() - Makes /usr/bin/python symlinks |
|
|
| 19 | |
|
|
| 20 | inherit alternatives |
13 | inherit alternatives multilib |
| 21 | |
14 | |
| 22 | |
15 | |
| 23 | if [[ -n "${NEED_PYTHON}" ]] ; then |
16 | if [[ -n "${NEED_PYTHON}" ]] ; then |
| 24 | DEPEND=">=dev-lang/python-${NEED_PYTHON}" |
17 | DEPEND=">=dev-lang/python-${NEED_PYTHON}" |
| 25 | RDEPEND="${DEPEND}" |
18 | RDEPEND="${DEPEND}" |
| … | |
… | |
| 41 | __python_version_extract 2.5b3 |
34 | __python_version_extract 2.5b3 |
| 42 | echo -n "2.5b3 -> PYVER: $PYVER PYVER_MAJOR: $PYVER_MAJOR" |
35 | echo -n "2.5b3 -> PYVER: $PYVER PYVER_MAJOR: $PYVER_MAJOR" |
| 43 | echo " PYVER_MINOR: $PYVER_MINOR PYVER_MICRO: $PYVER_MICRO" |
36 | echo " PYVER_MINOR: $PYVER_MINOR PYVER_MICRO: $PYVER_MICRO" |
| 44 | } |
37 | } |
| 45 | |
38 | |
| 46 | # |
39 | # @FUNCTION: python_disable_pyc |
| 47 | # name: python_disable/enable_pyc |
40 | # @DESCRIPTION: |
| 48 | # desc: tells python not to automatically recompile modules to .pyc/.pyo |
41 | # Tells python not to automatically recompile modules to .pyc/.pyo |
| 49 | # even if the timestamps/version stamps don't match. this is |
42 | # even if the timestamps/version stamps don't match. This is done |
| 50 | # done to protect sandbox. |
43 | # to protect sandbox. |
| 51 | # |
44 | # |
| 52 | # note: supported by >=dev-lang/python-2.2.3-r3 only. |
45 | # note: supported by >=dev-lang/python-2.2.3-r3 only. |
| 53 | # |
46 | # |
| 54 | python_disable_pyc() { |
47 | python_disable_pyc() { |
| 55 | export PYTHON_DONTCOMPILE=1 |
48 | export PYTHON_DONTCOMPILE=1 |
| 56 | } |
49 | } |
| 57 | |
50 | |
|
|
51 | # @FUNCTION: python_enable_pyc |
|
|
52 | # @DESCRIPTION: |
|
|
53 | # Tells python to automatically recompile modules to .pyc/.pyo if the |
|
|
54 | # timestamps/version stamps change |
| 58 | python_enable_pyc() { |
55 | python_enable_pyc() { |
| 59 | unset PYTHON_DONTCOMPILE |
56 | unset PYTHON_DONTCOMPILE |
| 60 | } |
57 | } |
| 61 | |
58 | |
| 62 | python_disable_pyc |
59 | python_disable_pyc |
| 63 | |
60 | |
| 64 | # |
61 | # @FUNCTION: python_version |
| 65 | # name: python_version |
62 | # @DESCRIPTION: |
| 66 | # desc: run without arguments and it will export the version of python |
63 | # Run without arguments and it will export the version of python |
| 67 | # currently in use as $PYVER |
64 | # currently in use as $PYVER; sets PYVER/PYVER_MAJOR/PYVER_MINOR |
| 68 | # |
|
|
| 69 | |
|
|
| 70 | __python_version_extract() { |
65 | __python_version_extract() { |
| 71 | verstr=$1 |
66 | verstr=$1 |
| 72 | export PYVER_MAJOR=${verstr:0:1} |
67 | export PYVER_MAJOR=${verstr:0:1} |
| 73 | export PYVER_MINOR=${verstr:2:1} |
68 | export PYVER_MINOR=${verstr:2:1} |
| 74 | if [ "${verstr:3}x" = ".x" ]; then |
69 | if [ "${verstr:3}x" = ".x" ]; then |
| … | |
… | |
| 83 | tmpstr="$(${python} -V 2>&1 )" |
78 | tmpstr="$(${python} -V 2>&1 )" |
| 84 | export PYVER_ALL="${tmpstr#Python }" |
79 | export PYVER_ALL="${tmpstr#Python }" |
| 85 | __python_version_extract $PYVER_ALL |
80 | __python_version_extract $PYVER_ALL |
| 86 | } |
81 | } |
| 87 | |
82 | |
| 88 | # |
83 | # @FUNCTION: python_makesym |
| 89 | # name: python_makesym |
84 | # @DESCRIPTION: |
| 90 | # desc: run without arguments, it will create the /usr/bin/python symlinks |
85 | # Run without arguments, it will create the /usr/bin/python symlinks |
| 91 | # to the latest installed version |
86 | # to the latest installed version |
| 92 | # |
|
|
| 93 | python_makesym() { |
87 | python_makesym() { |
| 94 | alternatives_auto_makesym "/usr/bin/python" "python[0-9].[0-9]" |
88 | alternatives_auto_makesym "/usr/bin/python" "python[0-9].[0-9]" |
| 95 | alternatives_auto_makesym "/usr/bin/python2" "python2.[0-9]" |
89 | alternatives_auto_makesym "/usr/bin/python2" "python2.[0-9]" |
| 96 | } |
90 | } |
| 97 | |
91 | |
| 98 | # |
|
|
| 99 | # name: python_tkinter_exists |
92 | # @FUNCTION: python_tkinter_exists |
|
|
93 | # @DESCRIPTION: |
| 100 | # desc: run without arguments, checks if python was compiled with Tkinter |
94 | # Run without arguments, checks if python was compiled with Tkinter |
| 101 | # support. If not, prints an error message and dies. |
95 | # support. If not, prints an error message and dies. |
| 102 | # |
|
|
| 103 | python_tkinter_exists() { |
96 | python_tkinter_exists() { |
| 104 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
97 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
| 105 | eerror "You need to recompile python with Tkinter support." |
98 | eerror "You need to recompile python with Tkinter support." |
| 106 | eerror "Try adding: 'dev-lang/python tk'" |
99 | eerror "Try adding: 'dev-lang/python tk'" |
| 107 | eerror "in to /etc/portage/package.use" |
100 | eerror "in to /etc/portage/package.use" |
| 108 | echo |
101 | echo |
| 109 | die "missing tkinter support with installed python" |
102 | die "missing tkinter support with installed python" |
| 110 | fi |
103 | fi |
| 111 | } |
104 | } |
| 112 | |
105 | |
| 113 | # |
106 | # @FUNCTION: python_mod_exists |
| 114 | # name: python_mod_exists |
107 | # @USAGE: < module > |
|
|
108 | # @DESCRIPTION: |
| 115 | # desc: run with the module name as an argument. it will check if a |
109 | # Run with the module name as an argument. it will check if a |
| 116 | # python module is installed and loadable. it will return |
110 | # python module is installed and loadable. it will return |
| 117 | # TRUE(0) if the module exists, and FALSE(1) if the module does |
111 | # TRUE(0) if the module exists, and FALSE(1) if the module does |
| 118 | # not exist. |
112 | # not exist. |
| 119 | # exam: |
113 | # |
|
|
114 | # Example: |
| 120 | # if python_mod_exists gtk; then |
115 | # if python_mod_exists gtk; then |
| 121 | # echo "gtk support enabled" |
116 | # echo "gtk support enabled" |
| 122 | # fi |
117 | # fi |
| 123 | # |
|
|
| 124 | python_mod_exists() { |
118 | python_mod_exists() { |
| 125 | [ -z "$1" ] && die "${FUNCTION} requires an argument!" |
119 | [ -z "$1" ] && die "${FUNCTION} requires an argument!" |
| 126 | if ! python -c "import $1" >/dev/null 2>&1; then |
120 | if ! python -c "import $1" >/dev/null 2>&1; then |
| 127 | return 1 |
121 | return 1 |
| 128 | fi |
122 | fi |
| 129 | return 0 |
123 | return 0 |
| 130 | } |
124 | } |
| 131 | |
125 | |
| 132 | # |
126 | # @FUNCTION: python_mod_compile |
| 133 | # name: python_mod_compile |
127 | # @USAGE: < file > [more files ...] |
|
|
128 | # @DESCRIPTION: |
| 134 | # desc: given a filename, it will pre-compile the module's .pyc and .pyo. |
129 | # Given filenames, it will pre-compile the module's .pyc and .pyo. |
| 135 | # should only be run in pkg_postinst() |
130 | # This function should only be run in pkg_postinst() |
| 136 | # exam: |
131 | # |
|
|
132 | # Example: |
| 137 | # python_mod_compile ${ROOT}usr/lib/python2.3/site-packages/pygoogle.py |
133 | # python_mod_compile /usr/lib/python2.3/site-packages/pygoogle.py |
| 138 | # |
134 | # |
| 139 | python_mod_compile() { |
135 | python_mod_compile() { |
|
|
136 | local f myroot |
|
|
137 | |
|
|
138 | # Check if phase is pkg_postinst() |
|
|
139 | [[ ${EBUILD_PHASE} != postinst ]] &&\ |
|
|
140 | die "${FUNCNAME} should only be run in pkg_postinst()" |
|
|
141 | |
| 140 | # allow compiling for older python versions |
142 | # allow compiling for older python versions |
| 141 | if [ -n "${PYTHON_OVERRIDE_PYVER}" ]; then |
143 | if [ -n "${PYTHON_OVERRIDE_PYVER}" ]; then |
| 142 | PYVER=${PYTHON_OVERRIDE_PYVER} |
144 | PYVER=${PYTHON_OVERRIDE_PYVER} |
| 143 | else |
145 | else |
| 144 | python_version |
146 | python_version |
| 145 | fi |
147 | fi |
| 146 | |
148 | |
| 147 | if [ -f "$1" ]; then |
|
|
| 148 | python${PYVER} -c "import py_compile; py_compile.compile('${1}')" || \ |
|
|
| 149 | ewarn "Failed to compile ${1}" |
|
|
| 150 | python${PYVER} -O -c "import py_compile; py_compile.compile('${1}')" || \ |
|
|
| 151 | ewarn "Failed to compile ${1}" |
|
|
| 152 | else |
|
|
| 153 | ewarn "Unable to find ${1}" |
|
|
| 154 | fi |
|
|
| 155 | } |
|
|
| 156 | |
|
|
| 157 | # |
|
|
| 158 | # name: python_mod_optimize |
|
|
| 159 | # desc: if no arguments supplied, it will recompile all modules under |
|
|
| 160 | # sys.path (eg. /usr/lib/python2.3, /usr/lib/python2.3/site-packages/ ..) |
|
|
| 161 | # no recursively |
|
|
| 162 | # |
|
|
| 163 | # if supplied with arguments, it will recompile all modules recursively |
|
|
| 164 | # in the supplied directory |
|
|
| 165 | # exam: |
|
|
| 166 | # python_mod_optimize ${ROOT}usr/share/codegen |
|
|
| 167 | # |
|
|
| 168 | python_mod_optimize() { |
|
|
| 169 | local myroot |
|
|
| 170 | # strip trailing slash |
149 | # strip trailing slash |
| 171 | myroot="${ROOT%/}" |
150 | myroot="${ROOT%/}" |
|
|
151 | |
|
|
152 | # respect ROOT |
|
|
153 | for f in $@; do |
|
|
154 | [ -f "${myroot}/${f}" ] && myfiles="${myfiles} ${myroot}/${f}" |
|
|
155 | done |
|
|
156 | |
|
|
157 | if [ -n "${myfiles}" ]; then |
|
|
158 | python${PYVER} ${myroot}/usr/$(get_libdir)/python${PYVER}/py_compile.py ${myfiles} |
|
|
159 | python${PYVER} -O ${myroot}/usr/$(get_libdir)/python${PYVER}/py_compile.py ${myfiles} |
|
|
160 | else |
|
|
161 | ewarn "No files to compile!" |
|
|
162 | fi |
|
|
163 | } |
|
|
164 | |
|
|
165 | # @FUNCTION: python_mod_optimize |
|
|
166 | # @USAGE: [ path ] |
|
|
167 | # @DESCRIPTION: |
|
|
168 | # If no arguments supplied, it will recompile all modules under |
|
|
169 | # sys.path (eg. /usr/lib/python2.3, /usr/lib/python2.3/site-packages/ ..) |
|
|
170 | # no recursively |
|
|
171 | # |
|
|
172 | # If supplied with arguments, it will recompile all modules recursively |
|
|
173 | # in the supplied directory |
|
|
174 | # This function should only be run in pkg_postinst() |
|
|
175 | # |
|
|
176 | # Options passed to this function are passed to compileall.py |
|
|
177 | # |
|
|
178 | # Example: |
|
|
179 | # python_mod_optimize /usr/share/codegen |
|
|
180 | python_mod_optimize() { |
|
|
181 | local mydirs myfiles myroot myopts path |
|
|
182 | |
|
|
183 | # Check if phase is pkg_postinst() |
|
|
184 | [[ ${EBUILD_PHASE} != postinst ]] &&\ |
|
|
185 | die "${FUNCNAME} should only be run in pkg_postinst()" |
|
|
186 | |
|
|
187 | # strip trailing slash |
|
|
188 | myroot="${ROOT%/}" |
|
|
189 | |
|
|
190 | # respect ROOT and options passed to compileall.py |
|
|
191 | while [ $# -gt 0 ]; do |
|
|
192 | case $1 in |
|
|
193 | -l|-f|-q) |
|
|
194 | myopts="${myopts} $1" |
|
|
195 | ;; |
|
|
196 | -d|-x) |
|
|
197 | # -x takes regexp as argument so quoting is necessary. |
|
|
198 | myopts="${myopts} $1 \"$2\"" |
|
|
199 | shift |
|
|
200 | ;; |
|
|
201 | -*) |
|
|
202 | ewarn "${FUNCNAME}: Ignoring compile option $1" |
|
|
203 | ;; |
|
|
204 | *) |
|
|
205 | for path in $@; do |
|
|
206 | [ ! -e "${myroot}/${path}" ] && ewarn "${myroot}/${path} doesn't exist!" |
|
|
207 | [ -d "${myroot}/${path#/}" ] && mydirs="${mydirs} ${myroot}/${path#/}" |
|
|
208 | # Files are passed to python_mod_compile which is ROOT-aware |
|
|
209 | [ -f "${myroot}/${path}" ] && myfiles="${myfiles} ${path}" |
|
|
210 | done |
|
|
211 | ;; |
|
|
212 | esac |
|
|
213 | shift |
|
|
214 | done |
| 172 | |
215 | |
| 173 | # allow compiling for older python versions |
216 | # allow compiling for older python versions |
| 174 | if [ -n "${PYTHON_OVERRIDE_PYVER}" ]; then |
217 | if [ -n "${PYTHON_OVERRIDE_PYVER}" ]; then |
| 175 | PYVER=${PYTHON_OVERRIDE_PYVER} |
218 | PYVER=${PYTHON_OVERRIDE_PYVER} |
| 176 | else |
219 | else |
| … | |
… | |
| 183 | else |
226 | else |
| 184 | compileopts="-q" |
227 | compileopts="-q" |
| 185 | fi |
228 | fi |
| 186 | |
229 | |
| 187 | ebegin "Byte compiling python modules for python-${PYVER} .." |
230 | ebegin "Byte compiling python modules for python-${PYVER} .." |
| 188 | python${PYVER} ${myroot}/usr/lib/python${PYVER}/compileall.py ${compileopts} $@ |
231 | if [ -n "${mydirs}" ]; then |
| 189 | python${PYVER} -O ${myroot}/usr/lib/python${PYVER}/compileall.py ${compileopts} $@ |
232 | python${PYVER} \ |
|
|
233 | ${myroot}/usr/$(get_libdir)/python${PYVER}/compileall.py \ |
|
|
234 | ${compileopts} ${myopts} ${mydirs} |
|
|
235 | python${PYVER} -O \ |
|
|
236 | ${myroot}/usr/$(get_libdir)/python${PYVER}/compileall.py \ |
|
|
237 | ${compileopts} ${myopts} ${mydirs} |
|
|
238 | fi |
|
|
239 | |
|
|
240 | if [ -n "${myfiles}" ]; then |
|
|
241 | python_mod_compile ${myfiles} |
|
|
242 | fi |
|
|
243 | |
| 190 | eend $? |
244 | eend $? |
| 191 | } |
245 | } |
| 192 | |
246 | |
| 193 | # |
247 | # @FUNCTION: python_mod_cleanup |
| 194 | # name: python_mod_cleanup |
248 | # @USAGE: [ dir ] |
|
|
249 | # @DESCRIPTION: |
| 195 | # desc: run with optional arguments, where arguments are directories of |
250 | # Run with optional arguments, where arguments are directories of |
| 196 | # python modules. if none given, it will look in /usr/lib/python[0-9].[0-9] |
251 | # python modules. if none given, it will look in /usr/lib/python[0-9].[0-9] |
| 197 | # |
252 | # |
| 198 | # it will recursively scan all compiled python modules in the directories |
253 | # It will recursively scan all compiled python modules in the directories |
| 199 | # and determine if they are orphaned (eg. their corresponding .py is missing.) |
254 | # and determine if they are orphaned (eg. their corresponding .py is missing.) |
| 200 | # if they are, then it will remove their corresponding .pyc and .pyo |
255 | # if they are, then it will remove their corresponding .pyc and .pyo |
| 201 | # |
256 | # |
|
|
257 | # This function should only be run in pkg_postrm() |
| 202 | python_mod_cleanup() { |
258 | python_mod_cleanup() { |
| 203 | local SEARCH_PATH myroot |
259 | local SEARCH_PATH myroot |
|
|
260 | |
|
|
261 | # Check if phase is pkg_postrm() |
|
|
262 | [[ ${EBUILD_PHASE} != postrm ]] &&\ |
|
|
263 | die "${FUNCNAME} should only be run in pkg_postrm()" |
| 204 | |
264 | |
| 205 | # strip trailing slash |
265 | # strip trailing slash |
| 206 | myroot="${ROOT%/}" |
266 | myroot="${ROOT%/}" |
| 207 | |
267 | |
| 208 | if [ $# -gt 0 ]; then |
268 | if [ $# -gt 0 ]; then |
| … | |
… | |
| 215 | done |
275 | done |
| 216 | fi |
276 | fi |
| 217 | |
277 | |
| 218 | for path in ${SEARCH_PATH}; do |
278 | for path in ${SEARCH_PATH}; do |
| 219 | einfo "Cleaning orphaned Python bytecode from ${path} .." |
279 | einfo "Cleaning orphaned Python bytecode from ${path} .." |
| 220 | for obj in $(find ${path} -name *.py[co]); do |
280 | for obj in $(find ${path} -name '*.py[co]'); do |
| 221 | src_py="${obj%[co]}" |
281 | src_py="${obj%[co]}" |
| 222 | if [ ! -f "${src_py}" ]; then |
282 | if [ ! -f "${src_py}" ]; then |
| 223 | einfo "Purging ${src_py}[co]" |
283 | einfo "Purging ${src_py}[co]" |
| 224 | rm -f ${src_py}[co] |
284 | rm -f ${src_py}[co] |
| 225 | fi |
285 | fi |