diff options
| author | chausner <15180557+chausner@users.noreply.github.com> | 2021-09-29 17:38:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-29 08:38:23 -0700 |
| commit | 7c318c408f3acf2fcb13c9882f453891eb6a95f4 (patch) | |
| tree | 75ce6923ac43bbd90770fab7fcd744c4702de05c | |
| parent | 3566b81c04d0d2d58507fe04609c438d7a938a8a (diff) | |
| download | vcpkg-7c318c408f3acf2fcb13c9882f453891eb6a95f4.tar.gz vcpkg-7c318c408f3acf2fcb13c9882f453891eb6a95f4.zip | |
[open62541] Update to 1.2.2 (#20399)
* Update open62541 to 1.2.2
* Update CI baseline
* delete double quotes
* update version
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
| -rw-r--r-- | ports/open62541/portfile.cmake | 33 | ||||
| -rw-r--r-- | ports/open62541/vcpkg.json | 13 | ||||
| -rw-r--r-- | versions/baseline.json | 4 | ||||
| -rw-r--r-- | versions/o-/open62541.json | 5 |
4 files changed, 35 insertions, 20 deletions
diff --git a/ports/open62541/portfile.cmake b/ports/open62541/portfile.cmake index 55fbd6edb..e6612315c 100644 --- a/ports/open62541/portfile.cmake +++ b/ports/open62541/portfile.cmake @@ -1,26 +1,27 @@ -set(VERSION v1.1) +set(VERSION v1.2.2) vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO open62541/open62541 - REF 8ad84962e67987af91d7f746425d7b26be47a0cb # v1.1.2 - SHA512 7cca9458cdfbc386c0a7012373c91e9ab3a4876303db95a513f62cf26e751446bd73c0fa1f76e0821d2a47747bfb4612e8822389bc9002775636db8f8093f94c + REF "${VERSION}" + SHA512 E6A1EC2208EC29D8685D2A957FAE6F3FEDC0E847D6AB1BB8AC5C7980223BC377692334C87575956B53BB37A9B71C5DEDD1B5C4F19F122561543D04661FEFE1D5 HEAD_REF master ) -vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS - openssl UA_ENABLE_ENCRYPTION_OPENSSL - mbedtls UA_ENABLE_ENCRYPTION_MBEDTLS - amalgamation UA_ENABLE_AMALGAMATION +vcpkg_check_features( + OUT_FEATURE_OPTIONS FEATURE_OPTIONS + FEATURES + openssl UA_ENABLE_ENCRYPTION_OPENSSL + mbedtls UA_ENABLE_ENCRYPTION_MBEDTLS + amalgamation UA_ENABLE_AMALGAMATION ) vcpkg_find_acquire_program(PYTHON3) get_filename_component(PYTHON3_DIR "${PYTHON3}" DIRECTORY) vcpkg_add_to_path("${PYTHON3_DIR}") -vcpkg_configure_cmake( - SOURCE_PATH ${SOURCE_PATH} - PREFER_NINJA +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" OPTIONS ${FEATURE_OPTIONS} -DOPEN62541_VERSION=${VERSION} @@ -28,12 +29,12 @@ vcpkg_configure_cmake( -DCMAKE_DEBUG_POSTFIX=d ) -vcpkg_install_cmake() -vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/${PORT}) +vcpkg_cmake_install() +vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT}) vcpkg_copy_pdbs() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/share/open62541/tools) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/open62541/tools") -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/open62541/vcpkg.json b/ports/open62541/vcpkg.json index 0dcbcb81b..a1e80fc4c 100644 --- a/ports/open62541/vcpkg.json +++ b/ports/open62541/vcpkg.json @@ -1,9 +1,18 @@ { "name": "open62541", - "version": "1.1.2", - "port-version": 2, + "version": "1.2.2", "description": "open62541 is an open source C (C99) implementation of OPC UA licensed under the Mozilla Public License v2.0.", "homepage": "https://open62541.org", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], "default-features": [ "openssl" ], diff --git a/versions/baseline.json b/versions/baseline.json index ec4d98a18..ff9231e1f 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -4761,8 +4761,8 @@ "port-version": 0 }, "open62541": { - "baseline": "1.1.2", - "port-version": 2 + "baseline": "1.2.2", + "port-version": 0 }, "openal-soft": { "baseline": "1.21.1", diff --git a/versions/o-/open62541.json b/versions/o-/open62541.json index f91b9f9b3..1edf75bb7 100644 --- a/versions/o-/open62541.json +++ b/versions/o-/open62541.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "e9f30c2699c8919f074676b99f79358ef1f0a059", + "version": "1.2.2", + "port-version": 0 + }, + { "git-tree": "98a37e8146a1e56f67a180b3c239f903ed59c401", "version": "1.1.2", "port-version": 2 |
