diff options
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/azure-core-cpp/CONTROL | 19 | ||||
| -rw-r--r-- | ports/azure-core-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-core-cpp/vcpkg.json | 60 | ||||
| -rw-r--r-- | ports/azure-identity-cpp/CONTROL | 6 | ||||
| -rw-r--r-- | ports/azure-identity-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-identity-cpp/vcpkg.json | 12 | ||||
| -rw-r--r-- | ports/azure-storage-blobs-cpp/CONTROL | 6 | ||||
| -rw-r--r-- | ports/azure-storage-blobs-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-storage-blobs-cpp/vcpkg.json | 12 | ||||
| -rw-r--r-- | ports/azure-storage-common-cpp/CONTROL | 6 | ||||
| -rw-r--r-- | ports/azure-storage-common-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-storage-common-cpp/vcpkg.json | 17 | ||||
| -rw-r--r-- | ports/azure-storage-files-datalake-cpp/CONTROL | 6 | ||||
| -rw-r--r-- | ports/azure-storage-files-datalake-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-storage-files-datalake-cpp/vcpkg.json | 12 | ||||
| -rw-r--r-- | ports/azure-storage-files-shares-cpp/CONTROL | 6 | ||||
| -rw-r--r-- | ports/azure-storage-files-shares-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-storage-files-shares-cpp/vcpkg.json | 12 |
18 files changed, 137 insertions, 61 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" + ] +} |
