| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 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/distutils.eclass,v 1.59 2009/08/12 02:24:34 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.69 2010/01/10 17:24:32 arfrever Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: distutils.eclass |
5 | # @ECLASS: distutils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # <python@gentoo.org> |
7 | # <python@gentoo.org> |
| 8 | # |
8 | # |
| … | |
… | |
| 22 | *) |
22 | *) |
| 23 | EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm |
23 | EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm |
| 24 | ;; |
24 | ;; |
| 25 | esac |
25 | esac |
| 26 | |
26 | |
| 27 | # @ECLASS-VARIABLE: PYTHON_SLOT_VERSION |
27 | if [[ -z "${DISTUTILS_DISABLE_PYTHON_DEPENDENCY}" ]]; then |
| 28 | # @DESCRIPTION: |
28 | DEPEND="virtual/python" |
| 29 | # This helps make it possible to add extensions to python slots. |
29 | RDEPEND="${DEPEND}" |
| 30 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
30 | fi |
| 31 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
31 | |
| 32 | DEPEND="=dev-lang/python-2.1*" |
32 | if has "${EAPI:-0}" 0 1 2; then |
| 33 | python="python2.1" |
33 | python="python" |
| 34 | elif [ "${PYTHON_SLOT_VERSION}" = "2.3" ] ; then |
|
|
| 35 | DEPEND="=dev-lang/python-2.3*" |
|
|
| 36 | python="python2.3" |
|
|
| 37 | else |
34 | else |
| 38 | DEPEND="virtual/python" |
35 | python="die" |
| 39 | python="python" |
|
|
| 40 | fi |
36 | fi |
| 41 | |
37 | |
|
|
38 | # @ECLASS-VARIABLE: DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES |
|
|
39 | # @DESCRIPTION: |
|
|
40 | # Set this to use separate source directories for each enabled version of Python. |
|
|
41 | |
|
|
42 | # @ECLASS-VARIABLE: DISTUTILS_GLOBAL_OPTIONS |
|
|
43 | # @DESCRIPTION: |
|
|
44 | # Global options passed to setup.py. |
|
|
45 | |
|
|
46 | # @ECLASS-VARIABLE: DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS |
|
|
47 | # @DESCRIPTION: |
|
|
48 | # Set this to disable renaming of Python scripts containing versioned shebangs |
|
|
49 | # and generation of wrapper scripts. |
|
|
50 | |
| 42 | # @ECLASS-VARIABLE: DOCS |
51 | # @ECLASS-VARIABLE: DOCS |
| 43 | # @DESCRIPTION: |
52 | # @DESCRIPTION: |
| 44 | # Additional DOCS |
53 | # Additional DOCS |
| 45 | |
54 | |
|
|
55 | _distutils_hook() { |
|
|
56 | if [[ "$#" -ne 1 ]]; then |
|
|
57 | die "${FUNCNAME}() requires 1 argument" |
|
|
58 | fi |
|
|
59 | if [[ "$(type -t "distutils_src_${EBUILD_PHASE}_$1_hook")" == "function" ]]; then |
|
|
60 | "distutils_src_${EBUILD_PHASE}_$1_hook" |
|
|
61 | fi |
|
|
62 | } |
|
|
63 | |
| 46 | # @FUNCTION: distutils_src_unpack |
64 | # @FUNCTION: distutils_src_unpack |
| 47 | # @DESCRIPTION: |
65 | # @DESCRIPTION: |
| 48 | # The distutils src_unpack function, this function is exported |
66 | # The distutils src_unpack function, this function is exported. |
| 49 | distutils_src_unpack() { |
67 | distutils_src_unpack() { |
| 50 | if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
68 | if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
| 51 | die "${FUNCNAME}() can be used only in src_unpack() phase" |
69 | die "${FUNCNAME}() can be used only in src_unpack() phase" |
| 52 | fi |
70 | fi |
| 53 | |
71 | |
| … | |
… | |
| 57 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
75 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
| 58 | } |
76 | } |
| 59 | |
77 | |
| 60 | # @FUNCTION: distutils_src_prepare |
78 | # @FUNCTION: distutils_src_prepare |
| 61 | # @DESCRIPTION: |
79 | # @DESCRIPTION: |
| 62 | # The distutils src_prepare function, this function is exported |
80 | # The distutils src_prepare function, this function is exported. |
| 63 | distutils_src_prepare() { |
81 | distutils_src_prepare() { |
| 64 | if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
82 | if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
| 65 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
83 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
| 66 | fi |
84 | fi |
| 67 | |
85 | |
| 68 | # remove ez_setup stuff to prevent packages |
86 | # Delete ez_setup files to prevent packages from installing |
| 69 | # from installing setuptools on their own |
87 | # Setuptools on their own. |
|
|
88 | local ez_setup_existence="0" |
|
|
89 | [[ -d ez_setup || -f ez_setup.py ]] && ez_setup_existence="1" |
| 70 | rm -rf ez_setup* |
90 | rm -fr ez_setup* |
|
|
91 | if [[ "${ez_setup_existence}" == "1" ]]; then |
| 71 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
92 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
|
|
93 | fi |
|
|
94 | |
|
|
95 | # Delete distribute_setup files to prevent packages from installing |
|
|
96 | # Distribute on their own. |
|
|
97 | local distribute_setup_existence="0" |
|
|
98 | [[ -d distribute_setup || -f distribute_setup.py ]] && distribute_setup_existence="1" |
|
|
99 | rm -fr distribute_setup* |
|
|
100 | if [[ "${distribute_setup_existence}" == "1" ]]; then |
|
|
101 | echo "def use_setuptools(*args, **kwargs): pass" > distribute_setup.py |
|
|
102 | fi |
|
|
103 | |
|
|
104 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
105 | python_copy_sources |
|
|
106 | fi |
| 72 | } |
107 | } |
| 73 | |
108 | |
| 74 | # @FUNCTION: distutils_src_compile |
109 | # @FUNCTION: distutils_src_compile |
| 75 | # @DESCRIPTION: |
110 | # @DESCRIPTION: |
| 76 | # The distutils src_compile function, this function is exported |
111 | # The distutils src_compile function, this function is exported. |
|
|
112 | # In newer EAPIs this function calls distutils_src_compile_pre_hook() and |
|
|
113 | # distutils_src_compile_post_hook(), if they are defined. |
| 77 | distutils_src_compile() { |
114 | distutils_src_compile() { |
| 78 | if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
115 | if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
| 79 | die "${FUNCNAME}() can be used only in src_compile() phase" |
116 | die "${FUNCNAME}() can be used only in src_compile() phase" |
| 80 | fi |
117 | fi |
| 81 | |
118 | |
| 82 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
119 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
120 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
| 83 | building() { |
121 | building() { |
| 84 | echo "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" "$@" |
122 | _distutils_hook pre |
| 85 | "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" "$@" |
123 | |
|
|
124 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
|
|
125 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || return "$?" |
|
|
126 | |
|
|
127 | _distutils_hook post |
| 86 | } |
128 | } |
|
|
129 | python_execute_function -s building "$@" |
|
|
130 | else |
|
|
131 | building() { |
|
|
132 | _distutils_hook pre |
|
|
133 | |
|
|
134 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" "$@" |
|
|
135 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" "$@" || return "$?" |
|
|
136 | |
|
|
137 | _distutils_hook post |
|
|
138 | } |
| 87 | python_execute_function building "$@" |
139 | python_execute_function building "$@" |
|
|
140 | fi |
| 88 | else |
141 | else |
| 89 | echo ${python} setup.py build "$@" |
142 | echo "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
| 90 | ${python} setup.py build "$@" || die "Building failed" |
143 | "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || die "Building failed" |
| 91 | fi |
144 | fi |
| 92 | } |
145 | } |
| 93 | |
146 | |
| 94 | # @FUNCTION: distutils_src_install |
147 | # @FUNCTION: distutils_src_install |
| 95 | # @DESCRIPTION: |
148 | # @DESCRIPTION: |
| 96 | # The distutils src_install function, this function is exported. |
149 | # The distutils src_install function, this function is exported. |
|
|
150 | # In newer EAPIs this function calls distutils_src_install_pre_hook() and |
|
|
151 | # distutils_src_install_post_hook(), if they are defined. |
| 97 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
152 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
| 98 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
153 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
| 99 | distutils_src_install() { |
154 | distutils_src_install() { |
| 100 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
155 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
| 101 | die "${FUNCNAME}() can be used only in src_install() phase" |
156 | die "${FUNCNAME}() can be used only in src_install() phase" |
| 102 | fi |
157 | fi |
| 103 | |
158 | |
| 104 | local pylibdir |
159 | local pylibdir |
| 105 | |
160 | |
| 106 | # Mark the package to be rebuilt after a python upgrade. |
|
|
| 107 | python_need_rebuild |
|
|
| 108 | |
|
|
| 109 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
161 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
162 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${BASH_VERSINFO[0]}" -ge "4" ]]; then |
|
|
163 | declare -A wrapper_scripts=() |
|
|
164 | |
|
|
165 | rename_scripts_with_versioned_shebangs() { |
|
|
166 | if [[ -d "${D}usr/bin" ]]; then |
|
|
167 | cd "${D}usr/bin" |
|
|
168 | |
|
|
169 | local file |
|
|
170 | for file in *; do |
|
|
171 | if [[ -f "${file}" && ! "${file}" =~ [[:digit:]]+\.[[:digit:]]+$ && "$(head -n1 "${file}")" =~ ^'#!'.*python[[:digit:]]+\.[[:digit:]]+ ]]; then |
|
|
172 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
173 | wrapper_scripts+=(["${D}usr/bin/${file}"]=) |
|
|
174 | fi |
|
|
175 | done |
|
|
176 | fi |
|
|
177 | } |
|
|
178 | fi |
|
|
179 | |
|
|
180 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
| 110 | installation() { |
181 | installation() { |
|
|
182 | _distutils_hook pre |
|
|
183 | |
| 111 | # need this for python-2.5 + setuptools in cases where |
184 | # need this for python-2.5 + setuptools in cases where |
| 112 | # a package uses distutils but does not install anything |
185 | # a package uses distutils but does not install anything |
| 113 | # in site-packages. (eg. dev-java/java-config-2.x) |
186 | # in site-packages. (eg. dev-java/java-config-2.x) |
| 114 | # - liquidx (14/08/2006) |
187 | # - liquidx (14/08/2006) |
| 115 | pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
188 | pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
| 116 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
189 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
| 117 | |
190 | |
| 118 | echo "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
191 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
| 119 | "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
192 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || return "$?" |
|
|
193 | |
|
|
194 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${BASH_VERSINFO[0]}" -ge "4" ]]; then |
|
|
195 | rename_scripts_with_versioned_shebangs |
|
|
196 | fi |
|
|
197 | |
|
|
198 | _distutils_hook post |
| 120 | } |
199 | } |
|
|
200 | python_execute_function -s installation "$@" |
|
|
201 | else |
|
|
202 | installation() { |
|
|
203 | _distutils_hook pre |
|
|
204 | |
|
|
205 | # need this for python-2.5 + setuptools in cases where |
|
|
206 | # a package uses distutils but does not install anything |
|
|
207 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
208 | # - liquidx (14/08/2006) |
|
|
209 | pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
|
|
210 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
|
|
211 | |
|
|
212 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
|
|
213 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" || return "$?" |
|
|
214 | |
|
|
215 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${BASH_VERSINFO[0]}" -ge "4" ]]; then |
|
|
216 | rename_scripts_with_versioned_shebangs |
|
|
217 | fi |
|
|
218 | |
|
|
219 | _distutils_hook post |
|
|
220 | } |
| 121 | python_execute_function installation "$@" |
221 | python_execute_function installation "$@" |
|
|
222 | fi |
|
|
223 | |
|
|
224 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${#wrapper_scripts[@]}" -ne "0" && "${BASH_VERSINFO[0]}" -ge "4" ]]; then |
|
|
225 | python_generate_wrapper_scripts "${!wrapper_scripts[@]}" |
|
|
226 | fi |
|
|
227 | unset wrapper_scripts |
| 122 | else |
228 | else |
|
|
229 | # Mark the package to be rebuilt after a Python upgrade. |
|
|
230 | python_need_rebuild |
|
|
231 | |
| 123 | # need this for python-2.5 + setuptools in cases where |
232 | # need this for python-2.5 + setuptools in cases where |
| 124 | # a package uses distutils but does not install anything |
233 | # a package uses distutils but does not install anything |
| 125 | # in site-packages. (eg. dev-java/java-config-2.x) |
234 | # in site-packages. (eg. dev-java/java-config-2.x) |
| 126 | # - liquidx (14/08/2006) |
235 | # - liquidx (14/08/2006) |
| 127 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
236 | pylibdir="$("$(PYTHON -A)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
| 128 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
237 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
| 129 | |
238 | |
| 130 | echo ${python} setup.py install --root="${D}" --no-compile "$@" |
239 | echo "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
| 131 | ${python} setup.py install --root="${D}" --no-compile "$@" || die "Installation failed" |
240 | "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || die "Installation failed" |
| 132 | fi |
241 | fi |
| 133 | |
242 | |
| 134 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
243 | if [[ -e "${D}usr/local" ]]; then |
| 135 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
244 | die "Illegal installation into /usr/local" |
|
|
245 | fi |
|
|
246 | |
|
|
247 | local default_docs |
|
|
248 | default_docs="AUTHORS Change* CHANGELOG CONTRIBUTORS KNOWN_BUGS MAINTAINERS MANIFEST* NEWS PKG-INFO README* TODO" |
| 136 | |
249 | |
| 137 | local doc |
250 | local doc |
| 138 | for doc in ${DDOCS}; do |
251 | for doc in ${default_docs}; do |
| 139 | [[ -s "$doc" ]] && dodoc $doc |
252 | [[ -s "${doc}" ]] && dodoc "${doc}" |
| 140 | done |
253 | done |
| 141 | |
254 | |
| 142 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
255 | if [[ -n "${DOCS}" ]]; then |
|
|
256 | dodoc ${DOCS} || die "dodoc failed" |
|
|
257 | fi |
| 143 | } |
258 | } |
| 144 | |
259 | |
| 145 | # @FUNCTION: distutils_pkg_postrm |
260 | # @FUNCTION: distutils_pkg_postinst |
| 146 | # @DESCRIPTION: |
261 | # @DESCRIPTION: |
| 147 | # Generic pyc/pyo cleanup script. This function is exported. |
262 | # This is a generic optimization, you should override it if your package |
|
|
263 | # installs modules in another directory. This function is exported. |
| 148 | distutils_pkg_postrm() { |
264 | distutils_pkg_postinst() { |
| 149 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
265 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
| 150 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
266 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
| 151 | fi |
267 | fi |
| 152 | |
268 | |
| 153 | local pylibdir pymod |
269 | local pylibdir pymod |
| 154 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
270 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
| 155 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
271 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
| … | |
… | |
| 157 | PYTHON_MODNAME="${PN}" |
273 | PYTHON_MODNAME="${PN}" |
| 158 | fi |
274 | fi |
| 159 | done |
275 | done |
| 160 | fi |
276 | fi |
| 161 | |
277 | |
| 162 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
278 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
279 | python_mod_optimize ${PYTHON_MODNAME} |
|
|
280 | else |
| 163 | for pymod in ${PYTHON_MODNAME}; do |
281 | for pymod in ${PYTHON_MODNAME}; do |
| 164 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
282 | python_mod_optimize "$(python_get_sitedir)/${pymod}" |
| 165 | if [[ -d "${pylibdir}/site-packages/${pymod}" ]]; then |
|
|
| 166 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
| 167 | python_mod_cleanup "${pymod}" |
|
|
| 168 | else |
|
|
| 169 | python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
|
|
| 170 | fi |
|
|
| 171 | fi |
|
|
| 172 | done |
|
|
| 173 | done |
283 | done |
| 174 | else |
|
|
| 175 | python_mod_cleanup |
|
|
| 176 | fi |
284 | fi |
| 177 | } |
285 | } |
| 178 | |
286 | |
| 179 | # @FUNCTION: distutils_pkg_postinst |
287 | # @FUNCTION: distutils_pkg_postrm |
| 180 | # @DESCRIPTION: |
288 | # @DESCRIPTION: |
| 181 | # This is a generic optimization, you should override it if your package |
289 | # Generic pyc/pyo cleanup script. This function is exported. |
| 182 | # installs modules in another directory. This function is exported. |
|
|
| 183 | distutils_pkg_postinst() { |
290 | distutils_pkg_postrm() { |
| 184 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
291 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
| 185 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
292 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
| 186 | fi |
293 | fi |
| 187 | |
294 | |
| 188 | local pylibdir pymod |
295 | local pylibdir pymod |
| 189 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
296 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
| 190 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
297 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
| … | |
… | |
| 192 | PYTHON_MODNAME="${PN}" |
299 | PYTHON_MODNAME="${PN}" |
| 193 | fi |
300 | fi |
| 194 | done |
301 | done |
| 195 | fi |
302 | fi |
| 196 | |
303 | |
|
|
304 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
| 197 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
305 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
306 | python_mod_cleanup ${PYTHON_MODNAME} |
|
|
307 | else |
| 198 | for pymod in ${PYTHON_MODNAME}; do |
308 | for pymod in ${PYTHON_MODNAME}; do |
| 199 | python_mod_optimize "${pymod}" |
309 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
310 | if [[ -d "${pylibdir}/site-packages/${pymod}" ]]; then |
|
|
311 | python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
|
|
312 | fi |
|
|
313 | done |
| 200 | done |
314 | done |
|
|
315 | fi |
| 201 | else |
316 | else |
| 202 | python_version |
317 | python_mod_cleanup |
| 203 | for pymod in ${PYTHON_MODNAME}; do |
|
|
| 204 | python_mod_optimize "/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" |
|
|
| 205 | done |
|
|
| 206 | fi |
318 | fi |
| 207 | } |
319 | } |
| 208 | |
320 | |
| 209 | # @FUNCTION: distutils_python_version |
321 | # @FUNCTION: distutils_python_version |
| 210 | # @DESCRIPTION: |
322 | # @DESCRIPTION: |
| 211 | # Calls python_version, so that you can use something like |
323 | # Calls python_version, so that you can use something like |
| 212 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
324 | # e.g. insinto $(python_get_includedir) |
| 213 | distutils_python_version() { |
325 | distutils_python_version() { |
|
|
326 | if ! has "${EAPI:-0}" 0 1 2; then |
|
|
327 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
328 | fi |
|
|
329 | |
| 214 | python_version |
330 | python_version |
| 215 | } |
331 | } |
| 216 | |
332 | |
| 217 | # @FUNCTION: distutils_python_tkinter |
333 | # @FUNCTION: distutils_python_tkinter |
| 218 | # @DESCRIPTION: |
334 | # @DESCRIPTION: |
| 219 | # Checks for if tkinter support is compiled into python |
335 | # Checks for if tkinter support is compiled into python |
| 220 | distutils_python_tkinter() { |
336 | distutils_python_tkinter() { |
|
|
337 | if ! has "${EAPI:-0}" 0 1 2; then |
|
|
338 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
339 | fi |
|
|
340 | |
| 221 | python_tkinter_exists |
341 | python_tkinter_exists |
| 222 | } |
342 | } |