Avoid recalculating the default msbuild settings. (#31325)

* Fix the `vcpkg_install_msbuild` docs to reflect handling of x86==Win32.

See:
* https://github.com/microsoft/vcpkg/pull/28119#issuecomment-1336270264
* https://github.com/microsoft/vcpkg/issues/28076

* Remove overriding-with-the-default discovered in https://github.com/microsoft/vcpkg/pull/28119#issuecomment-1336270264

hunspell and mp3lame are left alone because they do other things with the resulting variable.

* Remove nonexistent reference to `MSBUILD_PLATFORM` variable.

* Simplify getting to x86, as discovered in https://github.com/microsoft/vcpkg/pull/28119#issuecomment-1336270264

* Version DB

* Whoops patches shouldn't be quoted.

* Delete vcpkg_install_msbuild.md

Docs changes have been migrated in microsoft/vcpkg-docs#21

* Update ocilib.json

* Update ocilib.json

---------

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
This commit is contained in:
Billy O'Neal 2023-05-09 14:56:22 -07:00 committed by GitHub
parent a41e8d1294
commit 4d2e253e42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
23 changed files with 69 additions and 84 deletions

View File

@ -1,14 +1,3 @@
# Check architecture:
if (VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
set(BUILD_ARCH "Win32")
elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
set(BUILD_ARCH "x64")
elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "arm")
set(BUILD_ARCH "ARM")
else()
message(FATAL_ERROR "Unsupported architecture: ${VCPKG_TARGET_ARCHITECTURE}")
endif()
# Check library linkage: # Check library linkage:
vcpkg_check_linkage(ONLY_STATIC_LIBRARY ONLY_DYNAMIC_CRT) vcpkg_check_linkage(ONLY_STATIC_LIBRARY ONLY_DYNAMIC_CRT)
@ -28,14 +17,12 @@ if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") # UWP:
vcpkg_install_msbuild( vcpkg_install_msbuild(
SOURCE_PATH "${SOURCE_PATH}" SOURCE_PATH "${SOURCE_PATH}"
PROJECT_SUBPATH "3FD/3FD.WinRT.UWP.vcxproj" PROJECT_SUBPATH "3FD/3FD.WinRT.UWP.vcxproj"
PLATFORM ${BUILD_ARCH}
USE_VCPKG_INTEGRATION USE_VCPKG_INTEGRATION
) )
elseif (NOT VCPKG_CMAKE_SYSTEM_NAME) # Win32: elseif (NOT VCPKG_CMAKE_SYSTEM_NAME) # Win32:
vcpkg_install_msbuild( vcpkg_install_msbuild(
SOURCE_PATH "${SOURCE_PATH}" SOURCE_PATH "${SOURCE_PATH}"
PROJECT_SUBPATH "3FD/3FD.vcxproj" PROJECT_SUBPATH "3FD/3FD.vcxproj"
PLATFORM ${BUILD_ARCH}
TARGET Build TARGET Build
USE_VCPKG_INTEGRATION USE_VCPKG_INTEGRATION
) )

View File

@ -1,7 +1,7 @@
{ {
"name": "3fd", "name": "3fd",
"version": "2.6.3", "version": "2.6.3",
"port-version": 2, "port-version": 3,
"description": "C++ Framework For Fast Development", "description": "C++ Framework For Fast Development",
"supports": "windows & !static & !arm64", "supports": "windows & !static & !arm64",
"dependencies": [ "dependencies": [

View File

@ -65,12 +65,6 @@ vcpkg_find_acquire_program(PERL)
get_filename_component(PERL_PATH ${PERL} DIRECTORY) get_filename_component(PERL_PATH ${PERL} DIRECTORY)
vcpkg_add_to_path("${PERL_PATH}") vcpkg_add_to_path("${PERL_PATH}")
if (TRIPLET_SYSTEM_ARCH MATCHES "x86")
set(MSBUILD_PLATFORM "Win32")
else ()
set(MSBUILD_PLATFORM "${TRIPLET_SYSTEM_ARCH}")
endif()
# Add ace/config.h file # Add ace/config.h file
# see https://htmlpreview.github.io/?https://github.com/DOCGroup/ACE_TAO/blob/master/ACE/ACE-INSTALL.html # see https://htmlpreview.github.io/?https://github.com/DOCGroup/ACE_TAO/blob/master/ACE/ACE-INSTALL.html
if(VCPKG_TARGET_IS_WINDOWS) if(VCPKG_TARGET_IS_WINDOWS)
@ -142,7 +136,6 @@ if(VCPKG_TARGET_IS_WINDOWS)
SOURCE_PATH "${SOURCE_PATH}" SOURCE_PATH "${SOURCE_PATH}"
PROJECT_SUBPATH ${PROJECT_SUBPATH} PROJECT_SUBPATH ${PROJECT_SUBPATH}
LICENSE_SUBPATH COPYING LICENSE_SUBPATH COPYING
PLATFORM ${MSBUILD_PLATFORM}
SKIP_CLEAN SKIP_CLEAN
) )
@ -285,7 +278,6 @@ if(VCPKG_TARGET_IS_WINDOWS)
SOURCE_PATH "${SOURCE_PATH}" SOURCE_PATH "${SOURCE_PATH}"
PROJECT_SUBPATH ${PROJECT_SUBPATH_XML} PROJECT_SUBPATH ${PROJECT_SUBPATH_XML}
LICENSE_SUBPATH COPYING LICENSE_SUBPATH COPYING
PLATFORM ${MSBUILD_PLATFORM}
SKIP_CLEAN SKIP_CLEAN
) )

View File

@ -1,6 +1,7 @@
{ {
"name": "ace", "name": "ace",
"version": "7.1.0", "version": "7.1.0",
"port-version": 1,
"maintainers": "Johnny Willemsen <jwillemsen@remedy.nl>", "maintainers": "Johnny Willemsen <jwillemsen@remedy.nl>",
"description": "The ADAPTIVE Communication Environment", "description": "The ADAPTIVE Communication Environment",
"homepage": "https://github.com/DOCGroup/ACE_TAO", "homepage": "https://github.com/DOCGroup/ACE_TAO",

View File

@ -1,5 +1,3 @@
set(VERSION 3.9.5)
set(PATCHES ) set(PATCHES )
if (NOT VCPKG_TARGET_IS_LINUX) if (NOT VCPKG_TARGET_IS_LINUX)
set(PATCHES FunctionLevelLinkingOn.diff) set(PATCHES FunctionLevelLinkingOn.diff)
@ -17,7 +15,7 @@ vcpkg_download_distfile(ARCHIVE
) )
vcpkg_extract_source_archive( vcpkg_extract_source_archive(
SOURCE_PATH SOURCE_PATH
ARCHIVE ${ARCHIVE} ARCHIVE "${ARCHIVE}"
PATCHES ${PATCHES} PATCHES ${PATCHES}
) )
@ -65,12 +63,10 @@ else()
vcpkg_replace_string("${ACTIVEMQCPP_MSVC_PROJ}" ";libapr-1.lib" ";apr-1.lib") vcpkg_replace_string("${ACTIVEMQCPP_MSVC_PROJ}" ";libapr-1.lib" ";apr-1.lib")
endif() endif()
if (VCPKG_TARGET_ARCHITECTURE MATCHES "x86") if(VCPKG_TARGET_ARCHITECTURE MATCHES "x86")
set(BUILD_ARCH "Win32") set(BUILD_ARCH "Win32")
elseif (VCPKG_TARGET_ARCHITECTURE MATCHES "x64")
set(BUILD_ARCH "x64")
else() else()
message(FATAL_ERROR "Unsupported architecture: ${VCPKG_TARGET_ARCHITECTURE}") set(BUILD_ARCH "${VCPKG_TARGET_ARCHITECTURE}")
endif() endif()
string(REPLACE "/" "\\" WIN_SOURCE_PATH "${SOURCE_PATH}") string(REPLACE "/" "\\" WIN_SOURCE_PATH "${SOURCE_PATH}")
@ -108,13 +104,13 @@ else()
endif() endif()
endif() endif()
if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug") if(NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
file(COPY file(COPY
"${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/vs2010-build/${BUILD_ARCH}/${DEBUG_CONF}/${ACTIVEMQCPP_LIB_PREFFIX}activemq-cpp${ACTIVEMQCPP_LIB_SUFFIX}.lib" "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/vs2010-build/${BUILD_ARCH}/${DEBUG_CONF}/${ACTIVEMQCPP_LIB_PREFFIX}activemq-cpp${ACTIVEMQCPP_LIB_SUFFIX}.lib"
DESTINATION "${CURRENT_PACKAGES_DIR}/debug/lib" DESTINATION "${CURRENT_PACKAGES_DIR}/debug/lib"
) )
if (ACTIVEMQCPP_SHARED_LIB) if(ACTIVEMQCPP_SHARED_LIB)
file(COPY file(COPY
"${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/vs2010-build/${BUILD_ARCH}/${DEBUG_CONF}/activemq-cpp${ACTIVEMQCPP_LIB_SUFFIX}.dll" "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/vs2010-build/${BUILD_ARCH}/${DEBUG_CONF}/activemq-cpp${ACTIVEMQCPP_LIB_SUFFIX}.dll"
DESTINATION "${CURRENT_PACKAGES_DIR}/debug/bin" DESTINATION "${CURRENT_PACKAGES_DIR}/debug/bin"

View File

@ -1,7 +1,7 @@
{ {
"name": "activemq-cpp", "name": "activemq-cpp",
"version-semver": "3.9.5", "version-semver": "3.9.5",
"port-version": 11, "port-version": 12,
"description": "Apache ActiveMQ is the most popular and powerful open source messaging and Integration Patterns server.", "description": "Apache ActiveMQ is the most popular and powerful open source messaging and Integration Patterns server.",
"license": "Apache-2.0", "license": "Apache-2.0",
"supports": "!(uwp | osx)", "supports": "!(uwp | osx)",

View File

@ -9,14 +9,6 @@ vcpkg_from_github(
PATCHES fix-build.patch PATCHES fix-build.patch
) )
if (VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
set(BUILD_ARCH "Win32")
elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
set(BUILD_ARCH "x64")
else()
message(FATAL_ERROR "Unsupported architecture: ${VCPKG_TARGET_ARCHITECTURE}")
endif()
# Use /Z7 rather than /Zi to avoid "fatal error C1090: PDB API call failed, error code '23': (0x00000006)" # Use /Z7 rather than /Zi to avoid "fatal error C1090: PDB API call failed, error code '23': (0x00000006)"
foreach(VCXPROJ IN ITEMS foreach(VCXPROJ IN ITEMS
"${SOURCE_PATH}/EasyHookDll/EasyHookDll.vcxproj" "${SOURCE_PATH}/EasyHookDll/EasyHookDll.vcxproj"
@ -78,7 +70,6 @@ vcpkg_install_msbuild(
TARGET EasyHookDll TARGET EasyHookDll
RELEASE_CONFIGURATION "netfx4-Release" RELEASE_CONFIGURATION "netfx4-Release"
DEBUG_CONFIGURATION "netfx4-Debug" DEBUG_CONFIGURATION "netfx4-Debug"
PLATFORM ${BUILD_ARCH}
) )
# Remove the mismatch rebuild library # Remove the mismatch rebuild library

View File

@ -1,7 +1,7 @@
{ {
"name": "easyhook", "name": "easyhook",
"version": "2.7.7097.0", "version": "2.7.7097.0",
"port-version": 5, "port-version": 6,
"description": "This project supports extending (hooking) unmanaged code (APIs) with pure managed ones, from within a fully managed environment on 32- or 64-bit Windows Vista x64, Windows Server 2008 x64, Windows 7, Windows 8.1, and Windows 10.", "description": "This project supports extending (hooking) unmanaged code (APIs) with pure managed ones, from within a fully managed environment on 32- or 64-bit Windows Vista x64, Windows Server 2008 x64, Windows 7, Windows 8.1, and Windows 10.",
"homepage": "https://github.com/EasyHook/EasyHook", "homepage": "https://github.com/EasyHook/EasyHook",
"supports": "windows & !static & !uwp & (x86 | x64)" "supports": "windows & !static & !uwp & (x86 | x64)"

View File

@ -1,7 +1,3 @@
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
set(PLATFORM x86)
endif()
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic) if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
set(ECSUtil_CONFIGURATION_RELEASE Release) set(ECSUtil_CONFIGURATION_RELEASE Release)
set(ECSUtil_CONFIGURATION_DEBUG Debug) set(ECSUtil_CONFIGURATION_DEBUG Debug)
@ -24,22 +20,22 @@ vcpkg_from_github(
) )
vcpkg_install_msbuild( vcpkg_install_msbuild(
SOURCE_PATH ${SOURCE_PATH} SOURCE_PATH "${SOURCE_PATH}"
PROJECT_SUBPATH ECSUtil.sln PROJECT_SUBPATH ECSUtil.sln
PLATFORM ${PLATFORM} PLATFORM "${TRIPLET_SYSTEM_ARCH}"
LICENSE_SUBPATH license.txt LICENSE_SUBPATH license.txt
TARGET ECSUtil TARGET ECSUtil
RELEASE_CONFIGURATION ${ECSUtil_CONFIGURATION_RELEASE} RELEASE_CONFIGURATION "${ECSUtil_CONFIGURATION_RELEASE}"
DEBUG_CONFIGURATION ${ECSUtil_CONFIGURATION_DEBUG} DEBUG_CONFIGURATION "${ECSUtil_CONFIGURATION_DEBUG}"
) )
if(VCPKG_LIBRARY_LINKAGE STREQUAL static) if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin) file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
endif() endif()
file(COPY ${SOURCE_PATH}/ECSUtil DESTINATION ${CURRENT_PACKAGES_DIR}/include FILES_MATCHING PATTERN *.h) file(COPY "${SOURCE_PATH}/ECSUtil" DESTINATION "${CURRENT_PACKAGES_DIR}/include" FILES_MATCHING PATTERN *.h)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/ECSUtil/res ${CURRENT_PACKAGES_DIR}/tools) file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include/ECSUtil/res" "${CURRENT_PACKAGES_DIR}/tools")
file(REMOVE ${CURRENT_PACKAGES_DIR}/bin/NatvisAddIn.dll ${CURRENT_PACKAGES_DIR}/debug/bin/NatvisAddIn.dll) file(REMOVE "${CURRENT_PACKAGES_DIR}/bin/NatvisAddIn.dll" "${CURRENT_PACKAGES_DIR}/debug/bin/NatvisAddIn.dll")
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin) file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
endif() endif()

View File

@ -1,7 +1,7 @@
{ {
"name": "ecsutil", "name": "ecsutil",
"version": "1.0.7.15", "version": "1.0.7.15",
"port-version": 3, "port-version": 4,
"description": "Native Windows SDK for accessing ECS via the S3 HTTP protocol.", "description": "Native Windows SDK for accessing ECS via the S3 HTTP protocol.",
"homepage": "https://github.com/EMCECS/ecs-object-client-windows-cpp", "homepage": "https://github.com/EMCECS/ecs-object-client-windows-cpp",
"supports": "windows & (x64 | x86) & !uwp", "supports": "windows & (x64 | x86) & !uwp",

View File

@ -9,12 +9,6 @@ vcpkg_from_github(
if(VCPKG_TARGET_IS_WINDOWS) if(VCPKG_TARGET_IS_WINDOWS)
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
set(PLATFORM x86)
else()
set(PLATFORM x64)
endif()
# There is no debug configuration # There is no debug configuration
# As it is a C library, build the release configuration and copy its output to the debug folder # As it is a C library, build the release configuration and copy its output to the debug folder
set(VCPKG_BUILD_TYPE release) set(VCPKG_BUILD_TYPE release)
@ -24,7 +18,7 @@ if(VCPKG_TARGET_IS_WINDOWS)
INCLUDES_SUBPATH include INCLUDES_SUBPATH include
LICENSE_SUBPATH LICENSE LICENSE_SUBPATH LICENSE
RELEASE_CONFIGURATION "Release - ANSI" RELEASE_CONFIGURATION "Release - ANSI"
PLATFORM ${PLATFORM} PLATFORM "${VCPKG_TARGET_ARCHITECTURE}"
USE_VCPKG_INTEGRATION USE_VCPKG_INTEGRATION
ALLOW_ROOT_INCLUDES) ALLOW_ROOT_INCLUDES)

View File

@ -1,6 +1,7 @@
{ {
"name": "ocilib", "name": "ocilib",
"version": "4.7.5", "version": "4.7.5",
"port-version": 1,
"description": "OCILIB is an open source and cross platform Oracle Driver that delivers efficient access to Oracle databases.", "description": "OCILIB is an open source and cross platform Oracle Driver that delivers efficient access to Oracle databases.",
"homepage": "https://vrogier.github.io/ocilib/", "homepage": "https://vrogier.github.io/ocilib/",
"license": "Apache-2.0", "license": "Apache-2.0",

View File

@ -4,7 +4,7 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO renestein/Rstein.AsyncCpp REPO renestein/Rstein.AsyncCpp
REF 0.0.7 REF 0.0.7
SHA512 b4cc1c68b6fc7bb8b418457ba18b834769abec07e44305955214f8918cc57f85c4258a0521ea55388fab3ec9724488e506d2b114c765b804991c38bf33133c55 SHA512 b4cc1c68b6fc7bb8b418457ba18b834769abec07e44305955214f8918cc57f85c4258a0521ea55388fab3ec9724488e506d2b114c765b804991c38bf33133c55
HEAD_REF master HEAD_REF master
) )
@ -26,20 +26,13 @@ else()
endif() endif()
endif() endif()
if (TRIPLET_SYSTEM_ARCH MATCHES "x86")
set(MSBUILD_PLATFORM "x86")
else ()
set(MSBUILD_PLATFORM ${TRIPLET_SYSTEM_ARCH})
endif()
vcpkg_install_msbuild( vcpkg_install_msbuild(
SOURCE_PATH ${SOURCE_PATH} SOURCE_PATH "${SOURCE_PATH}"
PROJECT_SUBPATH RStein.AsyncCppLib.sln PROJECT_SUBPATH RStein.AsyncCppLib.sln
LICENSE_SUBPATH LICENSE LICENSE_SUBPATH LICENSE
PLATFORM ${MSBUILD_PLATFORM} PLATFORM "${TRIPLET_SYSTEM_ARCH}"
DEBUG_CONFIGURATION ${DEBUG_CONFIGURATION} DEBUG_CONFIGURATION "${DEBUG_CONFIGURATION}"
RELEASE_CONFIGURATION ${RELEASE_CONFIGURATION} RELEASE_CONFIGURATION "${RELEASE_CONFIGURATION}"
) )
file(COPY "${SOURCE_PATH}/RStein.AsyncCpp/" file(COPY "${SOURCE_PATH}/RStein.AsyncCpp/"

View File

@ -1,7 +1,7 @@
{ {
"name": "rsasynccpp", "name": "rsasynccpp",
"version": "0.0.7", "version": "0.0.7",
"port-version": 1, "port-version": 2,
"maintainers": "Rene Stein <rene@renestein.net>", "maintainers": "Rene Stein <rene@renestein.net>",
"description": "Task Parallel Library (TPL)/dataflow/actors/async primitives for C++ based on C++ 20 coroutines.", "description": "Task Parallel Library (TPL)/dataflow/actors/async primitives for C++ based on C++ 20 coroutines.",
"homepage": "https://github.com/renestein/Rstein.AsyncCpp", "homepage": "https://github.com/renestein/Rstein.AsyncCpp",

View File

@ -13,7 +13,6 @@
# VCPKG_TOOLCHAIN = ON OFF # VCPKG_TOOLCHAIN = ON OFF
# TRIPLET_SYSTEM_ARCH = arm x86 x64 # TRIPLET_SYSTEM_ARCH = arm x86 x64
# BUILD_ARCH = "Win32" "x64" "ARM" # BUILD_ARCH = "Win32" "x64" "ARM"
# MSBUILD_PLATFORM = "Win32"/"x64"/${TRIPLET_SYSTEM_ARCH}
# DEBUG_CONFIG = "Debug Static" "Debug Dll" # DEBUG_CONFIG = "Debug Static" "Debug Dll"
# RELEASE_CONFIG = "Release Static"" "Release DLL" # RELEASE_CONFIG = "Release Static"" "Release DLL"
# VCPKG_TARGET_IS_WINDOWS # VCPKG_TARGET_IS_WINDOWS

View File

@ -1,5 +1,10 @@
{ {
"versions": [ "versions": [
{
"git-tree": "0bfff492ed0b9ee3f31bb7593443572bc0fcf2d4",
"version": "2.6.3",
"port-version": 3
},
{ {
"git-tree": "3b52e6aff44ca4e11335754570701f692ea14184", "git-tree": "3b52e6aff44ca4e11335754570701f692ea14184",
"version": "2.6.3", "version": "2.6.3",

View File

@ -1,5 +1,10 @@
{ {
"versions": [ "versions": [
{
"git-tree": "df4ee7b5111a86e0bc99f45b39447bff68d102bd",
"version": "7.1.0",
"port-version": 1
},
{ {
"git-tree": "9a2a1876f2f625494b16da42b27ace343255d691", "git-tree": "9a2a1876f2f625494b16da42b27ace343255d691",
"version": "7.1.0", "version": "7.1.0",

View File

@ -1,5 +1,10 @@
{ {
"versions": [ "versions": [
{
"git-tree": "d8cbff606d12daa3bf08a8fa623c2d524f1e05e5",
"version-semver": "3.9.5",
"port-version": 12
},
{ {
"git-tree": "8674469ca3e9968a8473861000056e09a190ced4", "git-tree": "8674469ca3e9968a8473861000056e09a190ced4",
"version-semver": "3.9.5", "version-semver": "3.9.5",

View File

@ -2,7 +2,7 @@
"default": { "default": {
"3fd": { "3fd": {
"baseline": "2.6.3", "baseline": "2.6.3",
"port-version": 2 "port-version": 3
}, },
"7zip": { "7zip": {
"baseline": "22.01", "baseline": "22.01",
@ -26,7 +26,7 @@
}, },
"ace": { "ace": {
"baseline": "7.1.0", "baseline": "7.1.0",
"port-version": 0 "port-version": 1
}, },
"acl": { "acl": {
"baseline": "2.3.1", "baseline": "2.3.1",
@ -34,7 +34,7 @@
}, },
"activemq-cpp": { "activemq-cpp": {
"baseline": "3.9.5", "baseline": "3.9.5",
"port-version": 11 "port-version": 12
}, },
"ade": { "ade": {
"baseline": "0.1.1f", "baseline": "0.1.1f",
@ -2230,7 +2230,7 @@
}, },
"easyhook": { "easyhook": {
"baseline": "2.7.7097.0", "baseline": "2.7.7097.0",
"port-version": 5 "port-version": 6
}, },
"easyloggingpp": { "easyloggingpp": {
"baseline": "9.97.0", "baseline": "9.97.0",
@ -2254,7 +2254,7 @@
}, },
"ecsutil": { "ecsutil": {
"baseline": "1.0.7.15", "baseline": "1.0.7.15",
"port-version": 3 "port-version": 4
}, },
"edflib": { "edflib": {
"baseline": "1.24", "baseline": "1.24",
@ -5718,7 +5718,7 @@
}, },
"ocilib": { "ocilib": {
"baseline": "4.7.5", "baseline": "4.7.5",
"port-version": 0 "port-version": 1
}, },
"octomap": { "octomap": {
"baseline": "1.9.6", "baseline": "1.9.6",
@ -7082,7 +7082,7 @@
}, },
"rsasynccpp": { "rsasynccpp": {
"baseline": "0.0.7", "baseline": "0.0.7",
"port-version": 1 "port-version": 2
}, },
"rsig": { "rsig": {
"baseline": "0.1.1", "baseline": "0.1.1",

View File

@ -1,5 +1,10 @@
{ {
"versions": [ "versions": [
{
"git-tree": "8877642f19052e820932928a49049719516ebf9b",
"version": "2.7.7097.0",
"port-version": 6
},
{ {
"git-tree": "71b209c038081c700231ebc3be136c6976f22c4b", "git-tree": "71b209c038081c700231ebc3be136c6976f22c4b",
"version": "2.7.7097.0", "version": "2.7.7097.0",

View File

@ -1,5 +1,10 @@
{ {
"versions": [ "versions": [
{
"git-tree": "1758edf3915aba62cd6eaf2c70d1401acf663175",
"version": "1.0.7.15",
"port-version": 4
},
{ {
"git-tree": "9526f049f789b79ac68f8937a9af15da13de53b4", "git-tree": "9526f049f789b79ac68f8937a9af15da13de53b4",
"version": "1.0.7.15", "version": "1.0.7.15",

View File

@ -1,5 +1,10 @@
{ {
"versions": [ "versions": [
{
"git-tree": "9a48c5a6650bc58fdea2fe06d75c3347d89e483a",
"version": "4.7.5",
"port-version": 1
},
{ {
"git-tree": "e77dfc3008f996ea2defcaf771f46d33d81a4470", "git-tree": "e77dfc3008f996ea2defcaf771f46d33d81a4470",
"version": "4.7.5", "version": "4.7.5",

View File

@ -1,5 +1,10 @@
{ {
"versions": [ "versions": [
{
"git-tree": "44c0663e6c7ee48730c4db3336c455e1e45c473a",
"version": "0.0.7",
"port-version": 2
},
{ {
"git-tree": "7fc33d5002210774c5e4d7450a0cd88c3be82ca8", "git-tree": "7fc33d5002210774c5e4d7450a0cd88c3be82ca8",
"version": "0.0.7", "version": "0.0.7",