aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorForce.Charlie-I <fcharlie@users.noreply.github.com>2018-08-08 13:47:52 +0800
committerRobert Schumacher <roschuma@microsoft.com>2018-08-07 22:47:52 -0700
commit6d4223fedfe4483af56c71c6f4a4a94dbe4f0be5 (patch)
treeba5908ba4afef463412950c1c465229231bc78a6
parent03bdf7c20523aacddd0816e863661327a4bc21dc (diff)
downloadvcpkg-6d4223fedfe4483af56c71c6f4a4a94dbe4f0be5.tar.gz
vcpkg-6d4223fedfe4483af56c71c6f4a4a94dbe4f0be5.zip
[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
-rw-r--r--ports/libgit2/CONTROL3
-rw-r--r--ports/libgit2/portfile.cmake9
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()