mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 14:41:18 +08:00
c561d1ec13
- [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [x] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. --------- Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
119 lines
4.1 KiB
CMake
119 lines
4.1 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO libgit2/libgit2
|
|
REF v1.8.0
|
|
SHA512 e5634267bd9c6a594c9a954d09c657e7b8aadf213609bf7dd83b99863d0d0c7109a5277617dd508abc2da54ea3f12c2af1908d1aeb73c000e94056e2f3653144
|
|
HEAD_REF main
|
|
PATCHES
|
|
c-standard.diff # for 'inline' in system headers
|
|
cli-include-dirs.diff
|
|
dependencies.diff
|
|
mingw-winhttp.diff
|
|
unofficial-config-export.diff
|
|
)
|
|
file(REMOVE_RECURSE
|
|
"${SOURCE_PATH}/cmake/FindPCRE.cmake"
|
|
"${SOURCE_PATH}/cmake/FindPCRE2.cmake"
|
|
"${SOURCE_PATH}/deps/chromium-zlib"
|
|
"${SOURCE_PATH}/deps/http-parser"
|
|
"${SOURCE_PATH}/deps/pcre"
|
|
"${SOURCE_PATH}/deps/winhttp"
|
|
"${SOURCE_PATH}/deps/zlib"
|
|
)
|
|
|
|
string(COMPARE EQUAL "${VCPKG_CRT_LINKAGE}" "static" STATIC_CRT)
|
|
|
|
set(REGEX_BACKEND OFF)
|
|
set(USE_HTTPS OFF)
|
|
set(USE_SSH OFF)
|
|
|
|
function(set_regex_backend VALUE)
|
|
if(REGEX_BACKEND)
|
|
message(FATAL_ERROR "Only one regex backend (pcre,pcre2) is allowed")
|
|
endif()
|
|
set(REGEX_BACKEND ${VALUE} PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
function(set_tls_backend VALUE)
|
|
if(USE_HTTPS)
|
|
message(FATAL_ERROR "Only one TLS backend (openssl,winhttp,sectransp,mbedtls) is allowed")
|
|
endif()
|
|
set(USE_HTTPS ${VALUE} PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
foreach(GIT2_FEATURE ${FEATURES})
|
|
if(GIT2_FEATURE STREQUAL "pcre")
|
|
set_regex_backend("pcre")
|
|
elseif(GIT2_FEATURE STREQUAL "pcre2")
|
|
set_regex_backend("pcre2")
|
|
elseif(GIT2_FEATURE STREQUAL "openssl")
|
|
set_tls_backend("OpenSSL")
|
|
elseif(GIT2_FEATURE STREQUAL "winhttp")
|
|
set_tls_backend("WinHTTP")
|
|
elseif(GIT2_FEATURE STREQUAL "sectransp")
|
|
set_tls_backend("SecureTransport")
|
|
elseif(GIT2_FEATURE STREQUAL "mbedtls")
|
|
set_tls_backend("mbedTLS")
|
|
elseif(GIT2_FEATURE STREQUAL "ssh")
|
|
set(USE_SSH ON)
|
|
message(STATUS "This version of `libgit2` uses the default (`libssh2`) backend. To use the newer backend which utilizes the `ssh` CLI from a local install of OpenSSH instead, create an overlay port of this with USE_SSH set to 'exec' and the `libssh2` dependency removed.")
|
|
message(STATUS "This recipe is at ${CMAKE_CURRENT_LIST_DIR}")
|
|
message(STATUS "See the overlay ports documentation at https://learn.microsoft.com/vcpkg/concepts/overlay-ports")
|
|
endif()
|
|
endforeach()
|
|
|
|
if(NOT REGEX_BACKEND)
|
|
message(FATAL_ERROR "Must choose pcre or pcre2 regex backend")
|
|
endif()
|
|
|
|
vcpkg_find_acquire_program(PKGCONFIG)
|
|
|
|
vcpkg_check_features(
|
|
OUT_FEATURE_OPTIONS GIT2_FEATURES
|
|
FEATURES
|
|
tools BUILD_CLI
|
|
)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DBUILD_TESTS=OFF
|
|
-DUSE_HTTP_PARSER=system
|
|
-DUSE_HTTPS=${USE_HTTPS}
|
|
-DREGEX_BACKEND=${REGEX_BACKEND}
|
|
-DUSE_SSH=${USE_SSH}
|
|
-DSTATIC_CRT=${STATIC_CRT}
|
|
"-DPKG_CONFIG_EXECUTABLE=${PKGCONFIG}"
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_GSSAPI:BOOL=ON
|
|
${GIT2_FEATURES}
|
|
OPTIONS_DEBUG
|
|
-DBUILD_CLI=OFF
|
|
MAYBE_UNUSED_VARIABLES
|
|
STATIC_CRT
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/unofficial-git2-config.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/unofficial-git2")
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/unofficial-libgit2-config.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/unofficial-libgit2")
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-libgit2 CONFIG_PATH share/unofficial-libgit2)
|
|
|
|
if("tools" IN_LIST FEATURES)
|
|
vcpkg_copy_tools(TOOL_NAMES git2 AUTO_CLEAN)
|
|
endif()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
|
|
set(file_list "${SOURCE_PATH}/COPYING")
|
|
if(NOT VCPKG_TARGET_IS_WINDOWS)
|
|
file(WRITE "${CURRENT_BUILDTREES_DIR}/Notice for ntlmclient" [[
|
|
Copyright (c) Edward Thomson. All rights reserved.
|
|
These source files are part of ntlmclient, distributed under the MIT license.
|
|
]])
|
|
list(APPEND file_list "${CURRENT_BUILDTREES_DIR}/Notice for ntlmclient")
|
|
endif()
|
|
vcpkg_install_copyright(FILE_LIST ${file_list})
|