aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/azure-core-cpp/CONTROL19
-rw-r--r--ports/azure-core-cpp/portfile.cmake4
-rw-r--r--ports/azure-core-cpp/vcpkg.json60
-rw-r--r--ports/azure-identity-cpp/CONTROL6
-rw-r--r--ports/azure-identity-cpp/portfile.cmake4
-rw-r--r--ports/azure-identity-cpp/vcpkg.json12
-rw-r--r--ports/azure-storage-blobs-cpp/CONTROL6
-rw-r--r--ports/azure-storage-blobs-cpp/portfile.cmake4
-rw-r--r--ports/azure-storage-blobs-cpp/vcpkg.json12
-rw-r--r--ports/azure-storage-common-cpp/CONTROL6
-rw-r--r--ports/azure-storage-common-cpp/portfile.cmake4
-rw-r--r--ports/azure-storage-common-cpp/vcpkg.json17
-rw-r--r--ports/azure-storage-files-datalake-cpp/CONTROL6
-rw-r--r--ports/azure-storage-files-datalake-cpp/portfile.cmake4
-rw-r--r--ports/azure-storage-files-datalake-cpp/vcpkg.json12
-rw-r--r--ports/azure-storage-files-shares-cpp/CONTROL6
-rw-r--r--ports/azure-storage-files-shares-cpp/portfile.cmake4
-rw-r--r--ports/azure-storage-files-shares-cpp/vcpkg.json12
-rw-r--r--versions/a-/azure-core-cpp.json5
-rw-r--r--versions/a-/azure-identity-cpp.json5
-rw-r--r--versions/a-/azure-storage-blobs-cpp.json5
-rw-r--r--versions/a-/azure-storage-common-cpp.json5
-rw-r--r--versions/a-/azure-storage-files-datalake-cpp.json5
-rw-r--r--versions/a-/azure-storage-files-shares-cpp.json5
-rw-r--r--versions/baseline.json12
25 files changed, 173 insertions, 67 deletions
diff --git a/ports/azure-core-cpp/CONTROL b/ports/azure-core-cpp/CONTROL
deleted file mode 100644
index 97d6c6008..000000000
--- a/ports/azure-core-cpp/CONTROL
+++ /dev/null
@@ -1,19 +0,0 @@
-Source: azure-core-cpp
-Version: 1.0.0-beta.7
-Build-Depends: openssl (!windows&!uwp)
-Description: Microsoft Azure Core SDK for C++
- This library provides shared primitives, abstractions, and helpers for modern Azure SDK client libraries written in the C++.
-Homepage: https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/core/azure-core
-Default-Features: http
-
-Feature: http
-Build-Depends: azure-core-cpp[core, curl], azure-core-cpp[core, curl, winhttp] (windows&!uwp)
-Description: Build all HTTP transport implementations, depending on the platform
-
-Feature: curl
-Build-Depends: azure-core-cpp[core], curl
-Description: Build an HTTP transport implementation with LibCURL
-
-Feature: winhttp
-Build-Depends: azure-core-cpp[core]
-Description: Build an HTTP transport implementation with WinHTTP
diff --git a/ports/azure-core-cpp/portfile.cmake b/ports/azure-core-cpp/portfile.cmake
index d9f7e95f4..74d20a8a2 100644
--- a/ports/azure-core-cpp/portfile.cmake
+++ b/ports/azure-core-cpp/portfile.cmake
@@ -1,8 +1,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-core_1.0.0-beta.7
- SHA512 2ec13d3ee592869fc086c601e884fb992c123298135c9ffc8d43089c6a4a8368266ebc88f9636b5e63fc19af917d169e7557b2054c5449648bbf21ab3793fbd1
+ REF azure-core_1.0.0-beta.8
+ SHA512 fd882e37332fd5f35627b94c96cfae78178d9bc551cc9a27480f2ef08d496ea2379dc8d0e6a237e902ce063ae87ed6f9e8dc0b91e2e16bd8638e839f8d9e4c2a
)
vcpkg_check_features(
diff --git a/ports/azure-core-cpp/vcpkg.json b/ports/azure-core-cpp/vcpkg.json
new file mode 100644
index 000000000..2f88f104c
--- /dev/null
+++ b/ports/azure-core-cpp/vcpkg.json
@@ -0,0 +1,60 @@
+{
+ "name": "azure-core-cpp",
+ "version-string": "1.0.0-beta.8",
+ "description": [
+ "Microsoft Azure Core SDK for C++",
+ "This library provides shared primitives, abstractions, and helpers for modern Azure SDK client libraries written in the C++."
+ ],
+ "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/core/azure-core",
+ "dependencies": [
+ {
+ "name": "openssl",
+ "platform": "!windows & !uwp"
+ }
+ ],
+ "default-features": [
+ "http"
+ ],
+ "features": {
+ "curl": {
+ "description": "Build an HTTP transport implementation with LibCURL",
+ "dependencies": [
+ {
+ "name": "azure-core-cpp",
+ "default-features": false
+ },
+ "curl"
+ ]
+ },
+ "http": {
+ "description": "Build all HTTP transport implementations, depending on the platform",
+ "dependencies": [
+ {
+ "name": "azure-core-cpp",
+ "default-features": false,
+ "features": [
+ "curl"
+ ]
+ },
+ {
+ "name": "azure-core-cpp",
+ "default-features": false,
+ "features": [
+ "curl",
+ "winhttp"
+ ],
+ "platform": "windows & !uwp"
+ }
+ ]
+ },
+ "winhttp": {
+ "description": "Build an HTTP transport implementation with WinHTTP",
+ "dependencies": [
+ {
+ "name": "azure-core-cpp",
+ "default-features": false
+ }
+ ]
+ }
+ }
+}
diff --git a/ports/azure-identity-cpp/CONTROL b/ports/azure-identity-cpp/CONTROL
deleted file mode 100644
index 73bcfd362..000000000
--- a/ports/azure-identity-cpp/CONTROL
+++ /dev/null
@@ -1,6 +0,0 @@
-Source: azure-identity-cpp
-Version: 1.0.0-beta.4
-Build-Depends: azure-core-cpp
-Description: Microsoft Azure Identity SDK for C++
- This library provides common authentication-related abstractions for Azure SDK.
-Homepage: https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/identity/azure-identity
diff --git a/ports/azure-identity-cpp/portfile.cmake b/ports/azure-identity-cpp/portfile.cmake
index e157c4c09..86a8262d3 100644
--- a/ports/azure-identity-cpp/portfile.cmake
+++ b/ports/azure-identity-cpp/portfile.cmake
@@ -1,8 +1,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-identity_1.0.0-beta.4
- SHA512 d86c43ddff626f4a041ec38d1a628e15ba546887855f4c3dd1d4070a8599611f0f43cd5bdd9ba51700f4f702802a5f356f5106b6a08fe540ed54aec4bcb98b17
+ REF azure-identity_1.0.0-beta.5
+ SHA512 9ff56d719d77c7b0db3054788dc69aee18105e27d0732d79b1eb7b86fd8e568dd52631aaf329c4b0f4c65699c2d8bda0a050586bcd8052cb1e74cb46f3f2c85a
)
vcpkg_configure_cmake(
diff --git a/ports/azure-identity-cpp/vcpkg.json b/ports/azure-identity-cpp/vcpkg.json
new file mode 100644
index 000000000..57411908d
--- /dev/null
+++ b/ports/azure-identity-cpp/vcpkg.json
@@ -0,0 +1,12 @@
+{
+ "name": "azure-identity-cpp",
+ "version-string": "1.0.0-beta.5",
+ "description": [
+ "Microsoft Azure Identity SDK for C++",
+ "This library provides common authentication-related abstractions for Azure SDK."
+ ],
+ "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/identity/azure-identity",
+ "dependencies": [
+ "azure-core-cpp"
+ ]
+}
diff --git a/ports/azure-storage-blobs-cpp/CONTROL b/ports/azure-storage-blobs-cpp/CONTROL
deleted file mode 100644
index 24a93f205..000000000
--- a/ports/azure-storage-blobs-cpp/CONTROL
+++ /dev/null
@@ -1,6 +0,0 @@
-Source: azure-storage-blobs-cpp
-Version: 12.0.0-beta.9
-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
index 17ffe51c7..db7e59e5e 100644
--- a/ports/azure-storage-blobs-cpp/portfile.cmake
+++ b/ports/azure-storage-blobs-cpp/portfile.cmake
@@ -1,8 +1,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-storage-blobs_12.0.0-beta.9
- SHA512 c7d345a29eda02d0acfac4c6957cbf6dbeb2b9bd4b6ff9b5ccd65d6e5bf26332b6fc445934e81ade4154a52e45583cf2d84dd3317edf11c273f50a0cde57b45d
+ REF azure-storage-blobs_12.0.0-beta.10
+ SHA512 d8afc221f8132fefd7a56cb0fb22549bce3b2b35bc532f43e0f37335f9cc46389028b51068813240f9b083c87b78a3007240cbaf37a5d9dd96b94e002fbc945f
)
vcpkg_configure_cmake(
diff --git a/ports/azure-storage-blobs-cpp/vcpkg.json b/ports/azure-storage-blobs-cpp/vcpkg.json
new file mode 100644
index 000000000..913cbc0cc
--- /dev/null
+++ b/ports/azure-storage-blobs-cpp/vcpkg.json
@@ -0,0 +1,12 @@
+{
+ "name": "azure-storage-blobs-cpp",
+ "version-string": "12.0.0-beta.10",
+ "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",
+ "dependencies": [
+ "azure-storage-common-cpp"
+ ]
+}
diff --git a/ports/azure-storage-common-cpp/CONTROL b/ports/azure-storage-common-cpp/CONTROL
deleted file mode 100644
index 1ce94a674..000000000
--- a/ports/azure-storage-common-cpp/CONTROL
+++ /dev/null
@@ -1,6 +0,0 @@
-Source: azure-storage-common-cpp
-Version: 12.0.0-beta.9
-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
index 906458020..427ab715f 100644
--- a/ports/azure-storage-common-cpp/portfile.cmake
+++ b/ports/azure-storage-common-cpp/portfile.cmake
@@ -1,8 +1,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-storage-common_12.0.0-beta.9
- SHA512 6f12a8f3881b862eabe40b506457837e57d8e490f0c991885738140d4acc4af079fceea012c4a40f50416196ae3f2f7f577e121068a612bd243f808b82670d4a
+ REF azure-storage-common_12.0.0-beta.10
+ SHA512 f49f74c9a6d7b80b0f7c8a9b9d2e4595dc304439d30c8c83f520833f81ef7d3480b858ada61c12f76e82eea7960eb155453b0acdcea143f163a12d567adbf18d
)
vcpkg_configure_cmake(
diff --git a/ports/azure-storage-common-cpp/vcpkg.json b/ports/azure-storage-common-cpp/vcpkg.json
new file mode 100644
index 000000000..60537946c
--- /dev/null
+++ b/ports/azure-storage-common-cpp/vcpkg.json
@@ -0,0 +1,17 @@
+{
+ "name": "azure-storage-common-cpp",
+ "version-string": "12.0.0-beta.10",
+ "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",
+ "dependencies": [
+ "azure-core-cpp",
+ "libxml2",
+ {
+ "name": "openssl",
+ "platform": "!windows"
+ }
+ ]
+}
diff --git a/ports/azure-storage-files-datalake-cpp/CONTROL b/ports/azure-storage-files-datalake-cpp/CONTROL
deleted file mode 100644
index 87fb59801..000000000
--- a/ports/azure-storage-files-datalake-cpp/CONTROL
+++ /dev/null
@@ -1,6 +0,0 @@
-Source: azure-storage-files-datalake-cpp
-Version: 12.0.0-beta.9
-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
index 435b881c4..b5381f605 100644
--- a/ports/azure-storage-files-datalake-cpp/portfile.cmake
+++ b/ports/azure-storage-files-datalake-cpp/portfile.cmake
@@ -1,8 +1,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-storage-files-datalake_12.0.0-beta.9
- SHA512 a870f686d163ae9a956811dd2155e999d09a777607b0da5239c10415f8f56514ff6a22fa125bb44d5aa89d682643f2eb16b65167a4a70a52388599b8aea131a9
+ REF azure-storage-files-datalake_12.0.0-beta.10
+ SHA512 9b8f2acbb8cfae1acd4275bca9d9d1a4c9f77a4a38484c88fc89a2081554d4ca6ed64f79a5102ee303c2c72648229e46ff282309868cda8f69f69389747d7e9d
)
vcpkg_configure_cmake(
diff --git a/ports/azure-storage-files-datalake-cpp/vcpkg.json b/ports/azure-storage-files-datalake-cpp/vcpkg.json
new file mode 100644
index 000000000..6d6340934
--- /dev/null
+++ b/ports/azure-storage-files-datalake-cpp/vcpkg.json
@@ -0,0 +1,12 @@
+{
+ "name": "azure-storage-files-datalake-cpp",
+ "version-string": "12.0.0-beta.10",
+ "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",
+ "dependencies": [
+ "azure-storage-blobs-cpp"
+ ]
+}
diff --git a/ports/azure-storage-files-shares-cpp/CONTROL b/ports/azure-storage-files-shares-cpp/CONTROL
deleted file mode 100644
index 4b733ef17..000000000
--- a/ports/azure-storage-files-shares-cpp/CONTROL
+++ /dev/null
@@ -1,6 +0,0 @@
-Source: azure-storage-files-shares-cpp
-Version: 12.0.0-beta.9
-Build-Depends: azure-storage-common-cpp
-Description: Microsoft Azure Storage Files Shares SDK for C++
- This library provides Azure Storage Files Shares SDK.
-Homepage: https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-files-shares
diff --git a/ports/azure-storage-files-shares-cpp/portfile.cmake b/ports/azure-storage-files-shares-cpp/portfile.cmake
index 237009456..240f79386 100644
--- a/ports/azure-storage-files-shares-cpp/portfile.cmake
+++ b/ports/azure-storage-files-shares-cpp/portfile.cmake
@@ -1,8 +1,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-storage-files-shares_12.0.0-beta.9
- SHA512 548936b3a18ed3cfc253e645398c944f49754d5b1ad5de461bf55f06e87e14001ffba5e5001bfa780a9fafd4366cbb0a955edb29686146b7d76a7e6e3486454d
+ REF azure-storage-files-shares_12.0.0-beta.10
+ SHA512 028e60284f59849ab331ccd5ba7b650ac8ecdf7fc3a2d8eda60b29f88c78e7fb9166eb10e021feafa630a103c036f24c84951c729da1a8766fa028b7f9d7ebbd
)
vcpkg_configure_cmake(
diff --git a/ports/azure-storage-files-shares-cpp/vcpkg.json b/ports/azure-storage-files-shares-cpp/vcpkg.json
new file mode 100644
index 000000000..185e308f4
--- /dev/null
+++ b/ports/azure-storage-files-shares-cpp/vcpkg.json
@@ -0,0 +1,12 @@
+{
+ "name": "azure-storage-files-shares-cpp",
+ "version-string": "12.0.0-beta.10",
+ "description": [
+ "Microsoft Azure Storage Files Shares SDK for C++",
+ "This library provides Azure Storage Files Shares SDK."
+ ],
+ "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-files-shares",
+ "dependencies": [
+ "azure-storage-common-cpp"
+ ]
+}
diff --git a/versions/a-/azure-core-cpp.json b/versions/a-/azure-core-cpp.json
index 607d5bbf4..f78b5aa89 100644
--- a/versions/a-/azure-core-cpp.json
+++ b/versions/a-/azure-core-cpp.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "2950f581cd5d38ae9b8fdc35b8c0c69c19ff209c",
+ "version-string": "1.0.0-beta.8",
+ "port-version": 0
+ },
+ {
"git-tree": "87b79aabd7415802c0c50d30b68e1911dfe295dd",
"version-string": "1.0.0-beta.7",
"port-version": 0
diff --git a/versions/a-/azure-identity-cpp.json b/versions/a-/azure-identity-cpp.json
index 022d7ee66..83489f677 100644
--- a/versions/a-/azure-identity-cpp.json
+++ b/versions/a-/azure-identity-cpp.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "3353c1b44fa79a1935f488a6a66ecad2fa35d5ac",
+ "version-string": "1.0.0-beta.5",
+ "port-version": 0
+ },
+ {
"git-tree": "61833d54ef29f383d33a5a0b7eae7be690dfcfc8",
"version-string": "1.0.0-beta.4",
"port-version": 0
diff --git a/versions/a-/azure-storage-blobs-cpp.json b/versions/a-/azure-storage-blobs-cpp.json
index 1fc3ee23f..cfd5b468d 100644
--- a/versions/a-/azure-storage-blobs-cpp.json
+++ b/versions/a-/azure-storage-blobs-cpp.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "2601572d72191d63ad6c6f093f00857b71b9ef96",
+ "version-string": "12.0.0-beta.10",
+ "port-version": 0
+ },
+ {
"git-tree": "1028d726e4188768265becb6f3a95808283cb626",
"version-string": "12.0.0-beta.9",
"port-version": 0
diff --git a/versions/a-/azure-storage-common-cpp.json b/versions/a-/azure-storage-common-cpp.json
index 7c18f2e65..54f46db16 100644
--- a/versions/a-/azure-storage-common-cpp.json
+++ b/versions/a-/azure-storage-common-cpp.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "9b0d48def9ae816374193c587750c40ba924cda7",
+ "version-string": "12.0.0-beta.10",
+ "port-version": 0
+ },
+ {
"git-tree": "413d1016e8672f538bce60361cff383dc55e33ad",
"version-string": "12.0.0-beta.9",
"port-version": 0
diff --git a/versions/a-/azure-storage-files-datalake-cpp.json b/versions/a-/azure-storage-files-datalake-cpp.json
index 7a5a863af..eb4f999f6 100644
--- a/versions/a-/azure-storage-files-datalake-cpp.json
+++ b/versions/a-/azure-storage-files-datalake-cpp.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "d76b0d95a42ff1a91e73cf46527284844c848f33",
+ "version-string": "12.0.0-beta.10",
+ "port-version": 0
+ },
+ {
"git-tree": "98adbbf45b85de0cbabbc2c6f30f5b5dfc42d584",
"version-string": "12.0.0-beta.9",
"port-version": 0
diff --git a/versions/a-/azure-storage-files-shares-cpp.json b/versions/a-/azure-storage-files-shares-cpp.json
index 9df1f9a84..c5d199c26 100644
--- a/versions/a-/azure-storage-files-shares-cpp.json
+++ b/versions/a-/azure-storage-files-shares-cpp.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "d93d47f9c0ddf42c33aebe38c312083b043c3713",
+ "version-string": "12.0.0-beta.10",
+ "port-version": 0
+ },
+ {
"git-tree": "78ebb9db2ec3893149fa8a6a37850f5c62008afb",
"version-string": "12.0.0-beta.9",
"port-version": 0
diff --git a/versions/baseline.json b/versions/baseline.json
index c4a7c0779..99520efc6 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -245,11 +245,11 @@
"port-version": 1
},
"azure-core-cpp": {
- "baseline": "1.0.0-beta.7",
+ "baseline": "1.0.0-beta.8",
"port-version": 0
},
"azure-identity-cpp": {
- "baseline": "1.0.0-beta.4",
+ "baseline": "1.0.0-beta.5",
"port-version": 0
},
"azure-iot-sdk-c": {
@@ -265,11 +265,11 @@
"port-version": 2
},
"azure-storage-blobs-cpp": {
- "baseline": "12.0.0-beta.9",
+ "baseline": "12.0.0-beta.10",
"port-version": 0
},
"azure-storage-common-cpp": {
- "baseline": "12.0.0-beta.9",
+ "baseline": "12.0.0-beta.10",
"port-version": 0
},
"azure-storage-cpp": {
@@ -277,11 +277,11 @@
"port-version": 0
},
"azure-storage-files-datalake-cpp": {
- "baseline": "12.0.0-beta.9",
+ "baseline": "12.0.0-beta.10",
"port-version": 0
},
"azure-storage-files-shares-cpp": {
- "baseline": "12.0.0-beta.9",
+ "baseline": "12.0.0-beta.10",
"port-version": 0
},
"azure-uamqp-c": {