| 1 |
dev-zero |
1.33 |
# Copyright 1999-2008 Gentoo Foundation |
| 2 |
liquidx |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
dev-zero |
1.33 |
# $Header: $ |
| 4 |
liquidx |
1.1 |
|
| 5 |
dev-zero |
1.33 |
# @ECLASS: python.eclass |
| 6 |
|
|
# @MAINTAINER: |
| 7 |
|
|
# python@gentoo.org |
| 8 |
|
|
# |
| 9 |
|
|
# original author: Alastair Tse <liquidx@gentoo.org> |
| 10 |
|
|
# @BLURB: A Utility Eclass that should be inherited by anything that deals with Python or Python modules. |
| 11 |
|
|
# @DESCRIPTION: |
| 12 |
|
|
# Some useful functions for dealing with python. |
| 13 |
kloeri |
1.32 |
inherit alternatives multilib |
| 14 |
liquidx |
1.1 |
|
| 15 |
liquidx |
1.2 |
|
| 16 |
carlo |
1.23 |
if [[ -n "${NEED_PYTHON}" ]] ; then |
| 17 |
swegener |
1.24 |
DEPEND=">=dev-lang/python-${NEED_PYTHON}" |
| 18 |
|
|
RDEPEND="${DEPEND}" |
| 19 |
carlo |
1.22 |
fi |
| 20 |
liquidx |
1.18 |
|
| 21 |
|
|
__python_eclass_test() { |
| 22 |
|
|
__python_version_extract 2.3 |
| 23 |
|
|
echo -n "2.3 -> PYVER: $PYVER PYVER_MAJOR: $PYVER_MAJOR" |
| 24 |
|
|
echo " PYVER_MINOR: $PYVER_MINOR PYVER_MICRO: $PYVER_MICRO" |
| 25 |
|
|
__python_version_extract 2.3.4 |
| 26 |
|
|
echo -n "2.3.4 -> PYVER: $PYVER PYVER_MAJOR: $PYVER_MAJOR" |
| 27 |
|
|
echo " PYVER_MINOR: $PYVER_MINOR PYVER_MICRO: $PYVER_MICRO" |
| 28 |
|
|
__python_version_extract 2.3.5 |
| 29 |
|
|
echo -n "2.3.5 -> PYVER: $PYVER PYVER_MAJOR: $PYVER_MAJOR" |
| 30 |
|
|
echo " PYVER_MINOR: $PYVER_MINOR PYVER_MICRO: $PYVER_MICRO" |
| 31 |
|
|
__python_version_extract 2.4 |
| 32 |
|
|
echo -n "2.4 -> PYVER: $PYVER PYVER_MAJOR: $PYVER_MAJOR" |
| 33 |
|
|
echo " PYVER_MINOR: $PYVER_MINOR PYVER_MICRO: $PYVER_MICRO" |
| 34 |
liquidx |
1.28 |
__python_version_extract 2.5b3 |
| 35 |
|
|
echo -n "2.5b3 -> PYVER: $PYVER PYVER_MAJOR: $PYVER_MAJOR" |
| 36 |
|
|
echo " PYVER_MINOR: $PYVER_MINOR PYVER_MICRO: $PYVER_MICRO" |
| 37 |
liquidx |
1.18 |
} |
| 38 |
|
|
|
| 39 |
dev-zero |
1.33 |
# @FUNCTION: python_disable_pyc |
| 40 |
|
|
# @DESCRIPTION: |
| 41 |
|
|
# Tells python not to automatically recompile modules to .pyc/.pyo |
| 42 |
|
|
# even if the timestamps/version stamps don't match. This is done |
| 43 |
|
|
# to protect sandbox. |
| 44 |
liquidx |
1.5 |
# |
| 45 |
|
|
# note: supported by >=dev-lang/python-2.2.3-r3 only. |
| 46 |
|
|
# |
| 47 |
liquidx |
1.2 |
python_disable_pyc() { |
| 48 |
liquidx |
1.3 |
export PYTHON_DONTCOMPILE=1 |
| 49 |
liquidx |
1.2 |
} |
| 50 |
liquidx |
1.1 |
|
| 51 |
dev-zero |
1.33 |
# @FUNCTION: python_enable_pyc |
| 52 |
|
|
# @DESCRIPTION: |
| 53 |
|
|
# Tells python to automatically recompile modules to .pyc/.pyo if the |
| 54 |
|
|
# timestamps/version stamps change |
| 55 |
liquidx |
1.4 |
python_enable_pyc() { |
| 56 |
|
|
unset PYTHON_DONTCOMPILE |
| 57 |
|
|
} |
| 58 |
|
|
|
| 59 |
|
|
python_disable_pyc |
| 60 |
|
|
|
| 61 |
dev-zero |
1.33 |
# @FUNCTION: python_version |
| 62 |
|
|
# @DESCRIPTION: |
| 63 |
|
|
# Run without arguments and it will export the version of python |
| 64 |
|
|
# currently in use as $PYVER; sets PYVER/PYVER_MAJOR/PYVER_MINOR |
| 65 |
liquidx |
1.18 |
__python_version_extract() { |
| 66 |
|
|
verstr=$1 |
| 67 |
|
|
export PYVER_MAJOR=${verstr:0:1} |
| 68 |
|
|
export PYVER_MINOR=${verstr:2:1} |
| 69 |
liquidx |
1.28 |
if [ "${verstr:3}x" = ".x" ]; then |
| 70 |
swegener |
1.29 |
export PYVER_MICRO=${verstr:4} |
| 71 |
liquidx |
1.28 |
fi |
| 72 |
swegener |
1.21 |
export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
| 73 |
liquidx |
1.18 |
} |
| 74 |
|
|
|
| 75 |
liquidx |
1.1 |
python_version() { |
| 76 |
|
|
local tmpstr |
| 77 |
|
|
python=${python:-/usr/bin/python} |
| 78 |
|
|
tmpstr="$(${python} -V 2>&1 )" |
| 79 |
|
|
export PYVER_ALL="${tmpstr#Python }" |
| 80 |
liquidx |
1.18 |
__python_version_extract $PYVER_ALL |
| 81 |
liquidx |
1.1 |
} |
| 82 |
|
|
|
| 83 |
dev-zero |
1.33 |
# @FUNCTION: python_makesym |
| 84 |
|
|
# @DESCRIPTION: |
| 85 |
|
|
# Run without arguments, it will create the /usr/bin/python symlinks |
| 86 |
|
|
# to the latest installed version |
| 87 |
liquidx |
1.1 |
python_makesym() { |
| 88 |
liquidx |
1.10 |
alternatives_auto_makesym "/usr/bin/python" "python[0-9].[0-9]" |
| 89 |
|
|
alternatives_auto_makesym "/usr/bin/python2" "python2.[0-9]" |
| 90 |
liquidx |
1.1 |
} |
| 91 |
|
|
|
| 92 |
dev-zero |
1.33 |
# @FUNCTION: python_tkinter_exists |
| 93 |
|
|
# @DESCRIPTION: |
| 94 |
|
|
# Run without arguments, checks if python was compiled with Tkinter |
| 95 |
|
|
# support. If not, prints an error message and dies. |
| 96 |
liquidx |
1.1 |
python_tkinter_exists() { |
| 97 |
|
|
if ! python -c "import Tkinter" >/dev/null 2>&1; then |
| 98 |
|
|
eerror "You need to recompile python with Tkinter support." |
| 99 |
kloeri |
1.30 |
eerror "Try adding: 'dev-lang/python tk'" |
| 100 |
liquidx |
1.27 |
eerror "in to /etc/portage/package.use" |
| 101 |
liquidx |
1.1 |
echo |
| 102 |
|
|
die "missing tkinter support with installed python" |
| 103 |
|
|
fi |
| 104 |
|
|
} |
| 105 |
|
|
|
| 106 |
dev-zero |
1.33 |
# @FUNCTION: python_mod_exists |
| 107 |
|
|
# @USAGE: < module > |
| 108 |
|
|
# @DESCRIPTION: |
| 109 |
|
|
# Run with the module name as an argument. it will check if a |
| 110 |
|
|
# python module is installed and loadable. it will return |
| 111 |
|
|
# TRUE(0) if the module exists, and FALSE(1) if the module does |
| 112 |
|
|
# not exist. |
| 113 |
liquidx |
1.1 |
# |
| 114 |
dev-zero |
1.33 |
# Example: |
| 115 |
liquidx |
1.1 |
# if python_mod_exists gtk; then |
| 116 |
liquidx |
1.28 |
# echo "gtk support enabled" |
| 117 |
liquidx |
1.1 |
# fi |
| 118 |
|
|
python_mod_exists() { |
| 119 |
liquidx |
1.16 |
[ -z "$1" ] && die "${FUNCTION} requires an argument!" |
| 120 |
pythonhead |
1.7 |
if ! python -c "import $1" >/dev/null 2>&1; then |
| 121 |
liquidx |
1.1 |
return 1 |
| 122 |
|
|
fi |
| 123 |
|
|
return 0 |
| 124 |
|
|
} |
| 125 |
|
|
|
| 126 |
dev-zero |
1.33 |
# @FUNCTION: python_mod_compile |
| 127 |
|
|
# @USAGE: < file > |
| 128 |
|
|
# @DESCRIPTION: |
| 129 |
|
|
# Given a filename, it will pre-compile the module's .pyc and .pyo. |
| 130 |
|
|
# should only be run in pkg_postinst() |
| 131 |
liquidx |
1.1 |
# |
| 132 |
dev-zero |
1.33 |
# Example: |
| 133 |
liquidx |
1.1 |
# python_mod_compile ${ROOT}usr/lib/python2.3/site-packages/pygoogle.py |
| 134 |
|
|
# |
| 135 |
|
|
python_mod_compile() { |
| 136 |
liquidx |
1.5 |
# allow compiling for older python versions |
| 137 |
|
|
if [ -n "${PYTHON_OVERRIDE_PYVER}" ]; then |
| 138 |
|
|
PYVER=${PYTHON_OVERRIDE_PYVER} |
| 139 |
pythonhead |
1.7 |
else |
| 140 |
liquidx |
1.5 |
python_version |
| 141 |
|
|
fi |
| 142 |
pythonhead |
1.7 |
|
| 143 |
liquidx |
1.1 |
if [ -f "$1" ]; then |
| 144 |
liquidx |
1.5 |
python${PYVER} -c "import py_compile; py_compile.compile('${1}')" || \ |
| 145 |
liquidx |
1.1 |
ewarn "Failed to compile ${1}" |
| 146 |
liquidx |
1.5 |
python${PYVER} -O -c "import py_compile; py_compile.compile('${1}')" || \ |
| 147 |
pythonhead |
1.7 |
ewarn "Failed to compile ${1}" |
| 148 |
liquidx |
1.1 |
else |
| 149 |
|
|
ewarn "Unable to find ${1}" |
| 150 |
pythonhead |
1.7 |
fi |
| 151 |
liquidx |
1.1 |
} |
| 152 |
|
|
|
| 153 |
dev-zero |
1.33 |
# @FUNCTION: python_mod_optimize |
| 154 |
|
|
# @USAGE: [ path ] |
| 155 |
|
|
# @DESCRIPTION: |
| 156 |
|
|
# If no arguments supplied, it will recompile all modules under |
| 157 |
|
|
# sys.path (eg. /usr/lib/python2.3, /usr/lib/python2.3/site-packages/ ..) |
| 158 |
|
|
# no recursively |
| 159 |
liquidx |
1.1 |
# |
| 160 |
dev-zero |
1.33 |
# If supplied with arguments, it will recompile all modules recursively |
| 161 |
|
|
# in the supplied directory |
| 162 |
|
|
# |
| 163 |
|
|
# Example: |
| 164 |
liquidx |
1.1 |
# python_mod_optimize ${ROOT}usr/share/codegen |
| 165 |
|
|
python_mod_optimize() { |
| 166 |
liquidx |
1.13 |
local myroot |
| 167 |
|
|
# strip trailing slash |
| 168 |
liquidx |
1.16 |
myroot="${ROOT%/}" |
| 169 |
liquidx |
1.13 |
|
| 170 |
liquidx |
1.5 |
# allow compiling for older python versions |
| 171 |
|
|
if [ -n "${PYTHON_OVERRIDE_PYVER}" ]; then |
| 172 |
|
|
PYVER=${PYTHON_OVERRIDE_PYVER} |
| 173 |
pythonhead |
1.7 |
else |
| 174 |
liquidx |
1.5 |
python_version |
| 175 |
|
|
fi |
| 176 |
pythonhead |
1.7 |
|
| 177 |
liquidx |
1.5 |
# set opts |
| 178 |
|
|
if [ "${PYVER}" = "2.2" ]; then |
| 179 |
|
|
compileopts="" |
| 180 |
|
|
else |
| 181 |
|
|
compileopts="-q" |
| 182 |
|
|
fi |
| 183 |
pythonhead |
1.7 |
|
| 184 |
liquidx |
1.10 |
ebegin "Byte compiling python modules for python-${PYVER} .." |
| 185 |
kloeri |
1.32 |
python${PYVER} ${myroot}/usr/$(get_libdir)/python${PYVER}/compileall.py ${compileopts} $@ |
| 186 |
|
|
python${PYVER} -O ${myroot}/usr/$(get_libdir)/python${PYVER}/compileall.py ${compileopts} $@ |
| 187 |
liquidx |
1.5 |
eend $? |
| 188 |
liquidx |
1.1 |
} |
| 189 |
|
|
|
| 190 |
dev-zero |
1.33 |
# @FUNCTION: python_mod_cleanup |
| 191 |
|
|
# @USAGE: [ dir ] |
| 192 |
|
|
# @DESCRIPTION: |
| 193 |
|
|
# Run with optional arguments, where arguments are directories of |
| 194 |
|
|
# python modules. if none given, it will look in /usr/lib/python[0-9].[0-9] |
| 195 |
|
|
# |
| 196 |
|
|
# It will recursively scan all compiled python modules in the directories |
| 197 |
|
|
# and determine if they are orphaned (eg. their corresponding .py is missing.) |
| 198 |
|
|
# if they are, then it will remove their corresponding .pyc and .pyo |
| 199 |
liquidx |
1.1 |
python_mod_cleanup() { |
| 200 |
liquidx |
1.13 |
local SEARCH_PATH myroot |
| 201 |
liquidx |
1.16 |
|
| 202 |
liquidx |
1.13 |
# strip trailing slash |
| 203 |
liquidx |
1.16 |
myroot="${ROOT%/}" |
| 204 |
liquidx |
1.1 |
|
| 205 |
liquidx |
1.5 |
if [ $# -gt 0 ]; then |
| 206 |
|
|
for path in $@; do |
| 207 |
liquidx |
1.13 |
SEARCH_PATH="${SEARCH_PATH} ${myroot}/${path#/}" |
| 208 |
pythonhead |
1.7 |
done |
| 209 |
liquidx |
1.5 |
else |
| 210 |
eradicator |
1.15 |
for path in ${myroot}/usr/lib*/python*/site-packages; do |
| 211 |
liquidx |
1.5 |
SEARCH_PATH="${SEARCH_PATH} ${path}" |
| 212 |
|
|
done |
| 213 |
|
|
fi |
| 214 |
pythonhead |
1.7 |
|
| 215 |
liquidx |
1.1 |
for path in ${SEARCH_PATH}; do |
| 216 |
liquidx |
1.11 |
einfo "Cleaning orphaned Python bytecode from ${path} .." |
| 217 |
kloeri |
1.31 |
for obj in $(find ${path} -name *.py[co]); do |
| 218 |
|
|
src_py="${obj%[co]}" |
| 219 |
liquidx |
1.1 |
if [ ! -f "${src_py}" ]; then |
| 220 |
|
|
einfo "Purging ${src_py}[co]" |
| 221 |
|
|
rm -f ${src_py}[co] |
| 222 |
|
|
fi |
| 223 |
liquidx |
1.12 |
done |
| 224 |
|
|
# attempt to remove directories that maybe empty |
| 225 |
|
|
for dir in $(find ${path} -type d | sort -r); do |
| 226 |
|
|
rmdir ${dir} 2>/dev/null |
| 227 |
liquidx |
1.1 |
done |
| 228 |
pythonhead |
1.7 |
done |
| 229 |
liquidx |
1.1 |
} |