Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Azure SDK Attestation] Apr 2022 release - First beta port #23996

Merged
merged 4 commits into from
Apr 6, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions ports/azure-security-attestation-cpp/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
REF azure-security-attestation_1.0.0-beta.1
SHA512 bb408ffa209c6d6416836296472f391d3418d6768f74d3fcf7962f93a991319f4f53b8588b2e82b2b366c060ad71cd1a2ad4a5515f19db97e5e5ef4bd222b926
)

vcpkg_cmake_configure(
SOURCE_PATH ${SOURCE_PATH}/sdk/attestation/azure-security-attestation/
OPTIONS
${FEATURE_OPTIONS}
-DWARNINGS_AS_ERRORS=OFF
)

vcpkg_cmake_install()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
vcpkg_cmake_config_fixup()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
BillyONeal marked this conversation as resolved.
Show resolved Hide resolved
vcpkg_copy_pdbs()
29 changes: 29 additions & 0 deletions ports/azure-security-attestation-cpp/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "azure-security-attestation-cpp",
"version-semver": "1.0.0-beta.1",
"description": [
"Microsoft Azure Attestation Service SDK for C++",
"This library provides API access to the Microsoft Azure Attestation service."
],
"homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/attestation/azure-security-attestation",
"license": "MIT",
"dependencies": [
{
"name": "azure-core-cpp",
"default-features": false,
"version>=": "1.5.0"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
{
"name": "openssl",
"version>=": "1.1.1n"
}
]
}
9 changes: 9 additions & 0 deletions versions/a-/azure-security-attestation-cpp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "39d1b844ef3e9bf741ecafb5ca93b445b33608f0",
"version-semver": "1.0.0-beta.1",
"port-version": 0
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,10 @@
"baseline": "2022-01-21",
"port-version": 0
},
"azure-security-attestation-cpp": {
"baseline": "1.0.0-beta.1",
"port-version": 0
},
"azure-security-keyvault-certificates-cpp": {
"baseline": "4.0.0-beta.2",
"port-version": 0
Expand Down