aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJinmingHu <jinmhu@microsoft.com>2020-01-14 06:45:02 +0800
committerRobert Schumacher <roschuma@microsoft.com>2020-01-13 14:45:02 -0800
commitf5253439baed67bfec5fd9b4d663976e0d318914 (patch)
treea66003b1c7476fa67b0bb3e3b208287197e9f447
parent649e830d9fad35f10fbfab2c86776283a5a8434f (diff)
downloadvcpkg-f5253439baed67bfec5fd9b4d663976e0d318914.tar.gz
vcpkg-f5253439baed67bfec5fd9b4d663976e0d318914.zip
[azure-storage-cpp]Upgrade to 7.1.0 (#9646)
-rw-r--r--ports/azure-storage-cpp/CONTROL2
-rw-r--r--ports/azure-storage-cpp/portfile.cmake6
-rw-r--r--ports/azure-storage-cpp/remove-gcov-dependency.patch14
3 files changed, 3 insertions, 19 deletions
diff --git a/ports/azure-storage-cpp/CONTROL b/ports/azure-storage-cpp/CONTROL
index d1b76a4f9..3fc857f95 100644
--- a/ports/azure-storage-cpp/CONTROL
+++ b/ports/azure-storage-cpp/CONTROL
@@ -1,5 +1,5 @@
Source: azure-storage-cpp
-Version: 7.0.0
+Version: 7.1.0
Build-Depends: cpprestsdk[core], atlmfc (windows), boost-log (!windows&!uwp), boost-locale (!windows&!uwp), libxml2 (!windows&!uwp), libuuid (!windows&!uwp&!osx), gettext
Description: Microsoft Azure Storage Client SDK for C++
A client library for working with Microsoft Azure storage services including blobs, files, tables, and queues. This client library enables working with the Microsoft Azure storage services which include the blob service for storing binary and text data, the file service for storing binary and text data, the table service for storing structured non-relational data, and the queue service for storing messages that may be accessed by a client.
diff --git a/ports/azure-storage-cpp/portfile.cmake b/ports/azure-storage-cpp/portfile.cmake
index 9f7ac2162..6f6b4b39f 100644
--- a/ports/azure-storage-cpp/portfile.cmake
+++ b/ports/azure-storage-cpp/portfile.cmake
@@ -7,11 +7,9 @@ include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-storage-cpp
- REF v7.0.0
- SHA512 2187bd4d640ff1630f4f20d2717ea0219f7835e524b1db5b89563b5b525a34200a33693030d9e004db9cfe1df905b6c76ffd709f9e6cb2e2861ba1c1f8d062db
+ REF v7.1.0
+ SHA512 19ed12ee397141f2b5374857ff56514228cd6541307f754b2595507f8a81821fe49d3c8c4312c484678739432ad1a7d5202f1b2d48aa348e4601053dbb430ed9
HEAD_REF master
- PATCHES
- remove-gcov-dependency.patch
)
vcpkg_configure_cmake(
diff --git a/ports/azure-storage-cpp/remove-gcov-dependency.patch b/ports/azure-storage-cpp/remove-gcov-dependency.patch
deleted file mode 100644
index 7083fe3fa..000000000
--- a/ports/azure-storage-cpp/remove-gcov-dependency.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/Microsoft.WindowsAzure.Storage/src/CMakeLists.txt b/Microsoft.WindowsAzure.Storage/src/CMakeLists.txt
-index 6443f8e..db20749 100644
---- a/Microsoft.WindowsAzure.Storage/src/CMakeLists.txt
-+++ b/Microsoft.WindowsAzure.Storage/src/CMakeLists.txt
-@@ -63,9 +63,6 @@ if(UNIX OR WIN32)
- )
- endif()
-
--if ("${CMAKE_BUILD_TYPE}" MATCHES "Debug")
-- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
--endif()
- if (APPLE)
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNINGS}")
- else()