| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2012 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.127 2011/07/08 07:49:36 djc Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.152 2012/03/07 04:13:27 floppym Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: python.eclass |
5 | # @ECLASS: python.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Gentoo Python Project <python@gentoo.org> |
7 | # Gentoo Python Project <python@gentoo.org> |
| 8 | # @BLURB: Eclass for Python packages |
8 | # @BLURB: Eclass for Python packages |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
| 11 | |
11 | |
|
|
12 | # Must call inherit before EXPORT_FUNCTIONS to avoid QA warning. |
|
|
13 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
| 12 | inherit multilib |
14 | inherit multilib |
|
|
15 | fi |
| 13 | |
16 | |
|
|
17 | # Export pkg_setup every time to avoid issues with eclass inheritance order. |
|
|
18 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
19 | EXPORT_FUNCTIONS pkg_setup |
|
|
20 | fi |
|
|
21 | |
|
|
22 | # Avoid processing this eclass more than once. |
|
|
23 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
|
|
24 | _PYTHON_ECLASS_INHERITED="1" |
|
|
25 | |
| 14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
26 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
| 15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
27 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 16 | fi |
28 | fi |
| 17 | |
29 | |
| 18 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
30 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
| 19 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2 3.3) |
31 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
| 20 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
32 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
| 21 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.5) |
33 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8) |
| 22 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
34 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
| 23 | |
35 | |
| 24 | # ================================================================================================ |
36 | # ================================================================================================ |
| 25 | # ===================================== HANDLING OF METADATA ===================================== |
37 | # ===================================== HANDLING OF METADATA ===================================== |
| 26 | # ================================================================================================ |
38 | # ================================================================================================ |
| … | |
… | |
| 384 | _CYAN= |
396 | _CYAN= |
| 385 | _NORMAL= |
397 | _NORMAL= |
| 386 | fi |
398 | fi |
| 387 | } |
399 | } |
| 388 | |
400 | |
| 389 | unset PYTHON_PKG_SETUP_EXECUTED |
|
|
| 390 | |
|
|
| 391 | _python_check_python_pkg_setup_execution() { |
401 | _python_check_python_pkg_setup_execution() { |
| 392 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
402 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
| 393 | |
403 | |
| 394 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
404 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
| 395 | die "python_pkg_setup() not called" |
405 | die "python_pkg_setup() not called" |
| … | |
… | |
| 463 | fi |
473 | fi |
| 464 | |
474 | |
| 465 | PYTHON_PKG_SETUP_EXECUTED="1" |
475 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 466 | } |
476 | } |
| 467 | |
477 | |
| 468 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
| 469 | EXPORT_FUNCTIONS pkg_setup |
|
|
| 470 | fi |
|
|
| 471 | |
|
|
| 472 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
478 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
| 473 | |
479 | |
| 474 | # @FUNCTION: python_convert_shebangs |
480 | # @FUNCTION: python_convert_shebangs |
| 475 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
481 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 476 | # @DESCRIPTION: |
482 | # @DESCRIPTION: |
| 477 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
483 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 478 | python_convert_shebangs() { |
484 | python_convert_shebangs() { |
| 479 | _python_check_python_pkg_setup_execution |
485 | _python_check_python_pkg_setup_execution |
| 480 | |
486 | |
| 481 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" |
487 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" shebangs_converted="0" |
| 482 | |
488 | |
| 483 | while (($#)); do |
489 | while (($#)); do |
| 484 | case "$1" in |
490 | case "$1" in |
| 485 | -r|--recursive) |
491 | -r|--recursive) |
| 486 | recursive="1" |
492 | recursive="1" |
| … | |
… | |
| 541 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
547 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 542 | |
548 | |
| 543 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
549 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
| 544 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
550 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
| 545 | |
551 | |
|
|
552 | shebangs_converted="1" |
|
|
553 | |
| 546 | if [[ "${quiet}" == "0" ]]; then |
554 | if [[ "${quiet}" == "0" ]]; then |
| 547 | einfo "Converting shebang in '${file}'" |
555 | einfo "Converting shebang in '${file}'" |
| 548 | fi |
556 | fi |
| 549 | |
557 | |
| 550 | sed -e "1s:^#![[:space:]]*\([^[:space:]]*/usr/bin/env[[:space:]]\)\?[[:space:]]*\([^[:space:]]*/\)\?\(jython\|pypy-c\|python\)\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?\(\$\|[[:space:]].*\):#!\1\2${python_interpreter}\6:" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
558 | sed -e "1s:^#![[:space:]]*\([^[:space:]]*/usr/bin/env[[:space:]]\)\?[[:space:]]*\([^[:space:]]*/\)\?\(jython\|pypy-c\|python\)\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?\(\$\|[[:space:]].*\):#!\1\2${python_interpreter}\6:" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
| 551 | fi |
559 | fi |
|
|
560 | done |
|
|
561 | |
|
|
562 | if [[ "${shebangs_converted}" == "0" ]]; then |
|
|
563 | ewarn "${FUNCNAME}(): Python scripts not found" |
|
|
564 | fi |
|
|
565 | } |
|
|
566 | |
|
|
567 | # @FUNCTION: python_clean_py-compile_files |
|
|
568 | # @USAGE: [-q|--quiet] |
|
|
569 | # @DESCRIPTION: |
|
|
570 | # Clean py-compile files to disable byte-compilation. |
|
|
571 | python_clean_py-compile_files() { |
|
|
572 | _python_check_python_pkg_setup_execution |
|
|
573 | |
|
|
574 | local file files=() quiet="0" |
|
|
575 | |
|
|
576 | while (($#)); do |
|
|
577 | case "$1" in |
|
|
578 | -q|--quiet) |
|
|
579 | quiet="1" |
|
|
580 | ;; |
|
|
581 | -*) |
|
|
582 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
583 | ;; |
|
|
584 | *) |
|
|
585 | die "${FUNCNAME}(): Invalid usage" |
|
|
586 | ;; |
|
|
587 | esac |
|
|
588 | shift |
|
|
589 | done |
|
|
590 | |
|
|
591 | while read -d $'\0' -r file; do |
|
|
592 | files+=("${file#./}") |
|
|
593 | done < <(find -name py-compile -type f -print0) |
|
|
594 | |
|
|
595 | for file in "${files[@]}"; do |
|
|
596 | if [[ "${quiet}" == "0" ]]; then |
|
|
597 | einfo "Cleaning '${file}' file" |
|
|
598 | fi |
|
|
599 | echo "#!/bin/sh" > "${file}" |
| 552 | done |
600 | done |
| 553 | } |
601 | } |
| 554 | |
602 | |
| 555 | # @FUNCTION: python_clean_installation_image |
603 | # @FUNCTION: python_clean_installation_image |
| 556 | # @USAGE: [-q|--quiet] |
604 | # @USAGE: [-q|--quiet] |
| … | |
… | |
| 794 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
842 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 795 | fi |
843 | fi |
| 796 | else |
844 | else |
| 797 | python3_version="" |
845 | python3_version="" |
| 798 | fi |
846 | fi |
|
|
847 | fi |
|
|
848 | |
|
|
849 | if [[ -z "${python2_version}" && -z "${python3_version}" ]]; then |
|
|
850 | eerror "${CATEGORY}/${PF} requires at least one of the following packages:" |
|
|
851 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
852 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
853 | eerror " dev-lang/python:${PYTHON_ABI}" |
|
|
854 | fi |
|
|
855 | done |
|
|
856 | die "No supported version of CPython installed" |
| 799 | fi |
857 | fi |
| 800 | |
858 | |
| 801 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
859 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
| 802 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
860 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
| 803 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
861 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
| … | |
… | |
| 961 | python_default_function() { |
1019 | python_default_function() { |
| 962 | emake "$@" |
1020 | emake "$@" |
| 963 | } |
1021 | } |
| 964 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
1022 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
| 965 | python_default_function() { |
1023 | python_default_function() { |
|
|
1024 | # Stolen from portage's _eapi0_src_test() |
|
|
1025 | local emake_cmd="${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE}" |
| 966 | if emake -j1 -n check &> /dev/null; then |
1026 | if ${emake_cmd} -j1 -n check &> /dev/null; then |
| 967 | emake -j1 check "$@" |
1027 | ${emake_cmd} -j1 check "$@" |
| 968 | elif emake -j1 -n test &> /dev/null; then |
1028 | elif ${emake_cmd} -j1 -n test &> /dev/null; then |
| 969 | emake -j1 test "$@" |
1029 | ${emake_cmd} -j1 test "$@" |
| 970 | fi |
1030 | fi |
| 971 | } |
1031 | } |
| 972 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
1032 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
| 973 | python_default_function() { |
1033 | python_default_function() { |
| 974 | emake DESTDIR="${D}" install "$@" |
1034 | emake DESTDIR="${D}" install "$@" |
| … | |
… | |
| 1231 | import os |
1291 | import os |
| 1232 | import re |
1292 | import re |
| 1233 | import subprocess |
1293 | import subprocess |
| 1234 | import sys |
1294 | import sys |
| 1235 | |
1295 | |
| 1236 | cpython_re = re.compile(r"^python(\d+\.\d+)$") |
1296 | cpython_ABI_re = re.compile(r"^(\d+\.\d+)$") |
|
|
1297 | jython_ABI_re = re.compile(r"^(\d+\.\d+)-jython$") |
|
|
1298 | pypy_ABI_re = re.compile(r"^\d+\.\d+-pypy-(\d+\.\d+)$") |
|
|
1299 | cpython_interpreter_re = re.compile(r"^python(\d+\.\d+)$") |
| 1237 | jython_re = re.compile(r"^jython(\d+\.\d+)$") |
1300 | jython_interpreter_re = re.compile(r"^jython(\d+\.\d+)$") |
| 1238 | pypy_re = re.compile(r"^pypy-c(\d+\.\d+)$") |
1301 | pypy_interpreter_re = re.compile(r"^pypy-c(\d+\.\d+)$") |
| 1239 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
1302 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
|
|
1303 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
| 1240 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1304 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
| 1241 | |
1305 | |
| 1242 | pypy_versions_mapping = { |
1306 | pypy_versions_mapping = { |
| 1243 | "1.5": "2.7" |
1307 | "1.5": "2.7" |
| 1244 | } |
1308 | } |
| 1245 | |
1309 | |
| 1246 | def get_PYTHON_ABI(EPYTHON): |
1310 | def get_PYTHON_ABI(python_interpreter): |
| 1247 | cpython_matched = cpython_re.match(EPYTHON) |
1311 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
| 1248 | jython_matched = jython_re.match(EPYTHON) |
1312 | jython_matched = jython_interpreter_re.match(python_interpreter) |
| 1249 | pypy_matched = pypy_re.match(EPYTHON) |
1313 | pypy_matched = pypy_interpreter_re.match(python_interpreter) |
| 1250 | if cpython_matched is not None: |
1314 | if cpython_matched is not None: |
| 1251 | PYTHON_ABI = cpython_matched.group(1) |
1315 | PYTHON_ABI = cpython_matched.group(1) |
| 1252 | elif jython_matched is not None: |
1316 | elif jython_matched is not None: |
| 1253 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
1317 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
| 1254 | elif pypy_matched is not None: |
1318 | elif pypy_matched is not None: |
| 1255 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
1319 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
| 1256 | else: |
1320 | else: |
| 1257 | PYTHON_ABI = None |
1321 | PYTHON_ABI = None |
| 1258 | return PYTHON_ABI |
1322 | return PYTHON_ABI |
| 1259 | |
1323 | |
|
|
1324 | def get_python_interpreter(PYTHON_ABI): |
|
|
1325 | cpython_matched = cpython_ABI_re.match(PYTHON_ABI) |
|
|
1326 | jython_matched = jython_ABI_re.match(PYTHON_ABI) |
|
|
1327 | pypy_matched = pypy_ABI_re.match(PYTHON_ABI) |
|
|
1328 | if cpython_matched is not None: |
|
|
1329 | python_interpreter = "python" + cpython_matched.group(1) |
|
|
1330 | elif jython_matched is not None: |
|
|
1331 | python_interpreter = "jython" + jython_matched.group(1) |
|
|
1332 | elif pypy_matched is not None: |
|
|
1333 | python_interpreter = "pypy-c" + pypy_matched.group(1) |
|
|
1334 | else: |
|
|
1335 | python_interpreter = None |
|
|
1336 | return python_interpreter |
|
|
1337 | |
| 1260 | EOF |
1338 | EOF |
| 1261 | if [[ "$?" != "0" ]]; then |
1339 | if [[ "$?" != "0" ]]; then |
| 1262 | die "${FUNCNAME}(): Generation of '$1' failed" |
1340 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1263 | fi |
1341 | fi |
| 1264 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1342 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1265 | cat << EOF >> "${file}" |
1343 | cat << EOF >> "${file}" |
| 1266 | EPYTHON = os.environ.get("EPYTHON") |
1344 | python_interpreter = os.environ.get("EPYTHON") |
| 1267 | if EPYTHON: |
1345 | if python_interpreter: |
| 1268 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1346 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1269 | if PYTHON_ABI is None: |
1347 | if PYTHON_ABI is None: |
| 1270 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], EPYTHON)) |
1348 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1271 | sys.exit(1) |
1349 | sys.exit(1) |
| 1272 | else: |
1350 | else: |
| 1273 | try: |
1351 | try: |
| 1274 | environment = os.environ.copy() |
1352 | environment = os.environ.copy() |
| 1275 | environment["ROOT"] = "/" |
1353 | environment["ROOT"] = "/" |
| … | |
… | |
| 1278 | raise ValueError |
1356 | raise ValueError |
| 1279 | except (OSError, ValueError): |
1357 | except (OSError, ValueError): |
| 1280 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
1358 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1281 | sys.exit(1) |
1359 | sys.exit(1) |
| 1282 | |
1360 | |
| 1283 | EPYTHON = eselect_process.stdout.read() |
1361 | python_interpreter = eselect_process.stdout.read() |
| 1284 | if not isinstance(EPYTHON, str): |
1362 | if not isinstance(python_interpreter, str): |
| 1285 | # Python 3 |
1363 | # Python 3 |
| 1286 | EPYTHON = EPYTHON.decode() |
1364 | python_interpreter = python_interpreter.decode() |
| 1287 | EPYTHON = EPYTHON.rstrip("\n") |
1365 | python_interpreter = python_interpreter.rstrip("\n") |
| 1288 | |
1366 | |
| 1289 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1367 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1290 | if PYTHON_ABI is None: |
1368 | if PYTHON_ABI is None: |
| 1291 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], EPYTHON)) |
1369 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1292 | sys.exit(1) |
1370 | sys.exit(1) |
| 1293 | |
1371 | |
| 1294 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
1372 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1295 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
1373 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1296 | if not os.path.exists(target_executable_path): |
1374 | if not os.path.exists(target_executable_path): |
| … | |
… | |
| 1310 | raise ValueError |
1388 | raise ValueError |
| 1311 | except (OSError, ValueError): |
1389 | except (OSError, ValueError): |
| 1312 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
1390 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1313 | sys.exit(1) |
1391 | sys.exit(1) |
| 1314 | |
1392 | |
| 1315 | EPYTHON = eselect_process.stdout.read() |
1393 | python_interpreter = eselect_process.stdout.read() |
| 1316 | if not isinstance(EPYTHON, str): |
1394 | if not isinstance(python_interpreter, str): |
| 1317 | # Python 3 |
1395 | # Python 3 |
| 1318 | EPYTHON = EPYTHON.decode() |
1396 | python_interpreter = python_interpreter.decode() |
| 1319 | EPYTHON = EPYTHON.rstrip("\n") |
1397 | python_interpreter = python_interpreter.rstrip("\n") |
| 1320 | |
1398 | |
| 1321 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1399 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1322 | if PYTHON_ABI is None: |
1400 | if PYTHON_ABI is None: |
| 1323 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], EPYTHON)) |
1401 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1324 | sys.exit(1) |
1402 | sys.exit(1) |
| 1325 | |
1403 | |
| 1326 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
1404 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1327 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
1405 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
| 1328 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
1406 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1329 | if os.path.exists(target_executable_path): |
1407 | if os.path.exists(target_executable_path): |
| 1330 | break |
1408 | break |
| 1331 | else: |
1409 | else: |
| 1332 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
1410 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
| 1333 | sys.exit(1) |
1411 | sys.exit(1) |
|
|
1412 | |
|
|
1413 | python_interpreter = get_python_interpreter(PYTHON_ABI) |
|
|
1414 | if python_interpreter is None: |
|
|
1415 | sys.stderr.write("%s: Unrecognized Python ABI '%s'\n" % (sys.argv[0], PYTHON_ABI)) |
|
|
1416 | sys.exit(1) |
| 1334 | EOF |
1417 | EOF |
| 1335 | if [[ "$?" != "0" ]]; then |
1418 | if [[ "$?" != "0" ]]; then |
| 1336 | die "${FUNCNAME}(): Generation of '$1' failed" |
1419 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1337 | fi |
1420 | fi |
| 1338 | fi |
1421 | fi |
| 1339 | cat << EOF >> "${file}" |
1422 | cat << EOF >> "${file}" |
| 1340 | |
1423 | |
| 1341 | target_executable = open(target_executable_path, "rb") |
1424 | target_executable = open(target_executable_path, "rb") |
| 1342 | target_executable_first_line = target_executable.readline() |
1425 | target_executable_first_line = target_executable.readline() |
|
|
1426 | target_executable.close() |
| 1343 | if not isinstance(target_executable_first_line, str): |
1427 | if not isinstance(target_executable_first_line, str): |
| 1344 | # Python 3 |
1428 | # Python 3 |
| 1345 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1429 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1346 | |
1430 | |
|
|
1431 | options = [] |
|
|
1432 | python_shebang_options_matched = python_shebang_options_re.match(target_executable_first_line) |
|
|
1433 | if python_shebang_options_matched is not None: |
|
|
1434 | options = [python_shebang_options_matched.group(1)] |
|
|
1435 | |
| 1347 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1436 | cpython_shebang_matched = cpython_shebang_re.match(target_executable_first_line) |
| 1348 | target_executable.close() |
|
|
| 1349 | |
1437 | |
| 1350 | if python_shebang_matched is not None: |
1438 | if cpython_shebang_matched is not None: |
| 1351 | try: |
1439 | try: |
| 1352 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1440 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % python_interpreter |
| 1353 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1441 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1354 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1442 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1355 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1443 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| 1356 | if python_verification_process.wait() != 0: |
1444 | if python_verification_process.wait() != 0: |
| 1357 | raise ValueError |
1445 | raise ValueError |
| … | |
… | |
| 1362 | python_verification_output = python_verification_output.decode() |
1450 | python_verification_output = python_verification_output.decode() |
| 1363 | |
1451 | |
| 1364 | if not python_verification_output_re.match(python_verification_output): |
1452 | if not python_verification_output_re.match(python_verification_output): |
| 1365 | raise ValueError |
1453 | raise ValueError |
| 1366 | |
1454 | |
| 1367 | if cpython_re.match(EPYTHON) is not None: |
1455 | if cpython_interpreter_re.match(python_interpreter) is not None: |
| 1368 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
1456 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
| 1369 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
1457 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
| 1370 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
1458 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
| 1371 | |
1459 | |
| 1372 | if hasattr(os, "execv"): |
1460 | if hasattr(os, "execv"): |
| 1373 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1461 | os.execv(python_interpreter_path, [python_interpreter_path] + options + sys.argv) |
| 1374 | else: |
1462 | else: |
| 1375 | sys.exit(subprocess.Popen([python_interpreter_path] + sys.argv).wait()) |
1463 | sys.exit(subprocess.Popen([python_interpreter_path] + options + sys.argv).wait()) |
| 1376 | except (KeyboardInterrupt, SystemExit): |
1464 | except (KeyboardInterrupt, SystemExit): |
| 1377 | raise |
1465 | raise |
| 1378 | except: |
1466 | except: |
| 1379 | pass |
1467 | pass |
| 1380 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
1468 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
| … | |
… | |
| 1564 | fi |
1652 | fi |
| 1565 | done |
1653 | done |
| 1566 | |
1654 | |
| 1567 | popd > /dev/null || die "popd failed" |
1655 | popd > /dev/null || die "popd failed" |
| 1568 | |
1656 | |
|
|
1657 | # This is per bug #390691, without the duplication refactor, and with |
|
|
1658 | # the 3-way structure per comment #6. This enable users with old |
|
|
1659 | # coreutils to upgrade a lot easier (you need to upgrade python+portage |
|
|
1660 | # before coreutils can be upgraded). |
|
|
1661 | if ROOT="/" has_version '>=sys-apps/coreutils-6.9.90'; then |
|
|
1662 | cp -fr --preserve=all --no-preserve=context "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
| 1569 | if ROOT="/" has_version sys-apps/coreutils; then |
1663 | elif ROOT="/" has_version sys-apps/coreutils; then |
| 1570 | cp -fr --preserve=all "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
1664 | cp -fr --preserve=all "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
| 1571 | else |
1665 | else |
| 1572 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
1666 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
| 1573 | fi |
1667 | fi |
| 1574 | done |
1668 | done |
| … | |
… | |
| 1593 | stdout = sys.stdout.buffer |
1687 | stdout = sys.stdout.buffer |
| 1594 | else: |
1688 | else: |
| 1595 | # Python 2 |
1689 | # Python 2 |
| 1596 | stdout = sys.stdout |
1690 | stdout = sys.stdout |
| 1597 | |
1691 | |
|
|
1692 | python_wrapper_scripts_file = open('${T}/python_wrapper_scripts', 'rb') |
| 1598 | files = set(open('${T}/python_wrapper_scripts', 'rb').read().rstrip(${b}'\x00').split(${b}'\x00')) |
1693 | files = set(python_wrapper_scripts_file.read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1694 | python_wrapper_scripts_file.close() |
| 1599 | |
1695 | |
| 1600 | for file in sorted(files): |
1696 | for file in sorted(files): |
| 1601 | stdout.write(file) |
1697 | stdout.write(file) |
| 1602 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
1698 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
| 1603 | |
1699 | |
| … | |
… | |
| 1668 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1764 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 1669 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1765 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| 1670 | } |
1766 | } |
| 1671 | |
1767 | |
| 1672 | # @FUNCTION: python_need_rebuild |
1768 | # @FUNCTION: python_need_rebuild |
|
|
1769 | # @DESCRIPTION: |
| 1673 | # @DESCRIPTION: Mark current package for rebuilding by python-updater after |
1770 | # Mark current package for rebuilding by python-updater after |
| 1674 | # switching of active version of Python. |
1771 | # switching of active version of Python. |
| 1675 | python_need_rebuild() { |
1772 | python_need_rebuild() { |
| 1676 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1773 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1677 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1774 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1678 | fi |
1775 | fi |
| … | |
… | |
| 2377 | _python_test_hook() { |
2474 | _python_test_hook() { |
| 2378 | if [[ "$#" -ne 1 ]]; then |
2475 | if [[ "$#" -ne 1 ]]; then |
| 2379 | die "${FUNCNAME}() requires 1 argument" |
2476 | die "${FUNCNAME}() requires 1 argument" |
| 2380 | fi |
2477 | fi |
| 2381 | |
2478 | |
| 2382 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${FUNCNAME[3]}_$1_hook")" == "function" ]]; then |
2479 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${_PYTHON_TEST_FUNCTION}_$1_hook")" == "function" ]]; then |
| 2383 | "${FUNCNAME[3]}_$1_hook" |
2480 | "${_PYTHON_TEST_FUNCTION}_$1_hook" |
| 2384 | fi |
2481 | fi |
| 2385 | } |
2482 | } |
| 2386 | |
2483 | |
| 2387 | # @FUNCTION: python_execute_nosetests |
2484 | # @FUNCTION: python_execute_nosetests |
| 2388 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
2485 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
| … | |
… | |
| 2422 | python_test_function() { |
2519 | python_test_function() { |
| 2423 | local evaluated_PYTHONPATH |
2520 | local evaluated_PYTHONPATH |
| 2424 | |
2521 | |
| 2425 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2522 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2426 | |
2523 | |
| 2427 | _python_test_hook pre |
2524 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook pre |
| 2428 | |
2525 | |
| 2429 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2526 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2430 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2527 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2431 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2528 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2432 | else |
2529 | else |
| 2433 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2530 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2434 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2531 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2435 | fi |
2532 | fi |
| 2436 | |
2533 | |
| 2437 | _python_test_hook post |
2534 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook post |
| 2438 | } |
2535 | } |
| 2439 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2536 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2440 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2537 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2441 | else |
2538 | else |
| 2442 | if [[ -n "${separate_build_dirs}" ]]; then |
2539 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2486 | python_test_function() { |
2583 | python_test_function() { |
| 2487 | local evaluated_PYTHONPATH |
2584 | local evaluated_PYTHONPATH |
| 2488 | |
2585 | |
| 2489 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2586 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2490 | |
2587 | |
| 2491 | _python_test_hook pre |
2588 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook pre |
| 2492 | |
2589 | |
| 2493 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2590 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2494 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
2591 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
| 2495 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
2592 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
| 2496 | else |
2593 | else |
| 2497 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
2594 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
| 2498 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
2595 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
| 2499 | fi |
2596 | fi |
| 2500 | |
2597 | |
| 2501 | _python_test_hook post |
2598 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook post |
| 2502 | } |
2599 | } |
| 2503 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2600 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2504 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2601 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2505 | else |
2602 | else |
| 2506 | if [[ -n "${separate_build_dirs}" ]]; then |
2603 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2550 | python_test_function() { |
2647 | python_test_function() { |
| 2551 | local evaluated_PYTHONPATH |
2648 | local evaluated_PYTHONPATH |
| 2552 | |
2649 | |
| 2553 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2650 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2554 | |
2651 | |
| 2555 | _python_test_hook pre |
2652 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook pre |
| 2556 | |
2653 | |
| 2557 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2654 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2558 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2655 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2559 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2656 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2560 | else |
2657 | else |
| 2561 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2658 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2562 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2659 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2563 | fi |
2660 | fi |
| 2564 | |
2661 | |
| 2565 | _python_test_hook post |
2662 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook post |
| 2566 | } |
2663 | } |
| 2567 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2664 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2568 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2665 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2569 | else |
2666 | else |
| 2570 | if [[ -n "${separate_build_dirs}" ]]; then |
2667 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2829 | done |
2926 | done |
| 2830 | for dir in "${evaluated_dirs[@]}"; do |
2927 | for dir in "${evaluated_dirs[@]}"; do |
| 2831 | eval "dirs+=(\"\${root}${dir}\")" |
2928 | eval "dirs+=(\"\${root}${dir}\")" |
| 2832 | done |
2929 | done |
| 2833 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
2930 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
| 2834 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2931 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2835 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
2932 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
| 2836 | fi |
2933 | fi |
| 2837 | _python_clean_compiled_modules "${dirs[@]}" |
2934 | _python_clean_compiled_modules "${dirs[@]}" |
| 2838 | fi |
2935 | fi |
| 2839 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
2936 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| … | |
… | |
| 2842 | done |
2939 | done |
| 2843 | for file in "${evaluated_files[@]}"; do |
2940 | for file in "${evaluated_files[@]}"; do |
| 2844 | eval "files+=(\"\${root}${file}\")" |
2941 | eval "files+=(\"\${root}${file}\")" |
| 2845 | done |
2942 | done |
| 2846 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
2943 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
| 2847 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2944 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2848 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
2945 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
| 2849 | fi |
2946 | fi |
| 2850 | _python_clean_compiled_modules "${files[@]}" |
2947 | _python_clean_compiled_modules "${files[@]}" |
| 2851 | fi |
2948 | fi |
| 2852 | eend "${return_code}" |
2949 | eend "${return_code}" |
| … | |
… | |
| 2873 | return_code="0" |
2970 | return_code="0" |
| 2874 | stderr="" |
2971 | stderr="" |
| 2875 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
2972 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
| 2876 | if ((${#other_dirs[@]})); then |
2973 | if ((${#other_dirs[@]})); then |
| 2877 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m compileall "${options[@]}" "${other_dirs[@]}" 2>&1)" || return_code="1" |
2974 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m compileall "${options[@]}" "${other_dirs[@]}" 2>&1)" || return_code="1" |
| 2878 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2975 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2879 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
2976 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
| 2880 | fi |
2977 | fi |
| 2881 | _python_clean_compiled_modules "${other_dirs[@]}" |
2978 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 2882 | fi |
2979 | fi |
| 2883 | if ((${#other_files[@]})); then |
2980 | if ((${#other_files[@]})); then |
| 2884 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m py_compile "${other_files[@]}" 2>&1)" || return_code="1" |
2981 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m py_compile "${other_files[@]}" 2>&1)" || return_code="1" |
| 2885 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2982 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2886 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
2983 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
| 2887 | fi |
2984 | fi |
| 2888 | _python_clean_compiled_modules "${other_files[@]}" |
2985 | _python_clean_compiled_modules "${other_files[@]}" |
| 2889 | fi |
2986 | fi |
| 2890 | eend "${return_code}" |
2987 | eend "${return_code}" |
| … | |
… | |
| 3077 | } |
3174 | } |
| 3078 | |
3175 | |
| 3079 | # ================================================================================================ |
3176 | # ================================================================================================ |
| 3080 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3177 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 3081 | # ================================================================================================ |
3178 | # ================================================================================================ |
|
|
3179 | |
|
|
3180 | fi # _PYTHON_ECLASS_INHERITED |