mirror of
https://github.com/armbian/build.git
synced 2025-08-12 06:06:58 +02:00
- probably breaks a lot of stuff; c++ compilers, distcc, possibly others - split into late_prepare_host_dependencies / early_prepare_host_dependencies calling adaptative_prepare_host_dependencies() full of if's also: - calc deps out of configuration - reorg checks into obtain_and_check_host_release_and_arch()
58 lines
2.3 KiB
Bash
58 lines
2.3 KiB
Bash
function early_prepare_pip3_dependencies_for_python_tools() {
|
|
declare -a -g python3_pip_dependencies=(
|
|
"unidiff==0.7.4" # for parsing unified diff
|
|
"GitPython==3.1.29" # for manipulating git repos
|
|
"unidecode==1.3.6" # for converting strings to ascii
|
|
"coloredlogs==15.0.1" # for colored logging
|
|
)
|
|
return 0
|
|
}
|
|
|
|
function prepare_pip_packages_for_python_tools() {
|
|
early_prepare_pip3_dependencies_for_python_tools
|
|
|
|
declare -g PYTHON_TOOLS_PIP_PACKAGES_DONE="${PYTHON_TOOLS_PIP_PACKAGES_DONE:-no}"
|
|
if [[ "${PYTHON_TOOLS_PIP_PACKAGES_DONE}" == "yes" ]]; then
|
|
display_alert "Required Python packages" "already installed" "info"
|
|
return 0
|
|
fi
|
|
|
|
# @TODO: virtualenv? system-wide for now
|
|
display_alert "Installing required Python packages" "via pip3" "info"
|
|
declare python3_binary_path
|
|
prepare_python3_binary_for_python_tools
|
|
|
|
run_host_command_logged "${python3_binary_path}" /usr/bin/pip3 install "${python3_pip_dependencies[@]}"
|
|
|
|
return 0
|
|
}
|
|
|
|
# Called during early_prepare_host_dependencies(); when building a Dockerfile, host_release is set to the Docker image name.
|
|
function host_deps_add_extra_python() {
|
|
# check host_release is set, or bail.
|
|
[[ -z "${host_release}" ]] && exit_with_error "host_release is not set"
|
|
|
|
# host_release is from outer scope (
|
|
# Determine what version of python3; focal-like OS's have Python 3.8, but we need 3.9.
|
|
if [[ "focal ulyana ulyssa uma una" == *"${host_release}"* ]]; then
|
|
display_alert "Using Python 3.9 for" "'${host_release}' has outdated python3, using python3.9" "warn"
|
|
host_dependencies+=("python3.9-dev")
|
|
else
|
|
display_alert "Using Python3 for" "'${host_release}' has python3 >= 3.9" "debug"
|
|
fi
|
|
}
|
|
|
|
# This sets the outer scope variable 'python3_binary_path' to /usr/bin/python3 or similar, depending on version.
|
|
function prepare_python3_binary_for_python_tools() {
|
|
[[ -z "${HOSTRELEASE}" ]] && exit_with_error "HOSTRELEASE is not set"
|
|
|
|
python3_binary_path="/usr/bin/python3"
|
|
# Determine what version of python3; focal-like OS's have Python 3.8, but we need 3.9.
|
|
if [[ "focal ulyana ulyssa uma una" == *"$HOSTRELEASE"* ]]; then
|
|
python3_binary_path="/usr/bin/python3.9"
|
|
display_alert "Using '${python3_binary_path}' for" "'$HOSTRELEASE' has outdated python3, using python3.9" "warn"
|
|
else
|
|
display_alert "Using '${python3_binary_path}' for" "'$HOSTRELEASE' has python3 >= 3.9" "debug"
|
|
fi
|
|
}
|