aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzure SDK Bot <53356347+azure-sdk@users.noreply.github.com>2021-02-03 12:57:35 -0800
committerGitHub <noreply@github.com>2021-02-03 12:57:35 -0800
commite3c26698d5e73a3b3ab46e47f21f9c0377e80e02 (patch)
tree5f7f590100a7a8dc3a9afe3a19fe7c008fc1dfed
parent323a0a387a8a13d05590ce72916acffa7d4c8cb8 (diff)
downloadvcpkg-e3c26698d5e73a3b3ab46e47f21f9c0377e80e02.tar.gz
vcpkg-e3c26698d5e73a3b3ab46e47f21f9c0377e80e02.zip
[azure-storage-common-cpp] Publish version 12.0.0-beta.7 (#16020)
* Update port for azure-storage-common-cpp * Update port for azure-storage-blobs-cpp * Update port for azure-storage-files-datalake-cpp * Update port version SHAs * Remove comment header from CONTROL files * Remove comment header from portfile.cmake files * Update port version SHAs once again Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
-rw-r--r--ports/azure-storage-blobs-cpp/CONTROL6
-rw-r--r--ports/azure-storage-blobs-cpp/portfile.cmake20
-rw-r--r--ports/azure-storage-common-cpp/CONTROL6
-rw-r--r--ports/azure-storage-common-cpp/portfile.cmake20
-rw-r--r--ports/azure-storage-files-datalake-cpp/CONTROL6
-rw-r--r--ports/azure-storage-files-datalake-cpp/portfile.cmake20
-rw-r--r--versions/a-/azure-storage-blobs-cpp.json9
-rw-r--r--versions/a-/azure-storage-common-cpp.json9
-rw-r--r--versions/a-/azure-storage-files-datalake-cpp.json9
-rw-r--r--versions/baseline.json12
10 files changed, 117 insertions, 0 deletions
diff --git a/ports/azure-storage-blobs-cpp/CONTROL b/ports/azure-storage-blobs-cpp/CONTROL
new file mode 100644
index 000000000..a3e08f567
--- /dev/null
+++ b/ports/azure-storage-blobs-cpp/CONTROL
@@ -0,0 +1,6 @@
+Source: azure-storage-blobs-cpp
+Version: 12.0.0-beta.7
+Build-Depends: azure-storage-common-cpp
+Description: Microsoft Azure Storage Blobs SDK for C++
+ This library provides Azure Storage Blobs SDK.
+Homepage: https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-blobs
diff --git a/ports/azure-storage-blobs-cpp/portfile.cmake b/ports/azure-storage-blobs-cpp/portfile.cmake
new file mode 100644
index 000000000..2c385b399
--- /dev/null
+++ b/ports/azure-storage-blobs-cpp/portfile.cmake
@@ -0,0 +1,20 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO Azure/azure-sdk-for-cpp
+ REF azure-storage-blobs_12.0.0-beta.7
+ SHA512 51bf1c961bdc2fd95354afe21f171f2e1c05aafb4f6301a15d51650fecf0f0bc66272ac0fbc2e02c112b0164da4df66a411b17418c338298f6da21c3bfaab2c1
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}/sdk/storage/azure-storage-blobs/
+ PREFER_NINJA
+ OPTIONS
+ -DWARNINGS_AS_ERRORS=OFF
+)
+
+vcpkg_install_cmake()
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+vcpkg_fixup_cmake_targets()
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+vcpkg_copy_pdbs()
+
diff --git a/ports/azure-storage-common-cpp/CONTROL b/ports/azure-storage-common-cpp/CONTROL
new file mode 100644
index 000000000..916e0dd0d
--- /dev/null
+++ b/ports/azure-storage-common-cpp/CONTROL
@@ -0,0 +1,6 @@
+Source: azure-storage-common-cpp
+Version: 12.0.0-beta.7
+Build-Depends: azure-core-cpp, libxml2, openssl (!windows)
+Description: Microsoft Azure Common Storage SDK for C++
+ This library provides common Azure Storage-related abstractions for Azure SDK.
+Homepage: https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-common
diff --git a/ports/azure-storage-common-cpp/portfile.cmake b/ports/azure-storage-common-cpp/portfile.cmake
new file mode 100644
index 000000000..af5850bcb
--- /dev/null
+++ b/ports/azure-storage-common-cpp/portfile.cmake
@@ -0,0 +1,20 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO Azure/azure-sdk-for-cpp
+ REF azure-storage-common_12.0.0-beta.7
+ SHA512 b37ca9a6562856858d19e1babbc7a99a25da75698935706fa6ebcebe118c33c35e388bebefcb56e6dcb45db4ffae0a60e0ffa3a56015f2069fd3a04433e21247
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}/sdk/storage/azure-storage-common/
+ PREFER_NINJA
+ OPTIONS
+ -DWARNINGS_AS_ERRORS=OFF
+)
+
+vcpkg_install_cmake()
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+vcpkg_fixup_cmake_targets()
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+vcpkg_copy_pdbs()
+
diff --git a/ports/azure-storage-files-datalake-cpp/CONTROL b/ports/azure-storage-files-datalake-cpp/CONTROL
new file mode 100644
index 000000000..eda31a866
--- /dev/null
+++ b/ports/azure-storage-files-datalake-cpp/CONTROL
@@ -0,0 +1,6 @@
+Source: azure-storage-files-datalake-cpp
+Version: 12.0.0-beta.7
+Build-Depends: azure-storage-blobs-cpp
+Description: Microsoft Azure Storage Files Data Lake SDK for C++
+ This library provides Azure Storage Files Data Lake SDK.
+Homepage: https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-files-datalake
diff --git a/ports/azure-storage-files-datalake-cpp/portfile.cmake b/ports/azure-storage-files-datalake-cpp/portfile.cmake
new file mode 100644
index 000000000..8856fa7e5
--- /dev/null
+++ b/ports/azure-storage-files-datalake-cpp/portfile.cmake
@@ -0,0 +1,20 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO Azure/azure-sdk-for-cpp
+ REF azure-storage-files-datalake_12.0.0-beta.7
+ SHA512 0fe864854b46ef7130e9e473ade9beb8d64cad29a5a63c78c1053aeb0de8ee6149d5fc93d4d941a3507d8a4eaa3c9d5baa2681da410a7c8d595767f24449b46e
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}/sdk/storage/azure-storage-files-datalake/
+ PREFER_NINJA
+ OPTIONS
+ -DWARNINGS_AS_ERRORS=OFF
+)
+
+vcpkg_install_cmake()
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+vcpkg_fixup_cmake_targets()
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+vcpkg_copy_pdbs()
+
diff --git a/versions/a-/azure-storage-blobs-cpp.json b/versions/a-/azure-storage-blobs-cpp.json
new file mode 100644
index 000000000..61df5b4da
--- /dev/null
+++ b/versions/a-/azure-storage-blobs-cpp.json
@@ -0,0 +1,9 @@
+{
+ "versions": [
+ {
+ "git-tree": "32a4dca2b5670fbce88652145fe3297bd221a672",
+ "version-string": "12.0.0-beta.7",
+ "port-version": 0
+ }
+ ]
+}
diff --git a/versions/a-/azure-storage-common-cpp.json b/versions/a-/azure-storage-common-cpp.json
new file mode 100644
index 000000000..171a61583
--- /dev/null
+++ b/versions/a-/azure-storage-common-cpp.json
@@ -0,0 +1,9 @@
+{
+ "versions": [
+ {
+ "git-tree": "1dee55e65cb1fb3f93d4cc8f820a09c4d17ee202",
+ "version-string": "12.0.0-beta.7",
+ "port-version": 0
+ }
+ ]
+}
diff --git a/versions/a-/azure-storage-files-datalake-cpp.json b/versions/a-/azure-storage-files-datalake-cpp.json
new file mode 100644
index 000000000..4751212bf
--- /dev/null
+++ b/versions/a-/azure-storage-files-datalake-cpp.json
@@ -0,0 +1,9 @@
+{
+ "versions": [
+ {
+ "git-tree": "96e221ac9eb6246fa0ec743cb3cbcc47b932f8f3",
+ "version-string": "12.0.0-beta.7",
+ "port-version": 0
+ }
+ ]
+}
diff --git a/versions/baseline.json b/versions/baseline.json
index 43962df21..bba1793c5 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -260,10 +260,22 @@
"baseline": "2020-06-17",
"port-version": 2
},
+ "azure-storage-blobs-cpp": {
+ "baseline": "12.0.0-beta.7",
+ "port-version": 0
+ },
+ "azure-storage-common-cpp": {
+ "baseline": "12.0.0-beta.7",
+ "port-version": 0
+ },
"azure-storage-cpp": {
"baseline": "7.5.0",
"port-version": 0
},
+ "azure-storage-files-datalake-cpp": {
+ "baseline": "12.0.0-beta.7",
+ "port-version": 0
+ },
"azure-uamqp-c": {
"baseline": "2020-12-09",
"port-version": 0