From 6d4223fedfe4483af56c71c6f4a4a94dbe4f0be5 Mon Sep 17 00:00:00 2001 From: "Force.Charlie-I" Date: Wed, 8 Aug 2018 13:47:52 +0800 Subject: [PATCH] [libgit2] update to 0.27.4 (#4021) * [libgit2] update to 0.27.3 * [libgit2] Allow vcpkg_configure_cmake() to control BUILD_SHARED_LIBS * [libgit2] update 0.27.4 see: https://github.com/libgit2/libgit2/releases/tag/v0.27.4 * [libgit2] Depend on openssl on non-windows platforms --- ports/libgit2/CONTROL | 3 ++- ports/libgit2/portfile.cmake | 9 +++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/ports/libgit2/CONTROL b/ports/libgit2/CONTROL index 779bf10c9..9a2b518a4 100644 --- a/ports/libgit2/CONTROL +++ b/ports/libgit2/CONTROL @@ -1,3 +1,4 @@ Source: libgit2 -Version: 0.26.0 +Version: 0.27.4-1 +Build-Depends: openssl (!windows&&!uwp) Description: Git linkable library diff --git a/ports/libgit2/portfile.cmake b/ports/libgit2/portfile.cmake index e624e37eb..be3139a81 100644 --- a/ports/libgit2/portfile.cmake +++ b/ports/libgit2/portfile.cmake @@ -8,19 +8,16 @@ include(vcpkg_common_functions) vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO libgit2/libgit2 - REF v0.26.0 - SHA512 b6e51f2216c7c23f352572b780ea1325a25a517396709f036bb573295c2bd02aa505ba616846ac7e07863e99e640e7d47fefc5727478a257b283da99060ee47c + REF v0.27.4 + SHA512 d27db86eb1b9f0d4057f8538ba1985ee76c3ca106e57d417fa9bff79d575f91a07ad28693112b58dc1d61d68116a82e6a145f12276158f2806b6c4964d741f61 HEAD_REF master) vcpkg_configure_cmake( SOURCE_PATH ${SOURCE_PATH} PREFER_NINJA - OPTIONS + OPTIONS -DBUILD_CLAR=OFF - OPTIONS_DEBUG - -DBUILD_CLAR=OFF ) - vcpkg_install_cmake()