2017-05-25 14:33:16 +08:00
## # vcpkg_from_github
##
## Download and extract a project from GitHub. Enables support for `install --head`.
##
## ## Usage:
## ```cmake
## vcpkg_from_github(
## OUT_SOURCE_PATH <SOURCE_PATH>
## REPO <Microsoft/cpprestsdk>
## [REF <v2.0.0>]
## [SHA512 <45d0d7f8cc350...>]
## [HEAD_REF <master>]
2018-08-12 13:12:18 +08:00
## [PATCHES <patch1.patch> <patch2.patch>...]
2017-05-25 14:33:16 +08:00
## )
## ```
##
## ## Parameters:
## ### OUT_SOURCE_PATH
## Specifies the out-variable that will contain the extracted location.
##
## This should be set to `SOURCE_PATH` by convention.
##
## ### REPO
## The organization or user and repository on GitHub.
##
## ### REF
2018-08-12 13:12:18 +08:00
## A stable git commit-ish (ideally a tag or commit) that will not change contents. **This should not be a branch.**
2017-07-19 03:26:55 +08:00
##
## For repositories without official releases, this can be set to the full commit id of the current latest master.
2017-05-25 14:33:16 +08:00
##
## If `REF` is specified, `SHA512` must also be specified.
##
## ### SHA512
## The SHA512 hash that should match the archive (https://github.com/${REPO}/archive/${REF}.tar.gz).
##
## This is most easily determined by first setting it to `1`, then trying to build the port. The error message will contain the full hash, which can be copied back into the portfile.
##
## ### HEAD_REF
## The unstable git commit-ish (ideally a branch) to pull for `--head` builds.
##
## For most projects, this should be `master`. The chosen branch should be one that is expected to be always buildable on all supported platforms.
##
2018-08-12 13:12:18 +08:00
## ### PATCHES
## A list of patches to be applied to the extracted sources.
##
## Relative paths are based on the port directory.
##
2017-05-25 14:33:16 +08:00
## ## Notes:
2017-07-19 03:26:55 +08:00
## At least one of `REF` and `HEAD_REF` must be specified, however it is preferable for both to be present.
2017-05-25 14:33:16 +08:00
##
## This exports the `VCPKG_HEAD_VERSION` variable during head builds.
##
## ## Examples:
##
## * [cpprestsdk](https://github.com/Microsoft/vcpkg/blob/master/ports/cpprestsdk/portfile.cmake)
## * [ms-gsl](https://github.com/Microsoft/vcpkg/blob/master/ports/ms-gsl/portfile.cmake)
## * [beast](https://github.com/Microsoft/vcpkg/blob/master/ports/beast/portfile.cmake)
2017-05-03 11:34:11 +08:00
function ( vcpkg_from_github )
set ( oneValueArgs OUT_SOURCE_PATH REPO REF SHA512 HEAD_REF )
2018-02-22 13:17:14 +08:00
set ( multipleValuesArgs PATCHES )
2017-05-03 11:34:11 +08:00
cmake_parse_arguments ( _vdud "" "${oneValueArgs}" "${multipleValuesArgs}" ${ ARGN } )
2017-11-26 04:47:49 +08:00
if ( NOT DEFINED _vdud_OUT_SOURCE_PATH )
2017-05-03 11:34:11 +08:00
message ( FATAL_ERROR "OUT_SOURCE_PATH must be specified." )
endif ( )
2017-11-26 04:47:49 +08:00
if ( ( DEFINED _vdud_REF AND NOT DEFINED _vdud_SHA512 ) OR ( NOT DEFINED _vdud_REF AND DEFINED _vdud_SHA512 ) )
2017-05-03 11:34:11 +08:00
message ( FATAL_ERROR "SHA512 must be specified if REF is specified." )
endif ( )
2017-11-26 04:47:49 +08:00
if ( NOT DEFINED _vdud_REPO )
2017-05-03 11:34:11 +08:00
message ( FATAL_ERROR "The GitHub repository must be specified." )
endif ( )
2017-11-26 04:47:49 +08:00
if ( NOT DEFINED _vdud_REF AND NOT DEFINED _vdud_HEAD_REF )
2017-05-03 11:34:11 +08:00
message ( FATAL_ERROR "At least one of REF and HEAD_REF must be specified." )
endif ( )
string ( REGEX REPLACE ".*/" "" REPO_NAME ${ _vdud_REPO } )
string ( REGEX REPLACE "/.*" "" ORG_NAME ${ _vdud_REPO } )
2018-02-22 13:17:14 +08:00
macro ( set_TEMP_SOURCE_PATH BASE BASEREF )
set ( TEMP_SOURCE_PATH "${BASE}/${REPO_NAME}-${BASEREF}" )
if ( NOT EXISTS ${ TEMP_SOURCE_PATH } )
# Sometimes GitHub strips a leading 'v' off the REF.
string ( REGEX REPLACE "^v" "" REF ${ BASEREF } )
string ( REPLACE "/" "-" REF ${ REF } )
set ( TEMP_SOURCE_PATH "${BASE}/${REPO_NAME}-${REF}" )
if ( NOT EXISTS ${ TEMP_SOURCE_PATH } )
message ( FATAL_ERROR "Could not determine source path: '${BASE}/${REPO_NAME}-${BASEREF}' does not exist" )
2017-05-03 11:34:11 +08:00
endif ( )
2018-02-22 13:17:14 +08:00
endif ( )
2017-05-03 11:34:11 +08:00
endmacro ( )
2017-11-26 04:47:49 +08:00
if ( VCPKG_USE_HEAD_VERSION AND NOT DEFINED _vdud_HEAD_REF )
2017-05-03 11:34:11 +08:00
message ( STATUS "Package does not specify HEAD_REF. Falling back to non-HEAD version." )
set ( VCPKG_USE_HEAD_VERSION OFF )
endif ( )
# Handle --no-head scenarios
if ( NOT VCPKG_USE_HEAD_VERSION )
if ( NOT _vdud_REF )
message ( FATAL_ERROR "Package does not specify REF. It must built using --head." )
endif ( )
2017-11-08 01:06:54 +08:00
string ( REPLACE "/" "-" SANITIZED_REF "${_vdud_REF}" )
2017-05-03 11:34:11 +08:00
vcpkg_download_distfile ( ARCHIVE
U R L S " h t t p s : / / g i t h u b . c o m / $ { O R G _ N A M E } / $ { R E P O _ N A M E } / a r c h i v e / $ { _ v d u d _ R E F } . t a r . g z "
S H A 5 1 2 " $ { _ v d u d _ S H A 5 1 2 } "
2017-11-08 01:06:54 +08:00
F I L E N A M E " $ { O R G _ N A M E } - $ { R E P O _ N A M E } - $ { S A N I T I Z E D _ R E F } . t a r . g z "
2017-05-03 11:34:11 +08:00
)
2018-02-22 13:17:14 +08:00
# Take the last 10 chars of the REF
set ( REF_MAX_LENGTH 10 )
string ( LENGTH ${ SANITIZED_REF } REF_LENGTH )
math ( EXPR FROM_REF ${ REF_LENGTH } - ${ REF_MAX_LENGTH } )
if ( FROM_REF LESS 0 )
set ( FROM_REF 0 )
endif ( )
string ( SUBSTRING ${ SANITIZED_REF } ${ FROM_REF } ${ REF_LENGTH } SHORTENED_SANITIZED_REF )
# Hash the archive hash along with the patches. Take the first 10 chars of the hash
set ( PATCHSET_HASH "${_vdud_SHA512}" )
foreach ( PATCH IN LISTS _vdud_PATCHES )
2018-08-08 19:15:13 +08:00
get_filename_component ( ABSOLUTE_PATCH "${PATCH}" ABSOLUTE BASE_DIR "${CURRENT_PORT_DIR}" )
file ( SHA512 ${ ABSOLUTE_PATCH } CURRENT_HASH )
2018-02-22 13:17:14 +08:00
string ( APPEND PATCHSET_HASH ${ CURRENT_HASH } )
endforeach ( )
string ( SHA512 PATCHSET_HASH ${ PATCHSET_HASH } )
string ( SUBSTRING ${ PATCHSET_HASH } 0 10 PATCHSET_HASH )
set ( SOURCE_PATH "${CURRENT_BUILDTREES_DIR}/src/${SHORTENED_SANITIZED_REF}-${PATCHSET_HASH}" )
if ( NOT EXISTS ${ SOURCE_PATH } )
set ( TEMP_DIR "${CURRENT_BUILDTREES_DIR}/src/TEMP" )
file ( REMOVE_RECURSE ${ TEMP_DIR } )
vcpkg_extract_source_archive_ex ( ARCHIVE "${ARCHIVE}" WORKING_DIRECTORY ${ TEMP_DIR } )
set_TEMP_SOURCE_PATH ( ${ CURRENT_BUILDTREES_DIR } /src/TEMP ${ SANITIZED_REF } )
vcpkg_apply_patches (
S O U R C E _ P A T H $ { T E M P _ S O U R C E _ P A T H }
P A T C H E S $ { _ v d u d _ P A T C H E S }
)
file ( RENAME ${ TEMP_SOURCE_PATH } ${ SOURCE_PATH } )
file ( REMOVE_RECURSE ${ TEMP_DIR } )
endif ( )
set ( ${ _vdud_OUT_SOURCE_PATH } "${SOURCE_PATH}" PARENT_SCOPE )
2018-06-27 12:48:29 +08:00
message ( STATUS "Using source at ${SOURCE_PATH}" )
2017-05-03 11:34:11 +08:00
return ( )
endif ( )
# The following is for --head scenarios
set ( URL "https://github.com/${ORG_NAME}/${REPO_NAME}/archive/${_vdud_HEAD_REF}.tar.gz" )
2017-11-08 01:06:54 +08:00
string ( REPLACE "/" "-" SANITIZED_HEAD_REF "${_vdud_HEAD_REF}" )
set ( downloaded_file_name "${ORG_NAME}-${REPO_NAME}-${SANITIZED_HEAD_REF}.tar.gz" )
2017-11-04 05:34:08 +08:00
set ( downloaded_file_path "${DOWNLOADS}/${downloaded_file_name}" )
2017-05-03 11:34:11 +08:00
if ( _VCPKG_NO_DOWNLOADS )
if ( NOT EXISTS ${ downloaded_file_path } OR NOT EXISTS ${ downloaded_file_path } .version )
message ( FATAL_ERROR "Downloads are disabled, but '${downloaded_file_path}' does not exist." )
endif ( )
message ( STATUS "Using cached ${downloaded_file_path}" )
else ( )
if ( EXISTS ${ downloaded_file_path } )
message ( STATUS "Purging cached ${downloaded_file_path} to fetch latest (use --no-downloads to suppress)" )
file ( REMOVE ${ downloaded_file_path } )
endif ( )
if ( EXISTS ${ downloaded_file_path } .version )
file ( REMOVE ${ downloaded_file_path } .version )
endif ( )
if ( EXISTS ${ CURRENT_BUILDTREES_DIR } /src/head )
file ( REMOVE_RECURSE ${ CURRENT_BUILDTREES_DIR } /src/head )
endif ( )
# Try to download the file and version information from github.
2017-11-04 05:34:08 +08:00
vcpkg_download_distfile ( ARCHIVE_VERSION
U R L S " h t t p s : / / a p i . g i t h u b . c o m / r e p o s / $ { O R G _ N A M E } / $ { R E P O _ N A M E } / g i t / r e f s / h e a d s / $ { _ v d u d _ H E A D _ R E F } "
F I L E N A M E $ { d o w n l o a d e d _ f i l e _ n a m e } . v e r s i o n
2017-12-30 06:21:18 +08:00
S K I P _ S H A 5 1 2
2017-05-03 11:34:11 +08:00
)
2017-11-04 05:34:08 +08:00
vcpkg_download_distfile ( ARCHIVE
U R L S $ { U R L }
F I L E N A M E $ { d o w n l o a d e d _ f i l e _ n a m e }
2017-12-30 06:21:18 +08:00
S K I P _ S H A 5 1 2
2017-11-04 05:34:08 +08:00
)
2017-05-03 11:34:11 +08:00
endif ( )
vcpkg_extract_source_archive_ex (
2017-11-04 05:34:08 +08:00
A R C H I V E " $ { A R C H I V E } "
2017-05-03 11:34:11 +08:00
W O R K I N G _ D I R E C T O R Y " $ { C U R R E N T _ B U I L D T R E E S _ D I R } / s r c / h e a d "
)
# Parse the github refs response with regex.
# TODO: use some JSON swiss-army-knife utility instead.
2017-11-04 05:34:08 +08:00
file ( READ "${ARCHIVE_VERSION}" _contents )
2017-05-03 11:34:11 +08:00
string ( REGEX MATCH "\" sha\ ": \" [a-f0-9]+\ "" x "${_contents}" )
string ( REGEX REPLACE "\" sha\ ": \" ( [a-f0-9]+ ) \"" "\\1" _version ${ x } )
# exports VCPKG_HEAD_VERSION to the caller. This will get picked up by ports.cmake after the build.
2018-01-06 08:16:08 +08:00
# When multiple vcpkg_from_github's are used after each other, only use the version from the first (hopefully the primary one).
if ( NOT DEFINED VCPKG_HEAD_VERSION )
set ( VCPKG_HEAD_VERSION ${ _version } PARENT_SCOPE )
endif ( )
2017-05-03 11:34:11 +08:00
2018-02-22 13:17:14 +08:00
set_TEMP_SOURCE_PATH ( ${ CURRENT_BUILDTREES_DIR } /src/head ${ SANITIZED_HEAD_REF } )
vcpkg_apply_patches (
S O U R C E _ P A T H $ { T E M P _ S O U R C E _ P A T H }
P A T C H E S $ { _ v d u d _ P A T C H E S }
)
set ( ${ _vdud_OUT_SOURCE_PATH } "${TEMP_SOURCE_PATH}" PARENT_SCOPE )
2018-06-27 12:48:29 +08:00
message ( STATUS "Using source at ${TEMP_SOURCE_PATH}" )
2017-05-03 11:34:11 +08:00
endfunction ( )