mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 21:11:47 +08:00
c6928dfb9e
* [python3] Update to 3.11.3 * Force set PythonForBuild on windows * Set LD_LIBRARY_PATH on unix * Always use vcpkg_find_acquire_program(PYTHON3) on windows * Remove LD_LIBRARY_PATH shenanigans * [vtk] Parse python version from include folder * Fix static builds on windows * Pass --with-build-python on unix * [omniorb] Fix python version in patch * Resurrect rpath patch * [python3] fix usage * [gobject-introspection] don't hardcode python version * Update vcpkg_find_aquire_program(PYTHON3) This is also required for gobject-introspection * [paraview] don't hardcode python version * [vtk-dicom] don't hardcode python version * Update python in vcpkgTools.xml * Fix host arch detection in vcpkg_find_acquire_program(PYTHON3) * [libpq] Don't hardcode python version * [shiva] Don't pass python variables * [vcpkg-get-python-packages] Delete unused file, update hardcoded python version * [python3] update to 3.11.4 * [omniorb] Use PREPEND in vcpkg_add_to_path So that python from vcpkg is picked before system python * libpq quickfix * re-fix libpq * fix vcpkg-get-python-packages * Make windows 7 patch compatible with unix builds * Copy pyd files to bin Also fixes copying files that do not belong to current build tree * Fix static builds * Speculatively fix osx regression * Fix omniorb on unix * [gobject-introspection] fix windows builds * [vtk] Update vendored copy of mpi4py for python 3.11 support * [mdl-sdk] Fix python * [gobject-introspection] fix the fix of a fix... * Update versions * Undo changes in gobject-introspection and vcpkg_find_aquire_program(PYTHON3) --------- Co-authored-by: root <root@DESKTOP-UIPL9V8>
118 lines
6.5 KiB
CMake
118 lines
6.5 KiB
CMake
include_guard(GLOBAL)
|
|
|
|
function(x_vcpkg_get_python_packages)
|
|
cmake_parse_arguments(PARSE_ARGV 0 arg "" "PYTHON_VERSION;PYTHON_EXECUTABLE;REQUIREMENTS_FILE;OUT_PYTHON_VAR" "PACKAGES")
|
|
|
|
if(DEFINED arg_PYTHON_VERSION AND NOT DEFINED arg_PYTHON_EXECUTABLE)
|
|
vcpkg_find_acquire_program(PYTHON${arg_PYTHON_VERSION})
|
|
set(arg_PYTHON_EXECUTABLE "${PYTHON${arg_PYTHON_VERSION}}")
|
|
endif()
|
|
|
|
if(NOT DEFINED arg_PYTHON_EXECUTABLE AND NOT DEFINED arg_PYTHON_VERSION)
|
|
message(FATAL_ERROR "PYTHON_EXECUTABLE or PYTHON_VERSION must be specified.")
|
|
elseif(NOT DEFINED arg_PYTHON_VERSION)
|
|
if(arg_PYTHON_EXECUTABLE MATCHES "(python3|python-3)")
|
|
set(arg_PYTHON_VERSION 3)
|
|
else()
|
|
set(arg_PYTHON_VERSION 2)
|
|
endif()
|
|
endif()
|
|
|
|
if(arg_PYTHON_VERSION STREQUAL "3")
|
|
set(PYTHON_VERSION_MINOR 11)
|
|
endif()
|
|
|
|
if(NOT DEFINED arg_OUT_PYTHON_VAR)
|
|
set(arg_OUT_PYTHON_VAR "PYTHON${arg_PYTHON_VERSION}")
|
|
endif()
|
|
|
|
if(NOT DEFINED arg_PACKAGES AND NOT DEFINED arg_REQUIREMENTS_FILE)
|
|
message(FATAL_ERROR "PACKAGES or REQUIREMENTS_FILE must be specified.")
|
|
endif()
|
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
|
message(FATAL_ERROR "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
|
endif()
|
|
|
|
get_filename_component(python_dir "${arg_PYTHON_EXECUTABLE}" DIRECTORY)
|
|
set(ENV{PYTHONNOUSERSITE} "1")
|
|
if("${python_dir}" MATCHES "(${DOWNLOADS}|${CURRENT_HOST_INSTALLED_DIR})" AND CMAKE_HOST_WIN32) # inside vcpkg and windows host.
|
|
if(NOT EXISTS "${python_dir}/easy_install${VCPKG_HOST_EXECUTABLE_SUFFIX}")
|
|
if(NOT EXISTS "${python_dir}/Scripts/pip${VCPKG_HOST_EXECUTABLE_SUFFIX}")
|
|
if(arg_PYTHON_VERSION STREQUAL 3)
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH PYFILE_PATH
|
|
REPO pypa/get-pip
|
|
REF 38e54e5de07c66e875c11a1ebbdb938854625dd8 #2022-03-07
|
|
SHA512 431a9f66618a2f251db3a8c3311e7fc3af3ff7364ec1d14a99f1b9c237646b6146cef8b9471d83e1086dba2ed448bccc48d99b2bb375e4235d78e76d9970d3e5
|
|
)
|
|
vcpkg_execute_required_process(COMMAND "${arg_PYTHON_EXECUTABLE}" "${PYFILE_PATH}/public/get-pip.py" --no-warn-script-location
|
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}"
|
|
LOGNAME "get-pip-${TARGET_TRIPLET}")
|
|
elseif(arg_PYTHON_VERSION STREQUAL 2)
|
|
vcpkg_download_distfile(PYFILE
|
|
URLS "https://bootstrap.pypa.io/pip/2.7/get-pip.py"
|
|
FILENAME "get-pip.py"
|
|
SHA512 8c74bdaff57a2dcf2aa69c4c218b7d5f3bf4a470dbda2d7c8d1b53862c84e2a83cd04c3cd20cf80dc0e4076b113a734413e31d6a9853f41e894398e7f88f848e
|
|
)
|
|
vcpkg_execute_required_process(COMMAND "${arg_PYTHON_EXECUTABLE}" "${PYFILE}" --no-warn-script-location
|
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}"
|
|
LOGNAME "get-pip-${TARGET_TRIPLET}")
|
|
endif()
|
|
endif()
|
|
vcpkg_execute_required_process(COMMAND "${python_dir}/Scripts/pip${VCPKG_HOST_EXECUTABLE_SUFFIX}" install virtualenv --no-warn-script-location
|
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}"
|
|
LOGNAME "pip-install-virtualenv-${TARGET_TRIPLET}")
|
|
else()
|
|
vcpkg_execute_required_process(COMMAND "${python_dir}/easy_install${VCPKG_HOST_EXECUTABLE_SUFFIX}" virtualenv --no-warn-script-location #${_package}
|
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}"
|
|
LOGNAME "easy-install-virtualenv-${TARGET_TRIPLET}")
|
|
endif()
|
|
endif()
|
|
set(venv_path "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-venv")
|
|
file(REMOVE_RECURSE "${venv_path}") # Remove old venv
|
|
file(MAKE_DIRECTORY "${venv_path}")
|
|
if(CMAKE_HOST_WIN32)
|
|
file(MAKE_DIRECTORY "${python_dir}/DLLs")
|
|
set(python_sub_path /Scripts)
|
|
set(python_venv virtualenv)
|
|
if(arg_PYTHON_VERSION STREQUAL 3)
|
|
file(COPY "${python_dir}/python3${PYTHON_VERSION_MINOR}.zip" DESTINATION "${venv_path}/Scripts")
|
|
endif()
|
|
set(python_venv_options "--app-data" "${venv_path}/data")
|
|
else()
|
|
set(python_sub_path /bin)
|
|
if(arg_PYTHON_VERSION STREQUAL 3)
|
|
set(python_venv venv)
|
|
elseif(arg_PYTHON_VERSION STREQUAL 2)
|
|
set(python_venv virtualenv)
|
|
endif()
|
|
set(python_venv_options --symlinks)
|
|
endif()
|
|
|
|
set(ENV{PYTHONNOUSERSITE} "1")
|
|
message(STATUS "Setting up python virtual environmnent...")
|
|
vcpkg_execute_required_process(COMMAND "${arg_PYTHON_EXECUTABLE}" -m "${python_venv}" ${python_venv_options} "${venv_path}"
|
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}"
|
|
LOGNAME "venv-setup-${TARGET_TRIPLET}")
|
|
vcpkg_add_to_path(PREPEND "${venv_path}${python_sub_path}")
|
|
set(${arg_OUT_PYTHON_VAR} "${venv_path}${python_sub_path}/python${VCPKG_HOST_EXECUTABLE_SUFFIX}")
|
|
set(ENV{VIRTUAL_ENV} "${venv_path}")
|
|
unset(ENV{PYTHONHOME})
|
|
unset(ENV{PYTHONPATH})
|
|
if(DEFINED arg_REQUIREMENTS_FILE)
|
|
message(STATUS "Installing requirements from: ${arg_REQUIREMENTS_FILE}")
|
|
vcpkg_execute_required_process(COMMAND "${${arg_OUT_PYTHON_VAR}}" -m pip install -r ${arg_REQUIREMENTS_FILE}
|
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}"
|
|
LOGNAME "pip-install-requirements-file-${TARGET_TRIPLET}")
|
|
endif()
|
|
if(DEFINED arg_PACKAGES)
|
|
message(STATUS "Installing python packages: ${arg_PACKAGES}")
|
|
vcpkg_execute_required_process(COMMAND "${${arg_OUT_PYTHON_VAR}}" -m pip install ${arg_PACKAGES}
|
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}"
|
|
LOGNAME "pip-install-packages-${TARGET_TRIPLET}")
|
|
endif()
|
|
message(STATUS "Setting up python virtual environmnent...finished.")
|
|
set(${arg_OUT_PYTHON_VAR} "${PYTHON${arg_PYTHON_VERSION}}" PARENT_SCOPE)
|
|
set(${arg_OUT_PYTHON_VAR} "${PYTHON${arg_PYTHON_VERSION}}" CACHE PATH "" FORCE)
|
|
endfunction()
|