early-access version 2853
This commit is contained in:
60
externals/vcpkg/ports/vcpkg-tool-python2/portfile.cmake
vendored
Executable file
60
externals/vcpkg/ports/vcpkg-tool-python2/portfile.cmake
vendored
Executable file
@@ -0,0 +1,60 @@
|
||||
set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
||||
|
||||
if(VCPKG_TARGET_IS_WINDOWS)
|
||||
set(arch_suffix "")
|
||||
set(program_name python)
|
||||
set(program_version 2.7.18)
|
||||
if (VCPKG_TARGET_ARCHITECTURE STREQUAL x86)
|
||||
set(tool_subdirectory "python-${program_version}-x86")
|
||||
set(download_urls "https://www.python.org/ftp/python/${program_version}/python-${program_version}.msi")
|
||||
set(download_filename "python-${program_version}.msi")
|
||||
set(download_sha512 2c112733c777ddbf189b0a54047a9d5851ebce0564cc38b9687d79ce6c7a09006109dbad8627fb1a60c3ad55e261db850d9dfa454af0533b460b2afc316fe115)
|
||||
else()
|
||||
set(tool_subdirectory "python-${program_version}-x64")
|
||||
set(arch_suffix ".amd64")
|
||||
set(download_urls "https://www.python.org/ftp/python/${program_version}/python-${program_version}.amd64.msi")
|
||||
set(download_filename "python-${program_version}.amd64.msi")
|
||||
set(download_sha512 6a81a413b80fd39893e7444fd47efa455d240cbb77a456c9d12f7cf64962b38c08cfa244cd9c50a65947c40f936c6c8c5782f7236d7b92445ab3dd01e82af23e)
|
||||
endif()
|
||||
set(paths_to_search "${CURRENT_PACKAGES_DIR}/manual-tools/${PORT}")
|
||||
|
||||
vcpkg_download_distfile(archive_path
|
||||
URLS ${download_urls}
|
||||
SHA512 "${download_sha512}"
|
||||
FILENAME "${download_filename}"
|
||||
)
|
||||
set(output_path "${CURRENT_PACKAGES_DIR}/manual-tools") # vcpkg.cmake adds everything in /tools to CMAKE_PROGRAM_PATH. That is not desired for Python2
|
||||
file(MAKE_DIRECTORY "${output_path}")
|
||||
cmake_path(NATIVE_PATH archive_path archive_path_native) # lessmsi is a bit picky about path formats.
|
||||
message(STATUS "Extracting Python2 ...")
|
||||
vcpkg_execute_in_download_mode(
|
||||
COMMAND "${CURRENT_HOST_INSTALLED_DIR}/tools/vcpkg-tool-lessmsi/lessmsi.exe" x "${archive_path_native}" # Using output_path here does not work in bash
|
||||
WORKING_DIRECTORY "${output_path}"
|
||||
OUTPUT_FILE "${CURRENT_BUILDTREES_DIR}/lessmsi-${TARGET_TRIPLET}-out.log"
|
||||
ERROR_FILE "${CURRENT_BUILDTREES_DIR}/lessmsi-${TARGET_TRIPLET}-err.log"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Couldn't extract Python2 with lessmsi!")
|
||||
endif()
|
||||
message(STATUS "Extracting Python2 ... finished!")
|
||||
file(RENAME "${output_path}/python-2.7.18${arch_suffix}/SourceDir/" "${output_path}/${PORT}/")
|
||||
file(REMOVE_RECURSE "${output_path}/python-2.7.18.amd64"
|
||||
# Files below are not part of a msiexec installation/extraction.
|
||||
"${output_path}/${PORT}/Windows"
|
||||
"${output_path}/${PORT}/Microsoft.VC90.CRT.manifest"
|
||||
"${output_path}/${PORT}/msvcr90.dll")
|
||||
z_vcpkg_find_acquire_program_find_internal("PYTHON2"
|
||||
INTERPRETER "${interpreter}"
|
||||
PATHS ${paths_to_search}
|
||||
NAMES ${program_name}
|
||||
)
|
||||
if(NOT PYTHON2)
|
||||
message(FATAL_ERROR "Unable to find python2: ${PYTHON2}")
|
||||
endif()
|
||||
message(STATUS "Using python2: ${PYTHON2}")
|
||||
set(details "set(program_version \"${program_version}\")\n")
|
||||
string(APPEND details "set(paths_to_search \"\${CURRENT_HOST_INSTALLED_DIR}/manual-tools/${PORT}\")\n")
|
||||
file(WRITE "${CURRENT_PACKAGES_DIR}/share/${PORT}/details.cmake" "${details}")
|
||||
endif()
|
||||
|
||||
15
externals/vcpkg/ports/vcpkg-tool-python2/vcpkg.json
vendored
Executable file
15
externals/vcpkg/ports/vcpkg-tool-python2/vcpkg.json
vendored
Executable file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "vcpkg-tool-python2",
|
||||
"version": "2.7.18",
|
||||
"description": "Python 2",
|
||||
"homepage": "https://www.python.org/download/releases/2.0/",
|
||||
"license": "PSF-2.0",
|
||||
"supports": "!uwp & !(arm & windows)",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "vcpkg-tool-lessmsi",
|
||||
"host": true,
|
||||
"platform": "windows"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user