diff --git a/ports/eathread/portfile.cmake b/ports/eathread/portfile.cmake index 74f29f24822..04f7e998d01 100644 --- a/ports/eathread/portfile.cmake +++ b/ports/eathread/portfile.cmake @@ -10,10 +10,10 @@ vcpkg_from_github( fix_cmake_install.patch ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/EAThreadConfig.cmake.in DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/EAThreadConfig.cmake.in" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DEATHREAD_BUILD_TESTS=OFF ) @@ -22,10 +22,10 @@ vcpkg_cmake_install() vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/EAThread) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") vcpkg_copy_pdbs() # Handle copyright -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) -file(INSTALL ${SOURCE_PATH}/3RDPARTYLICENSES.TXT DESTINATION ${CURRENT_PACKAGES_DIR}/share/eathread) +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) +file(INSTALL "${SOURCE_PATH}/3RDPARTYLICENSES.TXT" DESTINATION "${CURRENT_PACKAGES_DIR}/share/eathread") diff --git a/ports/eathread/vcpkg.json b/ports/eathread/vcpkg.json index 6960e3da402..dd634f9193e 100644 --- a/ports/eathread/vcpkg.json +++ b/ports/eathread/vcpkg.json @@ -1,7 +1,7 @@ { "name": "eathread", "version-string": "1.32.09", - "port-version": 4, + "port-version": 5, "description": "Electronic Arts Thread Library. EAThread implements a unified cross-platform interface for multithreaded programming on various platforms.", "homepage": "https://github.com/electronicarts/EAThread", "supports": "!uwp & x64", diff --git a/ports/ecos/portfile.cmake b/ports/ecos/portfile.cmake index a0f2ccbe70e..618a4d14a50 100644 --- a/ports/ecos/portfile.cmake +++ b/ports/ecos/portfile.cmake @@ -8,15 +8,15 @@ vcpkg_from_github( HEAD_REF develop ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" ) vcpkg_cmake_install() -file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/ecos RENAME copyright) +file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") vcpkg_cmake_config_fixup(CONFIG_PATH "share/ecos") \ No newline at end of file diff --git a/ports/ecos/vcpkg.json b/ports/ecos/vcpkg.json index 9ed30af072a..7b276e11466 100644 --- a/ports/ecos/vcpkg.json +++ b/ports/ecos/vcpkg.json @@ -1,7 +1,7 @@ { "name": "ecos", "version": "2.0.8", - "port-version": 2, + "port-version": 3, "description": "A lightweight conic solver for second-order cone programming.", "dependencies": [ { diff --git a/ports/entityx/portfile.cmake b/ports/entityx/portfile.cmake index d23938340b6..2d77a8b2f17 100644 --- a/ports/entityx/portfile.cmake +++ b/ports/entityx/portfile.cmake @@ -9,7 +9,7 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" DISABLE_PARALLEL_CONFIGURE OPTIONS -DENTITYX_BUILD_TESTING=false @@ -18,8 +18,7 @@ vcpkg_cmake_configure( vcpkg_cmake_install() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # Handle copyright -file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/entityx) -file(RENAME ${CURRENT_PACKAGES_DIR}/share/entityx/COPYING ${CURRENT_PACKAGES_DIR}/share/entityx/copyright) +file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/entityx" RENAME copyright) diff --git a/ports/entityx/vcpkg.json b/ports/entityx/vcpkg.json index daa538c6bd1..3b918ff5791 100644 --- a/ports/entityx/vcpkg.json +++ b/ports/entityx/vcpkg.json @@ -1,7 +1,7 @@ { "name": "entityx", "version": "1.3.0", - "port-version": 4, + "port-version": 5, "description": "EntityX - A fast, type-safe C++ Entity-Component system.", "homepage": "https://github.com/alecthomas/entityx", "dependencies": [ diff --git a/ports/fastfeat/portfile.cmake b/ports/fastfeat/portfile.cmake index 2cb1643f062..d76f392e439 100644 --- a/ports/fastfeat/portfile.cmake +++ b/ports/fastfeat/portfile.cmake @@ -8,13 +8,13 @@ vcpkg_from_github( file(COPY -${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt - ${CMAKE_CURRENT_LIST_DIR}/fastfeat.def -DESTINATION ${SOURCE_PATH} +"${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" +"${CMAKE_CURRENT_LIST_DIR}/fastfeat.def" +DESTINATION "${SOURCE_PATH}" ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=ON ) @@ -23,4 +23,4 @@ vcpkg_cmake_install() vcpkg_copy_pdbs() # Handle copyright -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/fastfeat RENAME copyright) +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/fastfeat" RENAME copyright) diff --git a/ports/fastfeat/vcpkg.json b/ports/fastfeat/vcpkg.json index f5a2716b115..597ce506f72 100644 --- a/ports/fastfeat/vcpkg.json +++ b/ports/fastfeat/vcpkg.json @@ -1,7 +1,7 @@ { "name": "fastfeat", "version-string": "391d5e9", - "port-version": 3, + "port-version": 4, "description": "FAST feature detectors in C", "dependencies": [ { diff --git a/ports/fastlz/portfile.cmake b/ports/fastlz/portfile.cmake index e256cfa5774..2826af500ab 100644 --- a/ports/fastlz/portfile.cmake +++ b/ports/fastlz/portfile.cmake @@ -8,15 +8,15 @@ vcpkg_from_github( HEAD_REF master ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" ) vcpkg_cmake_install() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # Handle copyright -file(INSTALL ${SOURCE_PATH}/LICENSE.MIT DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(INSTALL "${SOURCE_PATH}/LICENSE.MIT" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/fastlz/vcpkg.json b/ports/fastlz/vcpkg.json index 60093769264..04e23e869e2 100644 --- a/ports/fastlz/vcpkg.json +++ b/ports/fastlz/vcpkg.json @@ -1,7 +1,7 @@ { "name": "fastlz", "version-date": "2021-05-10", - "port-version": 1, + "port-version": 2, "description": "A lightning-fast lossless compression library", "homepage": "https://github.com/ariya/FastLZ", "dependencies": [ diff --git a/ports/fdlibm/portfile.cmake b/ports/fdlibm/portfile.cmake index 63e491e4771..0f673e9f2a8 100644 --- a/ports/fdlibm/portfile.cmake +++ b/ports/fdlibm/portfile.cmake @@ -4,11 +4,11 @@ vcpkg_from_git( REF 59f7335e4dd8275a7dc2f8aeb4fd00758fde37ac ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/libm5.def DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") +file(COPY "${CMAKE_CURRENT_LIST_DIR}/libm5.def" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=ON ) @@ -17,5 +17,5 @@ vcpkg_cmake_install() vcpkg_copy_pdbs() # Handle copyright -configure_file(${SOURCE_PATH}/NOTICE ${CURRENT_PACKAGES_DIR}/share/fdlibm/copyright COPYONLY) +configure_file("${SOURCE_PATH}/NOTICE" "${CURRENT_PACKAGES_DIR}/share/fdlibm/copyright" COPYONLY) diff --git a/ports/fdlibm/vcpkg.json b/ports/fdlibm/vcpkg.json index a5966b8681d..cbe67e7bbe3 100644 --- a/ports/fdlibm/vcpkg.json +++ b/ports/fdlibm/vcpkg.json @@ -1,7 +1,7 @@ { "name": "fdlibm", "version": "5.3", - "port-version": 6, + "port-version": 7, "description": "FDLIBM (Freely Distributable LIBM) is a C math library for machines that support IEEE 754 floating-point arithmetic", "dependencies": [ { diff --git a/ports/flashlight-cpu/portfile.cmake b/ports/flashlight-cpu/portfile.cmake index f70f9d9c294..11459b6d055 100644 --- a/ports/flashlight-cpu/portfile.cmake +++ b/ports/flashlight-cpu/portfile.cmake @@ -36,14 +36,14 @@ vcpkg_check_features( # Build and install vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS ${FL_DEFAULT_VCPKG_CMAKE_FLAGS} ${FEATURE_OPTIONS} OPTIONS_DEBUG - -DFL_INSTALL_CMAKE_DIR=${CURRENT_PACKAGES_DIR}/debug/share/flashlight + "-DFL_INSTALL_CMAKE_DIR=${CURRENT_PACKAGES_DIR}/debug/share/flashlight" OPTIONS_RELEASE - -DFL_INSTALL_CMAKE_DIR=${CURRENT_PACKAGES_DIR}/share/flashlight + "-DFL_INSTALL_CMAKE_DIR=${CURRENT_PACKAGES_DIR}/share/flashlight" ) vcpkg_cmake_install() @@ -84,4 +84,4 @@ if (NUM_TOOLS GREATER 0) endif() # Copyright -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/flashlight-cpu/vcpkg.json b/ports/flashlight-cpu/vcpkg.json index 6fd4b334281..2794691a615 100644 --- a/ports/flashlight-cpu/vcpkg.json +++ b/ports/flashlight-cpu/vcpkg.json @@ -1,7 +1,7 @@ { "name": "flashlight-cpu", "version": "0.3", - "port-version": 4, + "port-version": 5, "description": "A C++ standalone library for machine learning. CPU backend.", "homepage": "https://github.com/facebookresearch/flashlight", "license": "MIT", diff --git a/ports/flashlight-cuda/portfile.cmake b/ports/flashlight-cuda/portfile.cmake index 11d847aa9ac..49582ffb691 100644 --- a/ports/flashlight-cuda/portfile.cmake +++ b/ports/flashlight-cuda/portfile.cmake @@ -35,14 +35,14 @@ vcpkg_check_features( # Build and install vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS ${FL_DEFAULT_VCPKG_CMAKE_FLAGS} ${FEATURE_OPTIONS} OPTIONS_DEBUG - -DFL_INSTALL_CMAKE_DIR=${CURRENT_PACKAGES_DIR}/debug/share/flashlight + "-DFL_INSTALL_CMAKE_DIR=${CURRENT_PACKAGES_DIR}/debug/share/flashlight" OPTIONS_RELEASE - -DFL_INSTALL_CMAKE_DIR=${CURRENT_PACKAGES_DIR}/share/flashlight + "-DFL_INSTALL_CMAKE_DIR=${CURRENT_PACKAGES_DIR}/share/flashlight" ) vcpkg_cmake_install() @@ -83,4 +83,4 @@ if (NUM_TOOLS GREATER 0) endif() # Copyright -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) \ No newline at end of file +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file diff --git a/ports/flashlight-cuda/vcpkg.json b/ports/flashlight-cuda/vcpkg.json index 3dccbd2ba6a..e950197c888 100644 --- a/ports/flashlight-cuda/vcpkg.json +++ b/ports/flashlight-cuda/vcpkg.json @@ -1,7 +1,7 @@ { "name": "flashlight-cuda", "version": "0.3", - "port-version": 5, + "port-version": 6, "description": "A C++ standalone library for machine learning. CUDA backend.", "homepage": "https://github.com/facebookresearch/flashlight", "license": "MIT", diff --git a/ports/fmem/portfile.cmake b/ports/fmem/portfile.cmake index f0930fc510b..de0c0bb6d40 100644 --- a/ports/fmem/portfile.cmake +++ b/ports/fmem/portfile.cmake @@ -7,16 +7,16 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DBUILD_TESTING=OFF ) vcpkg_cmake_install() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") vcpkg_copy_pdbs() # Handle copyright -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/fmem RENAME copyright) +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/fmem" RENAME copyright) diff --git a/ports/fmem/vcpkg.json b/ports/fmem/vcpkg.json index 7f11aedcd32..52d0dc2a041 100644 --- a/ports/fmem/vcpkg.json +++ b/ports/fmem/vcpkg.json @@ -1,7 +1,7 @@ { "name": "fmem", "version-string": "c-libs-2ccee3d2fb", - "port-version": 2, + "port-version": 3, "description": "A cross-platform library for opening memory-backed libc streams.", "dependencies": [ { diff --git a/ports/foonathan-memory/portfile.cmake b/ports/foonathan-memory/portfile.cmake index 86c47621b71..ee298c35b70 100644 --- a/ports/foonathan-memory/portfile.cmake +++ b/ports/foonathan-memory/portfile.cmake @@ -18,14 +18,14 @@ vcpkg_from_github( HEAD_REF master ) -file(COPY ${COMP_SOURCE_PATH}/comp_base.cmake DESTINATION ${SOURCE_PATH}/cmake/comp) +file(COPY "${COMP_SOURCE_PATH}/comp_base.cmake" DESTINATION "${SOURCE_PATH}/cmake/comp") vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS FEATURES tool FOONATHAN_MEMORY_BUILD_TOOLS ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS ${FEATURE_OPTIONS} -DFOONATHAN_MEMORY_BUILD_EXAMPLES=OFF @@ -34,9 +34,9 @@ vcpkg_cmake_configure( vcpkg_cmake_install() -if(EXISTS ${CURRENT_PACKAGES_DIR}/cmake) +if(EXISTS "${CURRENT_PACKAGES_DIR}/cmake") vcpkg_cmake_config_fixup(CONFIG_PATH cmake PACKAGE_NAME foonathan_memory) -elseif(EXISTS ${CURRENT_PACKAGES_DIR}/share/foonathan_memory/cmake) +elseif(EXISTS "${CURRENT_PACKAGES_DIR}/share/foonathan_memory/cmake") vcpkg_cmake_config_fixup(CONFIG_PATH share/foonathan_memory/cmake PACKAGE_NAME foonathan_memory) endif() @@ -45,26 +45,26 @@ vcpkg_copy_pdbs() # Place header files into the right folders # The original layout is not a problem for CMake-based project. file(COPY - ${CURRENT_PACKAGES_DIR}/include/foonathan_memory/foonathan - DESTINATION ${CURRENT_PACKAGES_DIR}/include + "${CURRENT_PACKAGES_DIR}/include/foonathan_memory/foonathan" + DESTINATION "${CURRENT_PACKAGES_DIR}/include" ) file(GLOB COMP_INCLUDE_FILES - ${CURRENT_PACKAGES_DIR}/include/foonathan_memory/comp/foonathan/*.hpp + "${CURRENT_PACKAGES_DIR}/include/foonathan_memory/comp/foonathan/*.hpp" ) file(COPY ${COMP_INCLUDE_FILES} - DESTINATION ${CURRENT_PACKAGES_DIR}/include/foonathan + DESTINATION "${CURRENT_PACKAGES_DIR}/include/foonathan" ) file(COPY - ${CURRENT_PACKAGES_DIR}/include/foonathan_memory/config_impl.hpp - DESTINATION ${CURRENT_PACKAGES_DIR}/include/foonathan/memory + "${CURRENT_PACKAGES_DIR}/include/foonathan_memory/config_impl.hpp" + DESTINATION "${CURRENT_PACKAGES_DIR}/include/foonathan/memory" ) file(REMOVE_RECURSE - ${CURRENT_PACKAGES_DIR}/include/foonathan_memory + "${CURRENT_PACKAGES_DIR}/include/foonathan_memory" ) vcpkg_replace_string( - ${CURRENT_PACKAGES_DIR}/share/foonathan_memory/foonathan_memory-config.cmake + "${CURRENT_PACKAGES_DIR}/share/foonathan_memory/foonathan_memory-config.cmake" "\${_IMPORT_PREFIX}/include/foonathan_memory/comp;\${_IMPORT_PREFIX}/include/foonathan_memory" "\${_IMPORT_PREFIX}/include" ) @@ -76,21 +76,21 @@ vcpkg_replace_string( # #define FOONATHAN_MEMORY_DEBUG_FILL 0 # We only have the Release version header files installed, however. vcpkg_replace_string( - ${CURRENT_PACKAGES_DIR}/include/foonathan/memory/detail/debug_helpers.hpp + "${CURRENT_PACKAGES_DIR}/include/foonathan/memory/detail/debug_helpers.hpp" "#if FOONATHAN_MEMORY_DEBUG_FILL" "#ifndef NDEBUG //#if FOONATHAN_MEMORY_DEBUG_FILL" ) file(REMOVE_RECURSE - ${CURRENT_PACKAGES_DIR}/debug/include - ${CURRENT_PACKAGES_DIR}/debug/share + "${CURRENT_PACKAGES_DIR}/debug/include" + "${CURRENT_PACKAGES_DIR}/debug/share" ) file(REMOVE - ${CURRENT_PACKAGES_DIR}/debug/LICENSE - ${CURRENT_PACKAGES_DIR}/debug/README.md - ${CURRENT_PACKAGES_DIR}/LICENSE - ${CURRENT_PACKAGES_DIR}/README.md + "${CURRENT_PACKAGES_DIR}/debug/LICENSE" + "${CURRENT_PACKAGES_DIR}/debug/README.md" + "${CURRENT_PACKAGES_DIR}/LICENSE" + "${CURRENT_PACKAGES_DIR}/README.md" ) if(NOT VCPKG_CMAKE_SYSTEM_NAME OR @@ -100,25 +100,25 @@ else() set(EXECUTABLE_SUFFIX "") endif() -if(EXISTS ${CURRENT_PACKAGES_DIR}/bin/nodesize_dbg${EXECUTABLE_SUFFIX}) +if(EXISTS "${CURRENT_PACKAGES_DIR}/bin/nodesize_dbg${EXECUTABLE_SUFFIX}") file(COPY - ${CURRENT_PACKAGES_DIR}/bin/nodesize_dbg${EXECUTABLE_SUFFIX} - DESTINATION ${CURRENT_PACKAGES_DIR}/tools/${PORT} + "${CURRENT_PACKAGES_DIR}/bin/nodesize_dbg${EXECUTABLE_SUFFIX}" + DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}" ) - vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/${PORT}) + vcpkg_copy_tool_dependencies("${CURRENT_PACKAGES_DIR}/tools/${PORT}") if(VCPKG_LIBRARY_LINKAGE STREQUAL static) file(REMOVE_RECURSE - ${CURRENT_PACKAGES_DIR}/bin - ${CURRENT_PACKAGES_DIR}/debug/bin + "${CURRENT_PACKAGES_DIR}/bin" + "${CURRENT_PACKAGES_DIR}/debug/bin" ) else() file(REMOVE - ${CURRENT_PACKAGES_DIR}/bin/nodesize_dbg${EXECUTABLE_SUFFIX} - ${CURRENT_PACKAGES_DIR}/debug/bin/nodesize_dbg${EXECUTABLE_SUFFIX} + "${CURRENT_PACKAGES_DIR}/bin/nodesize_dbg${EXECUTABLE_SUFFIX}" + "${CURRENT_PACKAGES_DIR}/debug/bin/nodesize_dbg${EXECUTABLE_SUFFIX}" ) endif() endif() # Handle copyright -configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY) +configure_file("${SOURCE_PATH}/LICENSE" "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" COPYONLY) diff --git a/ports/foonathan-memory/vcpkg.json b/ports/foonathan-memory/vcpkg.json index 4cf239d9f02..333df5096d3 100644 --- a/ports/foonathan-memory/vcpkg.json +++ b/ports/foonathan-memory/vcpkg.json @@ -1,7 +1,7 @@ { "name": "foonathan-memory", "version-date": "2019-07-21", - "port-version": 3, + "port-version": 4, "description": "STL compatible C++ memory allocator library", "homepage": "https://foonathan.net/doc/memory/", "dependencies": [ diff --git a/ports/fp16/portfile.cmake b/ports/fp16/portfile.cmake index 3d6836eb9d2..d292128e784 100644 --- a/ports/fp16/portfile.cmake +++ b/ports/fp16/portfile.cmake @@ -7,12 +7,12 @@ vcpkg_from_github( find-psimd.patch ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DFP16_BUILD_TESTS=OFF -DFP16_BUILD_BENCHMARKS=OFF ) vcpkg_cmake_install() -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug) +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") diff --git a/ports/fp16/vcpkg.json b/ports/fp16/vcpkg.json index 5bda485852d..4e5bc35af64 100644 --- a/ports/fp16/vcpkg.json +++ b/ports/fp16/vcpkg.json @@ -1,7 +1,7 @@ { "name": "fp16", "version-date": "2021-02-21", - "port-version": 1, + "port-version": 2, "description": "Header-only library for conversion to/from half-precision floating point formats", "homepage": "https://github.com/Maratyszcza/FP16", "dependencies": [ diff --git a/ports/freeopcua/portfile.cmake b/ports/freeopcua/portfile.cmake index b3414d66104..47450efcf8e 100644 --- a/ports/freeopcua/portfile.cmake +++ b/ports/freeopcua/portfile.cmake @@ -16,7 +16,7 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DBUILD_PYTHON=OFF -DBUILD_TESTING=OFF @@ -26,10 +26,10 @@ vcpkg_cmake_configure( vcpkg_cmake_install() vcpkg_cmake_config_fixup() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") #Handle copyright -file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/freeopcua RENAME copyright) +file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/freeopcua" RENAME copyright) vcpkg_fixup_pkgconfig() diff --git a/ports/freeopcua/vcpkg.json b/ports/freeopcua/vcpkg.json index fd1f54e1cdc..91498a4013e 100644 --- a/ports/freeopcua/vcpkg.json +++ b/ports/freeopcua/vcpkg.json @@ -1,7 +1,7 @@ { "name": "freeopcua", "version": "20190125", - "port-version": 6, + "port-version": 7, "description": "OPC-UA server and client library written in C++ and with a lot of code auto-generated from xml specification using python.", "dependencies": [ "boost-asio", diff --git a/ports/functions-framework-cpp/portfile.cmake b/ports/functions-framework-cpp/portfile.cmake index b2deae0be0c..423b815a004 100644 --- a/ports/functions-framework-cpp/portfile.cmake +++ b/ports/functions-framework-cpp/portfile.cmake @@ -10,7 +10,7 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" DISABLE_PARALLEL_CONFIGURE OPTIONS -DBUILD_TESTING=OFF @@ -18,13 +18,13 @@ vcpkg_cmake_configure( vcpkg_cmake_install(ADD_BIN_TO_PATH) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) -vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake PACKAGE_NAME share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") file( - INSTALL ${SOURCE_PATH}/LICENSE - DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} + INSTALL "${SOURCE_PATH}/LICENSE" + DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) vcpkg_copy_pdbs() diff --git a/ports/functions-framework-cpp/vcpkg.json b/ports/functions-framework-cpp/vcpkg.json index c1e8658257a..c4af411e840 100644 --- a/ports/functions-framework-cpp/vcpkg.json +++ b/ports/functions-framework-cpp/vcpkg.json @@ -1,7 +1,7 @@ { "name": "functions-framework-cpp", "version": "1.1.0", - "port-version": 2, + "port-version": 3, "description": "Functions Framework for C++.", "homepage": "https://github.com/GoogleCloudPlatform/functions-framework-cpp/", "license": "Apache-2.0", diff --git a/ports/fxdiv/portfile.cmake b/ports/fxdiv/portfile.cmake index 352bfc0463c..06eaa4b7ec8 100644 --- a/ports/fxdiv/portfile.cmake +++ b/ports/fxdiv/portfile.cmake @@ -6,12 +6,13 @@ vcpkg_from_github( SHA512 da33eab4d006645f383a1f24fc3e747db3aeb0613219297ec0ae69aa2617f07ba050ebd6a64a8cbde6d25481f176d0ec3b9753a95d1fbcead2136595f3e50e97 ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DFXDIV_BUILD_TESTS=OFF -DFXDIV_BUILD_BENCHMARKS=OFF ) vcpkg_cmake_install() +vcpkg_copy_pdbs() -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug) +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") diff --git a/ports/fxdiv/vcpkg.json b/ports/fxdiv/vcpkg.json index e15304ae19e..444f5243edc 100644 --- a/ports/fxdiv/vcpkg.json +++ b/ports/fxdiv/vcpkg.json @@ -1,7 +1,7 @@ { "name": "fxdiv", "version-date": "2021-02-21", - "port-version": 1, + "port-version": 2, "description": "C99/C++ header-only library for division via fixed-point multiplication by inverse", "homepage": "https://github.com/Maratyszcza/FXdiv", "dependencies": [ diff --git a/ports/g2o/portfile.cmake b/ports/g2o/portfile.cmake index 88eaa5ad06c..d5efce4c30c 100644 --- a/ports/g2o/portfile.cmake +++ b/ports/g2o/portfile.cmake @@ -9,7 +9,7 @@ vcpkg_from_github( string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_LGPL_SHARED_LIBS) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DBUILD_LGPL_SHARED_LIBS=${BUILD_LGPL_SHARED_LIBS} -DG2O_BUILD_EXAMPLES=OFF @@ -31,12 +31,12 @@ if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic) endforeach() endif() -file(GLOB EXE ${CURRENT_PACKAGES_DIR}/bin/*.exe) -file(GLOB DEBUG_EXE ${CURRENT_PACKAGES_DIR}/debug/bin/*.exe) +file(GLOB EXE "${CURRENT_PACKAGES_DIR}/bin/*.exe") +file(GLOB DEBUG_EXE "${CURRENT_PACKAGES_DIR}/debug/bin/*.exe") if(EXE OR DEBUG_EXE) file(REMOVE ${EXE} ${DEBUG_EXE}) endif() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -file(INSTALL ${SOURCE_PATH}/doc/license-bsd.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(INSTALL "${SOURCE_PATH}/doc/license-bsd.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/g2o/vcpkg.json b/ports/g2o/vcpkg.json index b56bc1b78d7..9afc73a9d12 100644 --- a/ports/g2o/vcpkg.json +++ b/ports/g2o/vcpkg.json @@ -1,7 +1,7 @@ { "name": "g2o", "version-date": "2020-02-07", - "port-version": 3, + "port-version": 4, "description": "g2o: A General Framework for Graph Optimization", "homepage": "https://openslam.org/g2o.html", "dependencies": [ diff --git a/ports/gamma/portfile.cmake b/ports/gamma/portfile.cmake index 2765c64fbfe..f004b443a79 100644 --- a/ports/gamma/portfile.cmake +++ b/ports/gamma/portfile.cmake @@ -10,10 +10,10 @@ vcpkg_from_github( HEAD_REF master ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=1 ) @@ -21,4 +21,4 @@ vcpkg_cmake_install() vcpkg_copy_pdbs() # Handle copyright -file(INSTALL ${SOURCE_PATH}/COPYRIGHT DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(INSTALL "${SOURCE_PATH}/COPYRIGHT" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/gamma/vcpkg.json b/ports/gamma/vcpkg.json index 50307436923..1b4606b4f28 100644 --- a/ports/gamma/vcpkg.json +++ b/ports/gamma/vcpkg.json @@ -1,7 +1,7 @@ { "name": "gamma", "version-string": "gamma-2018-01-27", - "port-version": 5, + "port-version": 6, "description": "Gamma is a cross-platform, C++ library for doing generic synthesis and filtering of signals. It is oriented towards real-time sound and graphics applications, but is equally useful for non-real-time tasks. Gamma is designed to be \"light-footed\" in terms of memory and processing making it highly suitable for plug-in development or embedding in other C++ projects.", "homepage": "https://github.com/LancePutnam/Gamma", "license": "MIT", diff --git a/ports/gasol/portfile.cmake b/ports/gasol/portfile.cmake index 2d2460595b3..25a61d45edf 100644 --- a/ports/gasol/portfile.cmake +++ b/ports/gasol/portfile.cmake @@ -12,11 +12,12 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" ) vcpkg_cmake_install() +vcpkg_copy_pdbs() file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") -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/gasol/vcpkg.json b/ports/gasol/vcpkg.json index 2016237d257..ad2c96493e8 100644 --- a/ports/gasol/vcpkg.json +++ b/ports/gasol/vcpkg.json @@ -1,7 +1,7 @@ { "name": "gasol", "version-date": "2018-01-04", - "port-version": 3, + "port-version": 4, "description": "A general Genetic Algorithm Solver in C++", "homepage": "https://github.com/PytLab/GASol", "supports": "!uwp & !arm", diff --git a/ports/genann/portfile.cmake b/ports/genann/portfile.cmake index d5219c252f8..8f83bc0c86c 100644 --- a/ports/genann/portfile.cmake +++ b/ports/genann/portfile.cmake @@ -8,10 +8,10 @@ vcpkg_from_github( HEAD_REF master ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS_RELEASE -DINSTALL_HEADERS=ON OPTIONS_DEBUG -DINSTALL_HEADERS=OFF ) @@ -19,6 +19,5 @@ vcpkg_cmake_configure( vcpkg_cmake_install() # Handle copyright -file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/genann) -file(RENAME ${CURRENT_PACKAGES_DIR}/share/genann/LICENSE ${CURRENT_PACKAGES_DIR}/share/genann/copyright) +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/genann/vcpkg.json b/ports/genann/vcpkg.json index 7a92643f077..9a75adceef8 100644 --- a/ports/genann/vcpkg.json +++ b/ports/genann/vcpkg.json @@ -1,7 +1,7 @@ { "name": "genann", "version-date": "2019-07-10", - "port-version": 2, + "port-version": 3, "description": "Genann is a minimal, well-tested library for training and using feedforward artificial neural networks (ANN) in C.", "homepage": "https://github.com/codeplea/genann", "dependencies": [ diff --git a/ports/gettimeofday/portfile.cmake b/ports/gettimeofday/portfile.cmake index cd18d761fb5..0b4d4b8158d 100644 --- a/ports/gettimeofday/portfile.cmake +++ b/ports/gettimeofday/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_cmake_configure( - SOURCE_PATH ${CMAKE_CURRENT_LIST_DIR} + SOURCE_PATH "${CMAKE_CURRENT_LIST_DIR}" ) vcpkg_cmake_install() vcpkg_copy_pdbs() -file(INSTALL ${CMAKE_CURRENT_LIST_DIR}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/gettimeofday/vcpkg.json b/ports/gettimeofday/vcpkg.json index 36f19dab6e1..c4b387f8ee3 100644 --- a/ports/gettimeofday/vcpkg.json +++ b/ports/gettimeofday/vcpkg.json @@ -1,7 +1,7 @@ { "name": "gettimeofday", "version-date": "2017-10-14", - "port-version": 5, + "port-version": 6, "description": "An implementation of gettimeofday for WIN32", "dependencies": [ { diff --git a/ports/gflags/portfile.cmake b/ports/gflags/portfile.cmake index f6613307763..fed9053482a 100644 --- a/ports/gflags/portfile.cmake +++ b/ports/gflags/portfile.cmake @@ -14,7 +14,7 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DGFLAGS_REGISTER_BUILD_DIR:BOOL=OFF -DGFLAGS_REGISTER_INSTALL_PREFIX:BOOL=OFF @@ -27,11 +27,11 @@ vcpkg_cmake_install() vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/gflags) if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") - file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/bin ${CURRENT_PACKAGES_DIR}/bin) + file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/bin" "${CURRENT_PACKAGES_DIR}/bin") endif() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") diff --git a/ports/gflags/vcpkg.json b/ports/gflags/vcpkg.json index d84be27a2ed..f39eebb7a3a 100644 --- a/ports/gflags/vcpkg.json +++ b/ports/gflags/vcpkg.json @@ -1,7 +1,7 @@ { "name": "gflags", "version": "2.2.2", - "port-version": 6, + "port-version": 7, "description": "A C++ library that implements commandline flags processing", "homepage": "https://github.com/gflags/gflags", "supports": "!uwp", diff --git a/ports/gl2ps/portfile.cmake b/ports/gl2ps/portfile.cmake index dfd1bd79455..2095809c3cc 100644 --- a/ports/gl2ps/portfile.cmake +++ b/ports/gl2ps/portfile.cmake @@ -9,12 +9,12 @@ vcpkg_from_gitlab( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=ON ) vcpkg_cmake_install() # Handle copyright -file(INSTALL ${SOURCE_PATH}/COPYING.GL2PS DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) -file(INSTALL ${SOURCE_PATH}/COPYING.LGPL DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright.LGPL) +file(INSTALL "${SOURCE_PATH}/COPYING.GL2PS" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) +file(INSTALL "${SOURCE_PATH}/COPYING.LGPL" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright.LGPL) diff --git a/ports/gl2ps/vcpkg.json b/ports/gl2ps/vcpkg.json index c733cff0645..32105b0ecf5 100644 --- a/ports/gl2ps/vcpkg.json +++ b/ports/gl2ps/vcpkg.json @@ -1,7 +1,7 @@ { "name": "gl2ps", "version": "1.4.2", - "port-version": 2, + "port-version": 3, "description": "OpenGL to PostScript Printing Library", "homepage": "https://gitlab.onelab.info/gl2ps/gl2ps", "dependencies": [ diff --git a/ports/gli/portfile.cmake b/ports/gli/portfile.cmake index a974b06e79a..e4a4edb4222 100644 --- a/ports/gli/portfile.cmake +++ b/ports/gli/portfile.cmake @@ -11,17 +11,17 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" ) vcpkg_cmake_install() vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/gli) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib) -file(REMOVE ${CURRENT_PACKAGES_DIR}/include/gli/CMakeLists.txt) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib") +file(REMOVE "${CURRENT_PACKAGES_DIR}/include/gli/CMakeLists.txt") # Put the license file where vcpkg expects it # manual.md contains the "licenses" section for the project -file(INSTALL ${SOURCE_PATH}/manual.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) \ No newline at end of file +file(INSTALL "${SOURCE_PATH}/manual.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file diff --git a/ports/gli/vcpkg.json b/ports/gli/vcpkg.json index 1c9ba7bdd18..732f3c25a01 100644 --- a/ports/gli/vcpkg.json +++ b/ports/gli/vcpkg.json @@ -1,7 +1,7 @@ { "name": "gli", "version-date": "2021-07-06", - "port-version": 1, + "port-version": 2, "description": "OpenGL Image (GLI)", "homepage": "https://gli.g-truc.net", "dependencies": [ diff --git a/ports/globjects/portfile.cmake b/ports/globjects/portfile.cmake index 1c3995218be..1ecdbb1003a 100644 --- a/ports/globjects/portfile.cmake +++ b/ports/globjects/portfile.cmake @@ -10,7 +10,7 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DOPTION_BUILD_TESTS=OFF -DOPTION_BUILD_GPU_TESTS=OFF @@ -21,9 +21,9 @@ vcpkg_cmake_install() vcpkg_cmake_config_fixup(CONFIG_PATH share/globjects/cmake/globjects) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share") -file(WRITE ${CURRENT_PACKAGES_DIR}/share/globjects/globjects-config.cmake "include(CMakeFindDependencyMacro) +file(WRITE "${CURRENT_PACKAGES_DIR}/share/globjects/globjects-config.cmake" "include(CMakeFindDependencyMacro) find_dependency(glm) find_dependency(glbinding) @@ -31,6 +31,6 @@ include(\${CMAKE_CURRENT_LIST_DIR}/globjects-export.cmake) ") # Handle copyright -file(RENAME ${CURRENT_PACKAGES_DIR}/share/globjects/LICENSE ${CURRENT_PACKAGES_DIR}/share/globjects/copyright) +file(RENAME "${CURRENT_PACKAGES_DIR}/share/${PORT}/LICENSE" "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright") vcpkg_copy_pdbs() diff --git a/ports/globjects/vcpkg.json b/ports/globjects/vcpkg.json index 8d67f55a403..6dd9aa1379b 100644 --- a/ports/globjects/vcpkg.json +++ b/ports/globjects/vcpkg.json @@ -1,7 +1,7 @@ { "name": "globjects", "version": "1.1.0", - "port-version": 5, + "port-version": 6, "description": "C++ library strictly wrapping OpenGL objects", "homepage": "https://github.com/cginternals/globjects", "dependencies": [ diff --git a/ports/gloo/portfile.cmake b/ports/gloo/portfile.cmake index 5a738ba49c1..e9ed2af43f2 100644 --- a/ports/gloo/portfile.cmake +++ b/ports/gloo/portfile.cmake @@ -19,13 +19,14 @@ if ("cuda" IN_LIST FEATURES) endif() vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS ${GLOO_FEATURE_OPTIONS} ) vcpkg_cmake_install() +vcpkg_copy_pdbs() vcpkg_cmake_config_fixup(CONFIG_PATH share/cmake/Gloo) file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -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/gloo/vcpkg.json b/ports/gloo/vcpkg.json index 3435540c4c8..7ded7731d02 100644 --- a/ports/gloo/vcpkg.json +++ b/ports/gloo/vcpkg.json @@ -1,7 +1,7 @@ { "name": "gloo", "version": "20201203", - "port-version": 1, + "port-version": 2, "description": "Collective communications library with various primitives for multi-machine training.", "homepage": "https://github.com/facebookincubator/gloo", "supports": "x64 & linux", diff --git a/ports/glui/portfile.cmake b/ports/glui/portfile.cmake index c183f386b17..00a1ae192ce 100644 --- a/ports/glui/portfile.cmake +++ b/ports/glui/portfile.cmake @@ -9,7 +9,7 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" ) vcpkg_cmake_install() @@ -19,18 +19,18 @@ vcpkg_copy_pdbs() vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT}) file(COPY - ${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake - DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} + "${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake" + DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" ) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic) vcpkg_replace_string( - ${CURRENT_PACKAGES_DIR}/include/GL/glui.h + "${CURRENT_PACKAGES_DIR}/include/GL/glui.h" "ifdef GLUIDLL" "if 1 //ifdef GLUIDLL" ) endif() -file(INSTALL ${SOURCE_PATH}/license.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(INSTALL "${SOURCE_PATH}/license.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/glui/vcpkg.json b/ports/glui/vcpkg.json index 553be71b35d..40fe8892f00 100644 --- a/ports/glui/vcpkg.json +++ b/ports/glui/vcpkg.json @@ -1,7 +1,7 @@ { "name": "glui", "version-date": "2019-11-30", - "port-version": 2, + "port-version": 3, "description": "GLUI is a GLUT-based C++ user interface library", "homepage": "https://github.com/libglui/glui", "dependencies": [ diff --git a/ports/gmime/portfile.cmake b/ports/gmime/portfile.cmake index 205d26646c4..dbdc226e4e3 100644 --- a/ports/gmime/portfile.cmake +++ b/ports/gmime/portfile.cmake @@ -11,28 +11,28 @@ vcpkg_download_distfile(ARCHIVE vcpkg_extract_source_archive( SOURCE_PATH - ARCHIVE ${ARCHIVE} - SOURCE_BASE ${LIB_VERSION} + ARCHIVE "${ARCHIVE}" + SOURCE_BASE "${LIB_VERSION}" ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") # We can use file supplied with original sources -configure_file(${SOURCE_PATH}/build/vs2017/unistd.h ${SOURCE_PATH} COPYONLY) -configure_file(${SOURCE_PATH}/build/vs2017/config.h ${SOURCE_PATH} COPYONLY) -configure_file(${SOURCE_PATH}/build/vs2017/gmime.def ${SOURCE_PATH} COPYONLY) +configure_file("${SOURCE_PATH}/build/vs2017/unistd.h" "${SOURCE_PATH}" COPYONLY) +configure_file("${SOURCE_PATH}/build/vs2017/config.h" "${SOURCE_PATH}" COPYONLY) +configure_file("${SOURCE_PATH}/build/vs2017/gmime.def" "${SOURCE_PATH}" COPYONLY) vcpkg_find_acquire_program(PKGCONFIG) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS - -DPKG_CONFIG_EXECUTABLE=${PKGCONFIG} + "-DPKG_CONFIG_EXECUTABLE=${PKGCONFIG}" ) vcpkg_cmake_install() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # License and man -file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${LIB_NAME} RENAME copyright) +file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${LIB_NAME}" RENAME copyright) vcpkg_copy_pdbs() diff --git a/ports/gmime/vcpkg.json b/ports/gmime/vcpkg.json index 31546cbfbd5..d92dfe61ccf 100644 --- a/ports/gmime/vcpkg.json +++ b/ports/gmime/vcpkg.json @@ -1,7 +1,7 @@ { "name": "gmime", "version": "3.2.6", - "port-version": 4, + "port-version": 5, "description": "GMime is a C/C++ library which may be used for the creation and parsing of messages using the Multipurpose Internet Mail Extension (MIME).", "homepage": "https://developer.gnome.org/gmime/", "license": "LGPL-2.1-or-later", diff --git a/ports/graphicsmagick/portfile.cmake b/ports/graphicsmagick/portfile.cmake index f4b1e62ca54..921e19fc48c 100644 --- a/ports/graphicsmagick/portfile.cmake +++ b/ports/graphicsmagick/portfile.cmake @@ -17,11 +17,11 @@ vcpkg_from_sourceforge( disable_graphicsmagick_modules.patch ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/magick_types.h DESTINATION ${SOURCE_PATH}/magick) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") +file(COPY "${CMAKE_CURRENT_LIST_DIR}/magick_types.h" DESTINATION "${SOURCE_PATH}/magick") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS_DEBUG -DINSTALL_HEADERS=OFF ) @@ -31,16 +31,16 @@ vcpkg_cmake_install() vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-graphicsmagick) # copy license -file(INSTALL ${SOURCE_PATH}/Copyright.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(INSTALL "${SOURCE_PATH}/Copyright.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) # copy config -file(COPY ${SOURCE_PATH}/config/colors.mgk DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/config) -file(COPY ${SOURCE_PATH}/config/log.mgk DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/config) -file(COPY ${SOURCE_PATH}/config/modules.mgk DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/config) +file(COPY "${SOURCE_PATH}/config/colors.mgk" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/config") +file(COPY "${SOURCE_PATH}/config/log.mgk" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/config") +file(COPY "${SOURCE_PATH}/config/modules.mgk" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/config") -file(READ ${SOURCE_PATH}/config/type-windows.mgk.in TYPE_MGK) +file(READ "${SOURCE_PATH}/config/type-windows.mgk.in" TYPE_MGK) string(REPLACE "@windows_font_dir@" "$ENV{SYSTEMROOT}/Fonts/" TYPE_MGK "${TYPE_MGK}") -file(WRITE ${CURRENT_PACKAGES_DIR}/share/graphicsmagick/config/type.mgk "${TYPE_MGK}") +file(WRITE "${CURRENT_PACKAGES_DIR}/share/graphicsmagick/config/type.mgk" "${TYPE_MGK}") -configure_file(${SOURCE_PATH}/config/delegates.mgk.in ${CURRENT_PACKAGES_DIR}/share/${PORT}/config/delegates.mgk @ONLY) +configure_file("${SOURCE_PATH}/config/delegates.mgk.in" "${CURRENT_PACKAGES_DIR}/share/${PORT}/config/delegates.mgk" @ONLY) vcpkg_copy_pdbs() diff --git a/ports/graphicsmagick/vcpkg.json b/ports/graphicsmagick/vcpkg.json index 07ccdcf8f07..90e01917de4 100644 --- a/ports/graphicsmagick/vcpkg.json +++ b/ports/graphicsmagick/vcpkg.json @@ -1,7 +1,7 @@ { "name": "graphicsmagick", "version": "1.3.37", - "port-version": 2, + "port-version": 3, "description": "Image processing library", "homepage": "https://sourceforge.net/projects/graphicsmagick/", "dependencies": [ diff --git a/ports/h5py-lzf/portfile.cmake b/ports/h5py-lzf/portfile.cmake index 43d4c37e59f..2ab6ee701e7 100644 --- a/ports/h5py-lzf/portfile.cmake +++ b/ports/h5py-lzf/portfile.cmake @@ -16,10 +16,10 @@ vcpkg_from_github( 0001-disable-H5PLget_plugin-api.patch ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}/lzf) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}/lzf") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH}/lzf + SOURCE_PATH "${SOURCE_PATH}/lzf" OPTIONS -Dlink_hdf5_SHARED=${link_hdf5_SHARED} ) @@ -28,6 +28,6 @@ vcpkg_cmake_install() vcpkg_copy_pdbs() vcpkg_cmake_config_fixup(CONFIG_PATH share/cmake/${PORT}) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share") -configure_file(${SOURCE_PATH}/lzf/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY) +configure_file("${SOURCE_PATH}/lzf/LICENSE.txt" "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" COPYONLY) diff --git a/ports/h5py-lzf/vcpkg.json b/ports/h5py-lzf/vcpkg.json index 446b1428f24..0f61c61fb53 100644 --- a/ports/h5py-lzf/vcpkg.json +++ b/ports/h5py-lzf/vcpkg.json @@ -1,7 +1,7 @@ { "name": "h5py-lzf", "version-date": "2019-12-04", - "port-version": 2, + "port-version": 3, "description": "The LZF filter is an alternative DEFLATE-style compressor for HDF5 datasets, using the free LZF library by Marc Alexander Lehmann.", "homepage": "https://github.com/h5py/h5py/tree/master/lzf", "dependencies": [ diff --git a/ports/hayai/portfile.cmake b/ports/hayai/portfile.cmake index c4f5e9ddf0f..19d0c4ace0f 100644 --- a/ports/hayai/portfile.cmake +++ b/ports/hayai/portfile.cmake @@ -14,7 +14,7 @@ if(VCPKG_TARGET_IS_UWP) endif() vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DINSTALL_HAYAI=ON -DBUILD_HAYAI_TESTS=OFF @@ -23,42 +23,42 @@ vcpkg_cmake_configure( vcpkg_cmake_install() -if(EXISTS ${CURRENT_PACKAGES_DIR}/CMake) +if(EXISTS "${CURRENT_PACKAGES_DIR}/CMake") vcpkg_cmake_config_fixup(CONFIG_PATH CMake) -elseif(EXISTS ${CURRENT_PACKAGES_DIR}/lib/CMake/${PORT}) +elseif(EXISTS "${CURRENT_PACKAGES_DIR}/lib/CMake/${PORT}") vcpkg_cmake_config_fixup(CONFIG_PATH lib/CMake/${PORT}) endif() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # Handle manual-link libraries -if(EXISTS ${CURRENT_PACKAGES_DIR}/debug/lib/hayai_main.lib) - file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/debug/lib/manual-link) +if(EXISTS "${CURRENT_PACKAGES_DIR}/debug/lib/hayai_main.lib") + file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/debug/lib/manual-link") file(RENAME - ${CURRENT_PACKAGES_DIR}/debug/lib/hayai_main.lib - ${CURRENT_PACKAGES_DIR}/debug/lib/manual-link/hayai_main.lib + "${CURRENT_PACKAGES_DIR}/debug/lib/hayai_main.lib" + "${CURRENT_PACKAGES_DIR}/debug/lib/manual-link/hayai_main.lib" ) vcpkg_replace_string( - ${CURRENT_PACKAGES_DIR}/share/${PORT}/hayai-targets-debug.cmake + "${CURRENT_PACKAGES_DIR}/share/${PORT}/hayai-targets-debug.cmake" "\${CMAKE_CURRENT_LIST_DIR}/../../debug/lib/hayai_main.lib" "\${CMAKE_CURRENT_LIST_DIR}/../../debug/lib/manual-link/hayai_main.lib" ) endif() -if(EXISTS ${CURRENT_PACKAGES_DIR}/lib/hayai_main.lib) - file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/lib/manual-link) +if(EXISTS "${CURRENT_PACKAGES_DIR}/lib/hayai_main.lib") + file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/lib/manual-link") file(RENAME - ${CURRENT_PACKAGES_DIR}/lib/hayai_main.lib - ${CURRENT_PACKAGES_DIR}/lib/manual-link/hayai_main.lib + "${CURRENT_PACKAGES_DIR}/lib/hayai_main.lib" + "${CURRENT_PACKAGES_DIR}/lib/manual-link/hayai_main.lib" ) vcpkg_replace_string( - ${CURRENT_PACKAGES_DIR}/share/${PORT}/hayai-targets-release.cmake + "${CURRENT_PACKAGES_DIR}/share/${PORT}/hayai-targets-release.cmake" "\${CMAKE_CURRENT_LIST_DIR}/../../lib/hayai_main.lib" "\${CMAKE_CURRENT_LIST_DIR}/../../lib/manual-link/hayai_main.lib" ) endif() # Handle copyright -configure_file(${SOURCE_PATH}/LICENSE.md ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY) +configure_file("${SOURCE_PATH}/LICENSE.md" "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" COPYONLY) diff --git a/ports/hayai/vcpkg.json b/ports/hayai/vcpkg.json index b3c48201fd4..c69698cffd6 100644 --- a/ports/hayai/vcpkg.json +++ b/ports/hayai/vcpkg.json @@ -1,7 +1,7 @@ { "name": "hayai", "version-date": "2019-08-10", - "port-version": 2, + "port-version": 3, "description": "C++ benchmarking framework", "homepage": "https://github.com/nickbruun/hayai", "dependencies": [ diff --git a/ports/http-parser/portfile.cmake b/ports/http-parser/portfile.cmake index 6fac52f9fb9..fd016b910e4 100644 --- a/ports/http-parser/portfile.cmake +++ b/ports/http-parser/portfile.cmake @@ -8,18 +8,17 @@ vcpkg_from_github( HEAD_REF master ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" ) vcpkg_cmake_install() vcpkg_copy_pdbs() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-http-parser) # Handle copyright -file(COPY ${SOURCE_PATH}/LICENSE-MIT DESTINATION ${CURRENT_PACKAGES_DIR}/share/http-parser) -file(RENAME ${CURRENT_PACKAGES_DIR}/share/http-parser/LICENSE-MIT ${CURRENT_PACKAGES_DIR}/share/http-parser/copyright) +file(INSTALL "${SOURCE_PATH}/LICENSE-MIT" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/http-parser/vcpkg.json b/ports/http-parser/vcpkg.json index 7acaba61d9a..94397042840 100644 --- a/ports/http-parser/vcpkg.json +++ b/ports/http-parser/vcpkg.json @@ -1,7 +1,7 @@ { "name": "http-parser", "version": "2.9.4", - "port-version": 2, + "port-version": 3, "description": "HTTP Parser.", "homepage": "https://github.com/nodejs/http-parser", "dependencies": [ diff --git a/ports/hungarian/portfile.cmake b/ports/hungarian/portfile.cmake index cd7421206a0..c988428c546 100644 --- a/ports/hungarian/portfile.cmake +++ b/ports/hungarian/portfile.cmake @@ -1,28 +1,28 @@ vcpkg_check_linkage(ONLY_STATIC_LIBRARY) vcpkg_download_distfile(ARCHIVE - URLS "http://www2.informatik.uni-freiburg.de/~stachnis/misc/libhungarian-v0.1.3.tgz" - FILENAME "libhungarian-v0.1.3.tgz" + URLS "http://www2.informatik.uni-freiburg.de/~stachnis/misc/libhungarian-v${VERSION}.tgz" + FILENAME "libhungarian-v${VERSION}.tgz" SHA512 1fa105e351c307c07bb96892c9d4c44b167d92cbed80962a8653ac35b8afe00fcf5dcc2d920b95671d6c3cd86745362a64dd8dc173623a8179006e2c7b2cbc69 ) vcpkg_extract_source_archive( SOURCE_PATH - ARCHIVE ${ARCHIVE} + ARCHIVE "${ARCHIVE}" NO_REMOVE_ONE_LEVEL ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" ) vcpkg_cmake_install() vcpkg_cmake_config_fixup() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # Handle copyright -file(INSTALL ${CMAKE_CURRENT_LIST_DIR}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/hungarian RENAME copyright) +file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/hungarian/vcpkg.json b/ports/hungarian/vcpkg.json index 9734e8cb156..9021ac264ba 100644 --- a/ports/hungarian/vcpkg.json +++ b/ports/hungarian/vcpkg.json @@ -1,7 +1,7 @@ { "name": "hungarian", - "version-string": "v0.1.3", - "port-version": 2, + "version": "0.1.3", + "port-version": 3, "description": "C-implementation of the Hungarian Method: finding the optimal assignment (assigning a set of jobs to a set of machines) in O(n^3), where n=max{#jobs, #machines}. The implementation is a sligntly enhanced version of the implementation provided by the Stanford GraphBase", "dependencies": [ { diff --git a/ports/ignition-modularscripts/vcpkg-port-config.cmake b/ports/ignition-modularscripts/vcpkg-port-config.cmake index 7737281d475..6b589d7f866 100644 --- a/ports/ignition-modularscripts/vcpkg-port-config.cmake +++ b/ports/ignition-modularscripts/vcpkg-port-config.cmake @@ -1,3 +1,5 @@ +include("${CMAKE_CURRENT_LIST_DIR}/../vcpkg-cmake/vcpkg-port-config.cmake") +include("${CMAKE_CURRENT_LIST_DIR}/../vcpkg-cmake-config/vcpkg-port-config.cmake") function(ignition_modular_build_library) set(options DISABLE_PKGCONFIG_INSTALL) @@ -5,30 +7,29 @@ function(ignition_modular_build_library) set(multiValueArgs OPTIONS) cmake_parse_arguments(IML "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) vcpkg_find_acquire_program(PKGCONFIG) - vcpkg_configure_cmake( - SOURCE_PATH ${IML_SOURCE_PATH} - PREFER_NINJA + vcpkg_cmake_configure( + SOURCE_PATH "${IML_SOURCE_PATH}" DISABLE_PARALLEL_CONFIGURE OPTIONS - -DPKG_CONFIG_EXECUTABLE=${PKGCONFIG} + "-DPKG_CONFIG_EXECUTABLE=${PKGCONFIG}" -DBUILD_TESTING=OFF ${IML_OPTIONS} ) - vcpkg_install_cmake(ADD_BIN_TO_PATH) + vcpkg_cmake_install(ADD_BIN_TO_PATH) # If necessary, move the CMake config files if(EXISTS "${CURRENT_PACKAGES_DIR}/lib/cmake") # Some ignition libraries install library subcomponents, that are effectively additional cmake packages - # with name ${IML_CMAKE_PACKAGE_NAME}-${COMPONENT_NAME}, so it is needed to call vcpkg_fixup_cmake_targets for them as well + # with name ${IML_CMAKE_PACKAGE_NAME}-${COMPONENT_NAME}, so it is needed to call vcpkg_cmake_config_fixup for them as well file(GLOB COMPONENTS_CMAKE_PACKAGE_NAMES LIST_DIRECTORIES TRUE RELATIVE "${CURRENT_PACKAGES_DIR}/lib/cmake/" "${CURRENT_PACKAGES_DIR}/lib/cmake/*") foreach(COMPONENT_CMAKE_PACKAGE_NAME IN LISTS COMPONENTS_CMAKE_PACKAGE_NAMES) - vcpkg_fixup_cmake_targets(CONFIG_PATH "lib/cmake/${COMPONENT_CMAKE_PACKAGE_NAME}" - TARGET_PATH "share/${COMPONENT_CMAKE_PACKAGE_NAME}" + vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/${COMPONENT_CMAKE_PACKAGE_NAME}" + PACKAGE_NAME ${COMPONENT_CMAKE_PACKAGE_NAME} DO_NOT_DELETE_PARENT_CONFIG_PATH) endforeach() @@ -40,10 +41,10 @@ function(ignition_modular_build_library) endif() # Remove unused files files - file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/cmake - ${CURRENT_PACKAGES_DIR}/debug/include - ${CURRENT_PACKAGES_DIR}/debug/lib/cmake - ${CURRENT_PACKAGES_DIR}/debug/share) + file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib/cmake" + "${CURRENT_PACKAGES_DIR}/debug/include" + "${CURRENT_PACKAGES_DIR}/debug/lib/cmake" + "${CURRENT_PACKAGES_DIR}/debug/share") # Make pkg-config files relocatable if(NOT IML_DISABLE_PKGCONFIG_INSTALL) @@ -52,8 +53,8 @@ function(ignition_modular_build_library) endif() vcpkg_fixup_pkgconfig(${SYSTEM_LIBRARIES}) else() - file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/pkgconfig - ${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig) + file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib/pkgconfig" + "${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig") endif() # Find the relevant license file and install it @@ -62,7 +63,7 @@ function(ignition_modular_build_library) elseif(EXISTS "${SOURCE_PATH}/README.md") set(LICENSE_PATH "${SOURCE_PATH}/README.md") endif() - file(INSTALL ${LICENSE_PATH} DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) + file(INSTALL "${LICENSE_PATH}" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) endfunction() ## # ignition_modular_library diff --git a/ports/ignition-modularscripts/vcpkg.json b/ports/ignition-modularscripts/vcpkg.json index d7beaa13ff7..ef7fdd97ad0 100644 --- a/ports/ignition-modularscripts/vcpkg.json +++ b/ports/ignition-modularscripts/vcpkg.json @@ -1,7 +1,17 @@ { "name": "ignition-modularscripts", "version-date": "2022-05-11", - "port-version": 1, + "port-version": 2, "description": "Vcpkg helpers to package ignition libraries", - "license": null + "license": null, + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] } diff --git a/ports/iniparser/portfile.cmake b/ports/iniparser/portfile.cmake index 39eac67ed4c..4688037bc4b 100644 --- a/ports/iniparser/portfile.cmake +++ b/ports/iniparser/portfile.cmake @@ -10,18 +10,18 @@ vcpkg_from_github( win32_ssize_t.patch ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" ) vcpkg_cmake_install() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-${PORT}) -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) - -vcpkg_fixup_pkgconfig() +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) + +vcpkg_fixup_pkgconfig() diff --git a/ports/iniparser/vcpkg.json b/ports/iniparser/vcpkg.json index 431ffd2721b..8ed760ec168 100644 --- a/ports/iniparser/vcpkg.json +++ b/ports/iniparser/vcpkg.json @@ -1,7 +1,7 @@ { "name": "iniparser", "version-date": "2020-04-06", - "port-version": 4, + "port-version": 5, "description": "C library for parsing INI-style files", "homepage": "https://github.com/ndevilla/iniparser", "license": "MIT", diff --git a/ports/io2d/portfile.cmake b/ports/io2d/portfile.cmake index 0b18a310beb..16edd25ede5 100644 --- a/ports/io2d/portfile.cmake +++ b/ports/io2d/portfile.cmake @@ -15,7 +15,7 @@ if (VCPKG_TARGET_IS_OSX) endif() vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DIO2D_WITHOUT_SAMPLES=1 -DIO2D_WITHOUT_TESTS=1 @@ -25,13 +25,13 @@ vcpkg_cmake_configure( vcpkg_cmake_install() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/io2d) if (NOT VCPKG_TARGET_IS_OSX) - file(RENAME ${CURRENT_PACKAGES_DIR}/share/io2d/io2dConfig.cmake ${CURRENT_PACKAGES_DIR}/share/io2d/io2dTargets.cmake) - file(WRITE ${CURRENT_PACKAGES_DIR}/share/io2d/io2dConfig.cmake " + file(RENAME "${CURRENT_PACKAGES_DIR}/share/io2d/io2dConfig.cmake" "${CURRENT_PACKAGES_DIR}/share/io2d/io2dTargets.cmake") + file(WRITE "${CURRENT_PACKAGES_DIR}/share/io2d/io2dConfig.cmake" " include(CMakeFindDependencyMacro) find_dependency(unofficial-cairo CONFIG) find_dependency(unofficial-graphicsmagick CONFIG) @@ -40,4 +40,4 @@ if (NOT VCPKG_TARGET_IS_OSX) ") endif() -file(INSTALL ${SOURCE_PATH}/LICENSE.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) \ No newline at end of file +file(INSTALL "${SOURCE_PATH}/LICENSE.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file diff --git a/ports/io2d/vcpkg.json b/ports/io2d/vcpkg.json index cc6034ac194..dc654153725 100644 --- a/ports/io2d/vcpkg.json +++ b/ports/io2d/vcpkg.json @@ -1,7 +1,7 @@ { "name": "io2d", "version-date": "2020-09-14", - "port-version": 4, + "port-version": 5, "description": "a lightweight, cross platform drawing library", "dependencies": [ { diff --git a/ports/itpp/portfile.cmake b/ports/itpp/portfile.cmake index 5b07c706cbc..db2ee89546a 100644 --- a/ports/itpp/portfile.cmake +++ b/ports/itpp/portfile.cmake @@ -15,7 +15,7 @@ vcpkg_from_sourceforge( file(RENAME "${SOURCE_PATH}/VERSION" "${SOURCE_PATH}/VERSION.txt") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DCMAKE_DISABLE_FIND_PACKAGE_LAPACK=ON -DCMAKE_DISABLE_FIND_PACKAGE_FFT=ON @@ -25,13 +25,13 @@ vcpkg_cmake_configure( vcpkg_cmake_install() 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() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") vcpkg_copy_pdbs() -file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) - -vcpkg_fixup_pkgconfig() +file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) + +vcpkg_fixup_pkgconfig() diff --git a/ports/itpp/vcpkg.json b/ports/itpp/vcpkg.json index dbb59c2b018..5d3d7ce37c9 100644 --- a/ports/itpp/vcpkg.json +++ b/ports/itpp/vcpkg.json @@ -1,7 +1,7 @@ { "name": "itpp", "version-semver": "4.3.1", - "port-version": 9, + "port-version": 10, "description": "IT++ is a C++ library of mathematical, signal processing and communication classes and functions. Its main use is in simulation of communication systems and for performing research in the area of communications.", "homepage": "http://itpp.sourceforge.net", "dependencies": [ diff --git a/ports/jbig2dec/portfile.cmake b/ports/jbig2dec/portfile.cmake index 53c8c4c7e37..463c3920811 100644 --- a/ports/jbig2dec/portfile.cmake +++ b/ports/jbig2dec/portfile.cmake @@ -8,10 +8,10 @@ vcpkg_from_github( HEAD_REF master ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=1 ) @@ -19,4 +19,4 @@ vcpkg_cmake_configure( vcpkg_cmake_install() # Handle copyright -file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/jbig2dec RENAME copyright) +file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/jbig2dec/vcpkg.json b/ports/jbig2dec/vcpkg.json index 6b0b6c90b7b..824b6a3698d 100644 --- a/ports/jbig2dec/vcpkg.json +++ b/ports/jbig2dec/vcpkg.json @@ -1,7 +1,7 @@ { "name": "jbig2dec", "version": "0.19", - "port-version": 2, + "port-version": 3, "description": "a decoder library and example utility implementing the JBIG2 bi-level image compression spec. Also known as ITU T.88 and ISO IEC 14492, and included by reference in Adobe's PDF version 1.4 and later.", "homepage": "https://github.com/ArtifexSoftware/jbig2dec", "dependencies": [ diff --git a/ports/jbigkit/portfile.cmake b/ports/jbigkit/portfile.cmake index 239efc99eb7..e9ed464557a 100644 --- a/ports/jbigkit/portfile.cmake +++ b/ports/jbigkit/portfile.cmake @@ -11,18 +11,18 @@ vcpkg_download_distfile(ARCHIVE vcpkg_extract_source_archive( SOURCE_PATH - ARCHIVE ${ARCHIVE} + ARCHIVE "${ARCHIVE}" ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH}) + SOURCE_PATH "${SOURCE_PATH}" +) vcpkg_cmake_install() vcpkg_copy_pdbs() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") -file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/jbigkit) -file(RENAME ${CURRENT_PACKAGES_DIR}/share/jbigkit/COPYING ${CURRENT_PACKAGES_DIR}/share/jbigkit/copyright) +file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/jbigkit/vcpkg.json b/ports/jbigkit/vcpkg.json index 1e10243423d..0257b912880 100644 --- a/ports/jbigkit/vcpkg.json +++ b/ports/jbigkit/vcpkg.json @@ -1,7 +1,7 @@ { "name": "jbigkit", "version": "2.1", - "port-version": 6, + "port-version": 7, "description": "A software implementation of the JBIG1 data compression standard (ITU-T T.82)", "homepage": "https://www.cl.cam.ac.uk/~mgk25/jbigkit", "dependencies": [ diff --git a/ports/jinja2cpplight/portfile.cmake b/ports/jinja2cpplight/portfile.cmake index cf2cea09eeb..7f6554ab08a 100644 --- a/ports/jinja2cpplight/portfile.cmake +++ b/ports/jinja2cpplight/portfile.cmake @@ -18,7 +18,7 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" ) vcpkg_cmake_install() @@ -26,11 +26,11 @@ vcpkg_cmake_install() vcpkg_copy_pdbs() -file(GLOB_RECURSE JINJA2CPPLIGHT_EXES ${CURRENT_PACKAGES_DIR}/bin/jinja2cpplight_unittests*) -file(COPY ${JINJA2CPPLIGHT_EXES} DESTINATION ${CURRENT_PACKAGES_DIR}/tools) +file(GLOB_RECURSE JINJA2CPPLIGHT_EXES "${CURRENT_PACKAGES_DIR}/bin/jinja2cpplight_unittests*") +file(COPY ${JINJA2CPPLIGHT_EXES} DESTINATION "${CURRENT_PACKAGES_DIR}/tools") file(REMOVE_RECURSE ${JINJA2CPPLIGHT_EXES}) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # Handle copyright -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) \ No newline at end of file +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file diff --git a/ports/jinja2cpplight/vcpkg.json b/ports/jinja2cpplight/vcpkg.json index d3b2709a21a..cd3c5caf5bc 100644 --- a/ports/jinja2cpplight/vcpkg.json +++ b/ports/jinja2cpplight/vcpkg.json @@ -1,7 +1,7 @@ { "name": "jinja2cpplight", "version-date": "2018-05-08", - "port-version": 2, + "port-version": 3, "description": "(very) lightweight version of Jinja2 for C++, Lightweight templating engine for C++, based on Jinja2.", "homepage": "https://github.com/hughperkins/Jinja2CppLight", "supports": "!uwp", diff --git a/ports/json-spirit/portfile.cmake b/ports/json-spirit/portfile.cmake index a51128e22ee..937e2b9f471 100644 --- a/ports/json-spirit/portfile.cmake +++ b/ports/json-spirit/portfile.cmake @@ -10,15 +10,19 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} - OPTIONS -DBUILD_STATIC_LIBS=off -DJSON_SPIRIT_DEMOS=off -DJSON_SPIRIT_TESTS=off) + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + -DBUILD_STATIC_LIBS=OFF + -DJSON_SPIRIT_DEMOS=OFF + -DJSON_SPIRIT_TESTS=OFF +) vcpkg_cmake_install() # Handle copyright -file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/json-spirit RENAME copyright) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") 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() vcpkg_copy_pdbs() diff --git a/ports/json-spirit/vcpkg.json b/ports/json-spirit/vcpkg.json index bd04cc4c34e..37f23707913 100644 --- a/ports/json-spirit/vcpkg.json +++ b/ports/json-spirit/vcpkg.json @@ -1,7 +1,7 @@ { "name": "json-spirit", "version": "4.1.0", - "port-version": 3, + "port-version": 4, "description": "json parser using boost library", "dependencies": [ "boost-config", diff --git a/ports/json11/portfile.cmake b/ports/json11/portfile.cmake index 2923a3184d5..fa87e5b209a 100644 --- a/ports/json11/portfile.cmake +++ b/ports/json11/portfile.cmake @@ -10,7 +10,7 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DJSON11_BUILD_TESTS:BOOL=OFF ) @@ -18,12 +18,11 @@ vcpkg_cmake_configure( vcpkg_cmake_install() vcpkg_copy_pdbs() -file(INSTALL ${CURRENT_PORT_DIR}/json11-config.cmake DESTINATION ${CURRENT_PACKAGES_DIR}/share/json11) +file(INSTALL "${CURRENT_PORT_DIR}/json11-config.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # Handle copyright -file(COPY ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/json11) -file(RENAME ${CURRENT_PACKAGES_DIR}/share/json11/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/json11/copyright) +file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) vcpkg_fixup_pkgconfig() diff --git a/ports/json11/vcpkg.json b/ports/json11/vcpkg.json index c595af81c90..5dd6065436c 100644 --- a/ports/json11/vcpkg.json +++ b/ports/json11/vcpkg.json @@ -1,7 +1,7 @@ { "name": "json11", "version-date": "2017-06-20", - "port-version": 5, + "port-version": 6, "description": "json11 is a tiny JSON library for C++11, providing JSON parsing and serialization.", "dependencies": [ { diff --git a/ports/json5-parser/portfile.cmake b/ports/json5-parser/portfile.cmake index 12aa7773fab..6d44e304b4d 100644 --- a/ports/json5-parser/portfile.cmake +++ b/ports/json5-parser/portfile.cmake @@ -10,14 +10,14 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH}/json5_parser + SOURCE_PATH "${SOURCE_PATH}/json5_parser" ) vcpkg_cmake_install() vcpkg_copy_pdbs() vcpkg_cmake_config_fixup(CONFIG_PATH share/cmake/json5-parser) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -configure_file(${SOURCE_PATH}/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY) +configure_file("${SOURCE_PATH}/LICENSE.txt" "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" COPYONLY) diff --git a/ports/json5-parser/vcpkg.json b/ports/json5-parser/vcpkg.json index 54cb5628f1b..7d9113497d8 100644 --- a/ports/json5-parser/vcpkg.json +++ b/ports/json5-parser/vcpkg.json @@ -1,7 +1,7 @@ { "name": "json5-parser", "version": "1.0.0", - "port-version": 4, + "port-version": 5, "description": "An enhancement of the JSON Spirit C++ library to understand json5.", "homepage": "https://github.com/Caltech-IPAC/json5_parser", "dependencies": [ diff --git a/ports/kd-soap/portfile.cmake b/ports/kd-soap/portfile.cmake index 14d2b77f26b..93a1f488e1c 100644 --- a/ports/kd-soap/portfile.cmake +++ b/ports/kd-soap/portfile.cmake @@ -14,7 +14,7 @@ vcpkg_extract_source_archive( string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" KDSoap_STATIC) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DKDSoap_QT6=ON -DKDSoap_STATIC=${KDSoap_STATIC} @@ -26,12 +26,12 @@ vcpkg_cmake_config_fixup(PACKAGE_NAME KDSoap-qt6 CONFIG_PATH lib/cmake/KDSoap-qt vcpkg_copy_tools(TOOL_NAMES kdwsdl2cpp-qt6 AUTO_CLEAN) 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() file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/doc") -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/kd-soap/vcpkg.json b/ports/kd-soap/vcpkg.json index f3f797c452c..c633915a990 100644 --- a/ports/kd-soap/vcpkg.json +++ b/ports/kd-soap/vcpkg.json @@ -1,6 +1,7 @@ { "name": "kd-soap", "version": "2.1.1", + "port-version": 1, "description": "A Qt-based client-side and server-side SOAP component", "homepage": "https://www.kdab.com/products/kd-soap", "license": "MIT", diff --git a/ports/kenlm/portfile.cmake b/ports/kenlm/portfile.cmake index f034af840be..c7c5fb61c2e 100644 --- a/ports/kenlm/portfile.cmake +++ b/ports/kenlm/portfile.cmake @@ -11,7 +11,7 @@ vcpkg_from_github( fix-const-overloaded.patch ) -file(REMOVE ${SOURCE_PATH}/cmake/modules/FindEigen3.cmake) +file(REMOVE "${SOURCE_PATH}/cmake/modules/FindEigen3.cmake") vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS FEATURES interpolate ENABLE_INTERPOLATE @@ -22,7 +22,7 @@ if ("interpolate" IN_LIST FEATURES AND VCPKG_TARGET_IS_WINDOWS) endif() vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS ${FEATURE_OPTIONS} -DFORCE_STATIC=OFF #already handled by vcpkg @@ -45,5 +45,5 @@ vcpkg_copy_pdbs() file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # Copyright and License -file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME license) +file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME license) diff --git a/ports/kenlm/vcpkg.json b/ports/kenlm/vcpkg.json index 68998049490..ae46d403cb1 100644 --- a/ports/kenlm/vcpkg.json +++ b/ports/kenlm/vcpkg.json @@ -1,7 +1,7 @@ { "name": "kenlm", "version": "20200924", - "port-version": 2, + "port-version": 3, "description": "KenLM: Faster and Smaller Language Model Queries", "supports": "!(arm64 & windows)", "dependencies": [ diff --git a/ports/kuku/portfile.cmake b/ports/kuku/portfile.cmake index 3a4b1702f55..72d97bfe877 100644 --- a/ports/kuku/portfile.cmake +++ b/ports/kuku/portfile.cmake @@ -9,14 +9,14 @@ vcpkg_from_github( ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" DISABLE_PARALLEL_CONFIGURE ) vcpkg_cmake_install() vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/Kuku-2.1) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # Handle copyright -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/kuku/vcpkg.json b/ports/kuku/vcpkg.json index e39bdef1130..dfdc17885e3 100644 --- a/ports/kuku/vcpkg.json +++ b/ports/kuku/vcpkg.json @@ -1,7 +1,7 @@ { "name": "kuku", "version": "2.1", - "port-version": 2, + "port-version": 3, "description": "Kuku is a simple open-source (MIT licensed) cuckoo hashing library developed by the Cryptography and Privacy Research group at Microsoft.", "homepage": "https://github.com/microsoft/Kuku", "dependencies": [ diff --git a/ports/kvasir-mpl/portfile.cmake b/ports/kvasir-mpl/portfile.cmake index a942624c2ae..f41ef5c963f 100644 --- a/ports/kvasir-mpl/portfile.cmake +++ b/ports/kvasir-mpl/portfile.cmake @@ -11,7 +11,7 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS FEATURES ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DBUILD_TESTING=${BUILD_WITH_TEST} ) @@ -20,9 +20,8 @@ vcpkg_cmake_install() # Move CMake config files to the right place vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/kvasir_mpl) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib") # Handle copyright -file(COPY ${SOURCE_PATH}/LICENSE.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}) -file(RENAME ${CURRENT_PACKAGES_DIR}/share/${PORT}/LICENSE.md ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright) \ No newline at end of file +file(INSTALL "${SOURCE_PATH}/LICENSE.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file diff --git a/ports/kvasir-mpl/vcpkg.json b/ports/kvasir-mpl/vcpkg.json index 5c76f39d662..0f64a72dc43 100644 --- a/ports/kvasir-mpl/vcpkg.json +++ b/ports/kvasir-mpl/vcpkg.json @@ -1,7 +1,7 @@ { "name": "kvasir-mpl", "version-date": "2019-08-06", - "port-version": 2, + "port-version": 3, "description": "This library is part of the Kvasir project. Kvasir is a collection of zero cost statically checked libraries for resource constrained systems including microcontrollers.", "homepage": "https://github.com/kvasir-io/mpl", "dependencies": [ diff --git a/ports/lapack/portfile.cmake b/ports/lapack/portfile.cmake index 312459685b3..ea938124479 100644 --- a/ports/lapack/portfile.cmake +++ b/ports/lapack/portfile.cmake @@ -1,5 +1,5 @@ SET(VCPKG_POLICY_EMPTY_PACKAGE enabled) # Make sure LAPACK can be found -vcpkg_cmake_configure(SOURCE_PATH ${CURRENT_PORT_DIR} - OPTIONS -DCMAKE_PREFIX_PATH="${CURRENT_PACKAGES_DIR}") +vcpkg_cmake_configure(SOURCE_PATH "${CURRENT_PORT_DIR}" + OPTIONS "-DCMAKE_PREFIX_PATH=${CURRENT_PACKAGES_DIR}") diff --git a/ports/lapack/vcpkg.json b/ports/lapack/vcpkg.json index 9d75904afa1..5112e419d3b 100644 --- a/ports/lapack/vcpkg.json +++ b/ports/lapack/vcpkg.json @@ -1,7 +1,7 @@ { "name": "lapack", "version-date": "2022-02-22", - "port-version": 1, + "port-version": 2, "description": "Metapackage for packages which provide LAPACK", "license": null, "dependencies": [ diff --git a/ports/levmar/portfile.cmake b/ports/levmar/portfile.cmake index b26a59e0669..9efcacf99d8 100644 --- a/ports/levmar/portfile.cmake +++ b/ports/levmar/portfile.cmake @@ -6,12 +6,12 @@ vcpkg_download_distfile(ARCHIVE vcpkg_extract_source_archive( SOURCE_PATH - ARCHIVE ${ARCHIVE} + ARCHIVE "${ARCHIVE}" PATCHES add-install.patch # patch just adding the install commands to original CMakeLists.txt ) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" DISABLE_PARALLEL_CONFIGURE OPTIONS -DHAVE_LAPACK=OFF @@ -22,7 +22,7 @@ vcpkg_cmake_configure( vcpkg_cmake_install() # Handle copyright -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) # Handle duplicated debug includes file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") diff --git a/ports/levmar/vcpkg.json b/ports/levmar/vcpkg.json index 55cf4dca19b..217521f44a5 100644 --- a/ports/levmar/vcpkg.json +++ b/ports/levmar/vcpkg.json @@ -1,7 +1,7 @@ { "name": "levmar", "version": "2.6", - "port-version": 2, + "port-version": 3, "description": "Levenberg-Marquardt nonlinear least squares optimization algorithm", "homepage": "http://users.ics.forth.gr/~lourakis/levmar/", "supports": "windows & !uwp", diff --git a/ports/libaiff/portfile.cmake b/ports/libaiff/portfile.cmake index c9abef72ebd..38c799e4ce0 100644 --- a/ports/libaiff/portfile.cmake +++ b/ports/libaiff/portfile.cmake @@ -11,11 +11,11 @@ vcpkg_from_sourceforge( buffer_uninitialized.patch ) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) -file(COPY ${CMAKE_CURRENT_LIST_DIR}/config.h DESTINATION ${SOURCE_PATH}/libaiff) +file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") +file(COPY "${CMAKE_CURRENT_LIST_DIR}/config.h" DESTINATION "${SOURCE_PATH}/libaiff") vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=ON ) @@ -33,4 +33,4 @@ foreach(HEADER ${HEADERS}) endforeach() # Handle copyright -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/libaiff/vcpkg.json b/ports/libaiff/vcpkg.json index 60275faa6a3..d5eaa228a89 100644 --- a/ports/libaiff/vcpkg.json +++ b/ports/libaiff/vcpkg.json @@ -1,7 +1,7 @@ { "name": "libaiff", "version": "5.0", - "port-version": 8, + "port-version": 9, "description": "LibAiff is an open-source library, providing C applications transparent read & write operations for Audio Interchange File Format (AIFF) files, with the goal of supporting all of its features", "homepage": "https://sourceforge.net/projects/aifftools", "dependencies": [ diff --git a/ports/libcds/portfile.cmake b/ports/libcds/portfile.cmake index 7176b47491e..481d9d1d097 100644 --- a/ports/libcds/portfile.cmake +++ b/ports/libcds/portfile.cmake @@ -13,7 +13,7 @@ string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" DISABLE_INSTALL_STATIC string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" DISABLE_INSTALL_SHARED) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DENABLE_UNIT_TEST=OFF -DENABLE_STRESS_TEST=OFF @@ -24,12 +24,12 @@ vcpkg_cmake_configure( vcpkg_cmake_install() -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/LibCDS) file(INSTALL - ${SOURCE_PATH}/LICENSE - DESTINATION ${CURRENT_PACKAGES_DIR}/share/libcds RENAME copyright) + "${SOURCE_PATH}/LICENSE" + DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) vcpkg_copy_pdbs() diff --git a/ports/libcds/vcpkg.json b/ports/libcds/vcpkg.json index 6bac4a10f24..ffedd68deb9 100644 --- a/ports/libcds/vcpkg.json +++ b/ports/libcds/vcpkg.json @@ -1,7 +1,7 @@ { "name": "libcds", "version": "2.3.3", - "port-version": 3, + "port-version": 4, "description": "a collection of concurrent containers that don't require external (manual) synchronization for shared access, and safe memory reclamation (SMR) algorithms like Hazard Pointer and user-space RCU that is used as an epoch-based SMR.", "homepage": "https://github.com/khizmax/libcds", "license": "BSL-1.0", diff --git a/ports/libconfig/portfile.cmake b/ports/libconfig/portfile.cmake index 6673ffaef47..a5471ba9034 100644 --- a/ports/libconfig/portfile.cmake +++ b/ports/libconfig/portfile.cmake @@ -8,17 +8,17 @@ vcpkg_from_github( if (NOT VCPKG_USE_HEAD_VERSION) message("If you would like to use cmake with the port, use `--head` option with vcpkg install.") - file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}) + file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") endif() if (NOT VCPKG_USE_HEAD_VERSION) vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS_DEBUG -DDISABLE_INSTALL_HEADERS=ON ) else() vcpkg_cmake_configure( - SOURCE_PATH ${SOURCE_PATH} + SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF @@ -30,11 +30,11 @@ vcpkg_cmake_install() vcpkg_copy_pdbs() if (VCPKG_USE_HEAD_VERSION) - file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) + file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/libconfig) endif() -foreach(FILE ${CURRENT_PACKAGES_DIR}/include/libconfig.h++ ${CURRENT_PACKAGES_DIR}/include/libconfig.h) +foreach(FILE "${CURRENT_PACKAGES_DIR}/include/libconfig.h++" "${CURRENT_PACKAGES_DIR}/include/libconfig.h") file(READ ${FILE} _contents) string(REPLACE "defined(LIBCONFIGXX_EXPORTS)" "0" _contents "${_contents}") string(REPLACE "defined(LIBCONFIG_EXPORTS)" "0" _contents "${_contents}") @@ -49,4 +49,4 @@ foreach(FILE ${CURRENT_PACKAGES_DIR}/include/libconfig.h++ ${CURRENT_PACKAGES_DI file(WRITE ${FILE} "${_contents}") endforeach() -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/libconfig/vcpkg.json b/ports/libconfig/vcpkg.json index 854fc12a5d2..46e5a2b8161 100644 --- a/ports/libconfig/vcpkg.json +++ b/ports/libconfig/vcpkg.json @@ -1,7 +1,7 @@ { "name": "libconfig", "version": "1.7.3", - "port-version": 2, + "port-version": 3, "description": "C/C++ library for processing configuration files", "homepage": "https://github.com/hyperrealm/libconfig", "dependencies": [ diff --git a/versions/baseline.json b/versions/baseline.json index cda61ff29ab..caf7bc531e6 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -2230,7 +2230,7 @@ }, "eathread": { "baseline": "1.32.09", - "port-version": 4 + "port-version": 5 }, "ebml": { "baseline": "1.4.4", @@ -2242,7 +2242,7 @@ }, "ecos": { "baseline": "2.0.8", - "port-version": 2 + "port-version": 3 }, "ecsutil": { "baseline": "1.0.7.15", @@ -2306,7 +2306,7 @@ }, "entityx": { "baseline": "1.3.0", - "port-version": 4 + "port-version": 5 }, "entt": { "baseline": "3.11.1", @@ -2410,7 +2410,7 @@ }, "fastfeat": { "baseline": "391d5e9", - "port-version": 3 + "port-version": 4 }, "fastgltf": { "baseline": "0.4.0", @@ -2422,7 +2422,7 @@ }, "fastlz": { "baseline": "2021-05-10", - "port-version": 1 + "port-version": 2 }, "fastor": { "baseline": "2021-11-22", @@ -2454,7 +2454,7 @@ }, "fdlibm": { "baseline": "5.3", - "port-version": 6 + "port-version": 7 }, "ffmpeg": { "baseline": "5.1.2", @@ -2490,11 +2490,11 @@ }, "flashlight-cpu": { "baseline": "0.3", - "port-version": 4 + "port-version": 5 }, "flashlight-cuda": { "baseline": "0.3", - "port-version": 5 + "port-version": 6 }, "flat": { "baseline": "2022-08-30", @@ -2526,7 +2526,7 @@ }, "fmem": { "baseline": "c-libs-2ccee3d2fb", - "port-version": 2 + "port-version": 3 }, "fmi4cpp": { "baseline": "0.8.0", @@ -2562,7 +2562,7 @@ }, "foonathan-memory": { "baseline": "2019-07-21", - "port-version": 3 + "port-version": 4 }, "forest": { "baseline": "12.1.0", @@ -2578,7 +2578,7 @@ }, "fp16": { "baseline": "2021-02-21", - "port-version": 1 + "port-version": 2 }, "fplus": { "baseline": "0.2.18-p0", @@ -2598,7 +2598,7 @@ }, "freeopcua": { "baseline": "20190125", - "port-version": 6 + "port-version": 7 }, "freerdp": { "baseline": "2.9.0", @@ -2650,7 +2650,7 @@ }, "functions-framework-cpp": { "baseline": "1.1.0", - "port-version": 2 + "port-version": 3 }, "fuzzylite": { "baseline": "6.0", @@ -2658,11 +2658,11 @@ }, "fxdiv": { "baseline": "2021-02-21", - "port-version": 1 + "port-version": 2 }, "g2o": { "baseline": "2020-02-07", - "port-version": 3 + "port-version": 4 }, "g3log": { "baseline": "2.3", @@ -2682,11 +2682,11 @@ }, "gamma": { "baseline": "gamma-2018-01-27", - "port-version": 5 + "port-version": 6 }, "gasol": { "baseline": "2018-01-04", - "port-version": 3 + "port-version": 4 }, "gaussianlib": { "baseline": "2019-08-04", @@ -2722,7 +2722,7 @@ }, "genann": { "baseline": "2019-07-10", - "port-version": 2 + "port-version": 3 }, "geogram": { "baseline": "1.8.3", @@ -2758,11 +2758,11 @@ }, "gettimeofday": { "baseline": "2017-10-14", - "port-version": 5 + "port-version": 6 }, "gflags": { "baseline": "2.2.2", - "port-version": 6 + "port-version": 7 }, "ghc-filesystem": { "baseline": "1.5.12", @@ -2786,7 +2786,7 @@ }, "gl2ps": { "baseline": "1.4.2", - "port-version": 2 + "port-version": 3 }, "gl3w": { "baseline": "2018-05-31", @@ -2810,7 +2810,7 @@ }, "gli": { "baseline": "2021-07-06", - "port-version": 1 + "port-version": 2 }, "glib": { "baseline": "2.76.1", @@ -2826,7 +2826,7 @@ }, "globjects": { "baseline": "1.1.0", - "port-version": 5 + "port-version": 6 }, "glog": { "baseline": "0.6.0", @@ -2834,7 +2834,7 @@ }, "gloo": { "baseline": "20201203", - "port-version": 1 + "port-version": 2 }, "glpk": { "baseline": "5.0", @@ -2846,11 +2846,11 @@ }, "glui": { "baseline": "2019-11-30", - "port-version": 2 + "port-version": 3 }, "gmime": { "baseline": "3.2.6", - "port-version": 4 + "port-version": 5 }, "gmmlib": { "baseline": "21.3.2", @@ -2914,7 +2914,7 @@ }, "graphicsmagick": { "baseline": "1.3.37", - "port-version": 2 + "port-version": 3 }, "graphite2": { "baseline": "1.3.14", @@ -3018,7 +3018,7 @@ }, "h5py-lzf": { "baseline": "2019-12-04", - "port-version": 2 + "port-version": 3 }, "halide": { "baseline": "15.0.0", @@ -3046,7 +3046,7 @@ }, "hayai": { "baseline": "2019-08-10", - "port-version": 2 + "port-version": 3 }, "hazelcast-cpp-client": { "baseline": "5.2.0", @@ -3114,11 +3114,11 @@ }, "http-parser": { "baseline": "2.9.4", - "port-version": 2 + "port-version": 3 }, "hungarian": { - "baseline": "v0.1.3", - "port-version": 2 + "baseline": "0.1.3", + "port-version": 3 }, "hunspell": { "baseline": "1.7.1", @@ -3202,7 +3202,7 @@ }, "ignition-modularscripts": { "baseline": "2022-05-11", - "port-version": 1 + "port-version": 2 }, "ignition-msgs1": { "baseline": "1.0.0", @@ -3306,7 +3306,7 @@ }, "iniparser": { "baseline": "2020-04-06", - "port-version": 4 + "port-version": 5 }, "inipp": { "baseline": "1.0.12", @@ -3330,7 +3330,7 @@ }, "io2d": { "baseline": "2020-09-14", - "port-version": 4 + "port-version": 5 }, "irrlicht": { "baseline": "1.8.4", @@ -3354,7 +3354,7 @@ }, "itpp": { "baseline": "4.3.1", - "port-version": 9 + "port-version": 10 }, "ixwebsocket": { "baseline": "11.4.3", @@ -3378,11 +3378,11 @@ }, "jbig2dec": { "baseline": "0.19", - "port-version": 2 + "port-version": 3 }, "jbigkit": { "baseline": "2.1", - "port-version": 6 + "port-version": 7 }, "jemalloc": { "baseline": "5.3.0", @@ -3390,7 +3390,7 @@ }, "jinja2cpplight": { "baseline": "2018-05-08", - "port-version": 2 + "port-version": 3 }, "joltphysics": { "baseline": "3.0.1", @@ -3418,15 +3418,15 @@ }, "json-spirit": { "baseline": "4.1.0", - "port-version": 3 + "port-version": 4 }, "json11": { "baseline": "2017-06-20", - "port-version": 5 + "port-version": 6 }, "json5-parser": { "baseline": "1.0.0", - "port-version": 4 + "port-version": 5 }, "jsoncons": { "baseline": "0.170.0", @@ -3466,7 +3466,7 @@ }, "kd-soap": { "baseline": "2.1.1", - "port-version": 0 + "port-version": 1 }, "kdalgorithms": { "baseline": "2023-02-11", @@ -3486,7 +3486,7 @@ }, "kenlm": { "baseline": "20200924", - "port-version": 2 + "port-version": 3 }, "keystone": { "baseline": "0.9.2", @@ -3682,11 +3682,11 @@ }, "kuku": { "baseline": "2.1", - "port-version": 2 + "port-version": 3 }, "kvasir-mpl": { "baseline": "2019-08-06", - "port-version": 2 + "port-version": 3 }, "kwsys": { "baseline": "2021-08-06", @@ -3698,7 +3698,7 @@ }, "lapack": { "baseline": "2022-02-22", - "port-version": 1 + "port-version": 2 }, "lapack-reference": { "baseline": "3.11.0", @@ -3758,7 +3758,7 @@ }, "levmar": { "baseline": "2.6", - "port-version": 2 + "port-version": 3 }, "libaaplus": { "baseline": "2.36", @@ -3774,7 +3774,7 @@ }, "libaiff": { "baseline": "5.0", - "port-version": 8 + "port-version": 9 }, "libalkimia": { "baseline": "8.1.70", @@ -3834,7 +3834,7 @@ }, "libcds": { "baseline": "2.3.3", - "port-version": 3 + "port-version": 4 }, "libcerf": { "baseline": "1.13", @@ -3842,7 +3842,7 @@ }, "libconfig": { "baseline": "1.7.3", - "port-version": 2 + "port-version": 3 }, "libconfuse": { "baseline": "2019-07-14", diff --git a/versions/e-/eathread.json b/versions/e-/eathread.json index 3d1c6c69e08..1a560b921be 100644 --- a/versions/e-/eathread.json +++ b/versions/e-/eathread.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "34f9cb023b8968a396617b8ff04abc086b1c02d7", + "version-string": "1.32.09", + "port-version": 5 + }, { "git-tree": "88ecba1014ac560fb1083f5e8b74c10cddf8d6ea", "version-string": "1.32.09", diff --git a/versions/e-/ecos.json b/versions/e-/ecos.json index f934153d4d0..479c91d505e 100644 --- a/versions/e-/ecos.json +++ b/versions/e-/ecos.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "78694a162b97c80fc2b0017c3dc13c9c7e79f9c2", + "version": "2.0.8", + "port-version": 3 + }, { "git-tree": "7dff762b4bcf1a168140c6c69aa8180c579d8fd9", "version": "2.0.8", diff --git a/versions/e-/entityx.json b/versions/e-/entityx.json index 379b4d46a05..1545ee642cc 100644 --- a/versions/e-/entityx.json +++ b/versions/e-/entityx.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "ad5351451933af0b68354f8ff7f018017c48d5c5", + "version": "1.3.0", + "port-version": 5 + }, { "git-tree": "e642d746ab67cfffbde02f5a78c2f5ee7acf635e", "version": "1.3.0", diff --git a/versions/f-/fastfeat.json b/versions/f-/fastfeat.json index bf94d49abae..3fe8b2057ca 100644 --- a/versions/f-/fastfeat.json +++ b/versions/f-/fastfeat.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "358fa85ceb7b5e03878d6a14880e2ea990f19b70", + "version-string": "391d5e9", + "port-version": 4 + }, { "git-tree": "541afe72f533ebfd48289a605d3d6652245a7196", "version-string": "391d5e9", diff --git a/versions/f-/fastlz.json b/versions/f-/fastlz.json index 6dc6e61474e..6b5542bca5b 100644 --- a/versions/f-/fastlz.json +++ b/versions/f-/fastlz.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "c0b4a47d599f386343ef30714e7ad2757c07e969", + "version-date": "2021-05-10", + "port-version": 2 + }, { "git-tree": "85820ff391f7eb605232c0ae7e8db844ff8a4f18", "version-date": "2021-05-10", diff --git a/versions/f-/fdlibm.json b/versions/f-/fdlibm.json index ef9145aa8e7..8b80e1e0c40 100644 --- a/versions/f-/fdlibm.json +++ b/versions/f-/fdlibm.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "b557ee44621e4f2935b37aee54d24addcbb418d2", + "version": "5.3", + "port-version": 7 + }, { "git-tree": "7b714eec8a6d6d491d3efa59688b7cc94bacf460", "version": "5.3", diff --git a/versions/f-/flashlight-cpu.json b/versions/f-/flashlight-cpu.json index 061c768f1eb..8b648b3f5c6 100644 --- a/versions/f-/flashlight-cpu.json +++ b/versions/f-/flashlight-cpu.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "fdd9cc7867f46f759c1376e35cd098e79a8adacd", + "version": "0.3", + "port-version": 5 + }, { "git-tree": "39bf5a47d9bf74db777caf107115e55fdedcf98e", "version": "0.3", diff --git a/versions/f-/flashlight-cuda.json b/versions/f-/flashlight-cuda.json index 60a8a8174e8..9b4d91f0763 100644 --- a/versions/f-/flashlight-cuda.json +++ b/versions/f-/flashlight-cuda.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "c6d4ea65707f91031fb354aaeb2c76897256d861", + "version": "0.3", + "port-version": 6 + }, { "git-tree": "97fa08fe5524aef7cbaa3d1b428d2b65245f2708", "version": "0.3", diff --git a/versions/f-/fmem.json b/versions/f-/fmem.json index 3b694f471c9..58781db39cb 100644 --- a/versions/f-/fmem.json +++ b/versions/f-/fmem.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "167b469ebdee2b6b9400980dba003882576bc803", + "version-string": "c-libs-2ccee3d2fb", + "port-version": 3 + }, { "git-tree": "c55d5bf565b64649e07fab3056d5f8cbc802f9ae", "version-string": "c-libs-2ccee3d2fb", diff --git a/versions/f-/foonathan-memory.json b/versions/f-/foonathan-memory.json index 763533933c8..1bd9d34210d 100644 --- a/versions/f-/foonathan-memory.json +++ b/versions/f-/foonathan-memory.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "815422e5bf77feefa4e1c277832d307b6bb47438", + "version-date": "2019-07-21", + "port-version": 4 + }, { "git-tree": "9741bb189e28cb460ce563613aa3857e19fb9d0d", "version-date": "2019-07-21", diff --git a/versions/f-/fp16.json b/versions/f-/fp16.json index 37baa34c6c3..f84859f4423 100644 --- a/versions/f-/fp16.json +++ b/versions/f-/fp16.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "387e9258cbd17b68a16e44b7fcd6bf20662aa7b1", + "version-date": "2021-02-21", + "port-version": 2 + }, { "git-tree": "99eb0d42bcecc27ff7831a478884bd84a5138563", "version-date": "2021-02-21", diff --git a/versions/f-/freeopcua.json b/versions/f-/freeopcua.json index e45c94e6a47..f30ef68baa8 100644 --- a/versions/f-/freeopcua.json +++ b/versions/f-/freeopcua.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "adfdfa8138aa47929d7e6f1e03809d00c6bf8aa2", + "version": "20190125", + "port-version": 7 + }, { "git-tree": "3a355dca9d180e973ffaf9ab282c03575d75aa86", "version": "20190125", diff --git a/versions/f-/functions-framework-cpp.json b/versions/f-/functions-framework-cpp.json index 9d04c429732..5c13848a96e 100644 --- a/versions/f-/functions-framework-cpp.json +++ b/versions/f-/functions-framework-cpp.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "61df7f37f44d59355e0ded6bb1241924a44143c8", + "version": "1.1.0", + "port-version": 3 + }, { "git-tree": "c640d5d8ccd519f8217444cc50a2ab3426e5de95", "version": "1.1.0", diff --git a/versions/f-/fxdiv.json b/versions/f-/fxdiv.json index 747018af4a5..4c8b464b84c 100644 --- a/versions/f-/fxdiv.json +++ b/versions/f-/fxdiv.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "409284eafee5c5712bbf7c9efa301a12824d094f", + "version-date": "2021-02-21", + "port-version": 2 + }, { "git-tree": "c00d510e636391fa33a1fcb52c1e767f00a7aecf", "version-date": "2021-02-21", diff --git a/versions/g-/g2o.json b/versions/g-/g2o.json index 7f857a06dbb..19caa853b1a 100644 --- a/versions/g-/g2o.json +++ b/versions/g-/g2o.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "fb61dcf5596f2a9212644c4ac8736831b7448ba5", + "version-date": "2020-02-07", + "port-version": 4 + }, { "git-tree": "3c19fe8da1b3f679aa832330cd4ef565c0ee45dc", "version-date": "2020-02-07", diff --git a/versions/g-/gamma.json b/versions/g-/gamma.json index 6ade489fd8e..0cdda472221 100644 --- a/versions/g-/gamma.json +++ b/versions/g-/gamma.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "dfa73b7b224977c60e757cd9eaa286c6db2bd90d", + "version-string": "gamma-2018-01-27", + "port-version": 6 + }, { "git-tree": "c81bf8a72f815cb3feaf26e0f8e82032bdb62e88", "version-string": "gamma-2018-01-27", diff --git a/versions/g-/gasol.json b/versions/g-/gasol.json index b71f523b301..d949a04b0b1 100644 --- a/versions/g-/gasol.json +++ b/versions/g-/gasol.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "f6963a5230e144f34c86f0b846d028567859449f", + "version-date": "2018-01-04", + "port-version": 4 + }, { "git-tree": "70bdc4eeb2b24a5b03dcd34b2a2d507a96e23d7e", "version-date": "2018-01-04", diff --git a/versions/g-/genann.json b/versions/g-/genann.json index ee4323bd70d..79146466e3f 100644 --- a/versions/g-/genann.json +++ b/versions/g-/genann.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "06697b312b624b447c7f8c4ba48e82ce6528883c", + "version-date": "2019-07-10", + "port-version": 3 + }, { "git-tree": "0f58751b97524c749b52f3953abab3cb9e962edc", "version-date": "2019-07-10", diff --git a/versions/g-/gettimeofday.json b/versions/g-/gettimeofday.json index f03945c23b7..48ec6f483e0 100644 --- a/versions/g-/gettimeofday.json +++ b/versions/g-/gettimeofday.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "31b00a1043898e49c04087100294c10d37094e8d", + "version-date": "2017-10-14", + "port-version": 6 + }, { "git-tree": "2e68f17377612bdb5d084079d8d1376f696bb4a6", "version-date": "2017-10-14", diff --git a/versions/g-/gflags.json b/versions/g-/gflags.json index 231c4d93d19..e513632c9a7 100644 --- a/versions/g-/gflags.json +++ b/versions/g-/gflags.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "1c57a920065312afe80b1b8a3595f82005da61ee", + "version": "2.2.2", + "port-version": 7 + }, { "git-tree": "8231f09b610ad8610fbbdcbb53fc9bb32af807a7", "version": "2.2.2", diff --git a/versions/g-/gl2ps.json b/versions/g-/gl2ps.json index b878b4c3036..57909dbef9b 100644 --- a/versions/g-/gl2ps.json +++ b/versions/g-/gl2ps.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "3607998f92ba0e61fbcae891aa6a8aa996e3bf0a", + "version": "1.4.2", + "port-version": 3 + }, { "git-tree": "65c00e3d59f426a74f7696bebc18ca8cf441c20d", "version": "1.4.2", diff --git a/versions/g-/gli.json b/versions/g-/gli.json index 9471185ddaa..e01c2e76244 100644 --- a/versions/g-/gli.json +++ b/versions/g-/gli.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "7505483cb3f7c8f2a8b1c1fccd460687cac6dbf3", + "version-date": "2021-07-06", + "port-version": 2 + }, { "git-tree": "773ce8321a978f3dcbdb0755a666715ad00f7b01", "version-date": "2021-07-06", diff --git a/versions/g-/globjects.json b/versions/g-/globjects.json index 62871fa2276..ad69ec0d2ce 100644 --- a/versions/g-/globjects.json +++ b/versions/g-/globjects.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "8ec42a207e240c2fa9d6d2a2b9e794a39ff60784", + "version": "1.1.0", + "port-version": 6 + }, { "git-tree": "fb8535a1b4b8e4068db9e102a11c3931c4db22ed", "version": "1.1.0", diff --git a/versions/g-/gloo.json b/versions/g-/gloo.json index 4a0e3c41575..e3983a9d935 100644 --- a/versions/g-/gloo.json +++ b/versions/g-/gloo.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "a48ea12e9618f830268147a2c05fc65769182f0d", + "version": "20201203", + "port-version": 2 + }, { "git-tree": "bd6e28e31f8b5d76a887e8b284c63596b9ffd65b", "version": "20201203", diff --git a/versions/g-/glui.json b/versions/g-/glui.json index fc4f46b0afe..f1ed1ccb03f 100644 --- a/versions/g-/glui.json +++ b/versions/g-/glui.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "5fb1a005d3f676d62e974dbb3b96dba5c3c7369a", + "version-date": "2019-11-30", + "port-version": 3 + }, { "git-tree": "09f3f7fe385d4a84c2b987c3b233a3279837c05f", "version-date": "2019-11-30", diff --git a/versions/g-/gmime.json b/versions/g-/gmime.json index 5e93bbee284..c22207fd243 100644 --- a/versions/g-/gmime.json +++ b/versions/g-/gmime.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "6db1f443a21e7c2f4004f8039b562ca1506f966c", + "version": "3.2.6", + "port-version": 5 + }, { "git-tree": "05c799167bca25a0ed69cf87d63cfe087a5daa83", "version": "3.2.6", diff --git a/versions/g-/graphicsmagick.json b/versions/g-/graphicsmagick.json index 9ab45ee1199..034b473ce63 100644 --- a/versions/g-/graphicsmagick.json +++ b/versions/g-/graphicsmagick.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "a4995e38b85cfc409f1a61561fde3bada483c23a", + "version": "1.3.37", + "port-version": 3 + }, { "git-tree": "7f5570af30ba3e4d38341fc16ae5fa98b2145f03", "version": "1.3.37", diff --git a/versions/h-/h5py-lzf.json b/versions/h-/h5py-lzf.json index 2b0e50ceb99..25f03b4dfdc 100644 --- a/versions/h-/h5py-lzf.json +++ b/versions/h-/h5py-lzf.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "bc038605ccbdc888df201ec6296f442e1b47c42a", + "version-date": "2019-12-04", + "port-version": 3 + }, { "git-tree": "e8323d8d5c2ced7273acaf951f5b62c87c112008", "version-date": "2019-12-04", diff --git a/versions/h-/hayai.json b/versions/h-/hayai.json index f75509495ba..f446e905c73 100644 --- a/versions/h-/hayai.json +++ b/versions/h-/hayai.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "e016dbda8d2a5e66c6e9c50c6c819454fbebd341", + "version-date": "2019-08-10", + "port-version": 3 + }, { "git-tree": "068157b1c13d6e05c56cecb01eb18431402e69e2", "version-date": "2019-08-10", diff --git a/versions/h-/http-parser.json b/versions/h-/http-parser.json index c3a479f56c7..890105c8f7d 100644 --- a/versions/h-/http-parser.json +++ b/versions/h-/http-parser.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "8da57f708336be4ff2f58ab004147f01708a5cac", + "version": "2.9.4", + "port-version": 3 + }, { "git-tree": "efc0b81d99faca7a109c910d43816f8fc10470c9", "version": "2.9.4", diff --git a/versions/h-/hungarian.json b/versions/h-/hungarian.json index e88a1b2c96c..ed272292fd7 100644 --- a/versions/h-/hungarian.json +++ b/versions/h-/hungarian.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "b5060bc0e31ae7abd3c95888c24c9f31ba691885", + "version": "0.1.3", + "port-version": 3 + }, { "git-tree": "32186cf61ba587da9ed75c14d0a289fbd76080b6", "version-string": "v0.1.3", diff --git a/versions/i-/ignition-modularscripts.json b/versions/i-/ignition-modularscripts.json index 1ee29b448c9..748dd797a24 100644 --- a/versions/i-/ignition-modularscripts.json +++ b/versions/i-/ignition-modularscripts.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "bc5dc2fa00b5023e9f2fa1610a986e8d61874380", + "version-date": "2022-05-11", + "port-version": 2 + }, { "git-tree": "ae302700b77870b26543f2df7764304d848c198a", "version-date": "2022-05-11", diff --git a/versions/i-/iniparser.json b/versions/i-/iniparser.json index cf1d29933a3..5efd9a7e477 100644 --- a/versions/i-/iniparser.json +++ b/versions/i-/iniparser.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "1f0fd9b0b224858a2bba125fae9cbfaa899e954b", + "version-date": "2020-04-06", + "port-version": 5 + }, { "git-tree": "e9b64e1b73f6befd9a565c43f5bbe4757fdd0a75", "version-date": "2020-04-06", diff --git a/versions/i-/io2d.json b/versions/i-/io2d.json index 159c8da70f9..1d5099ef899 100644 --- a/versions/i-/io2d.json +++ b/versions/i-/io2d.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "662e296b47ae6e51ee6e96470833c87d7728714d", + "version-date": "2020-09-14", + "port-version": 5 + }, { "git-tree": "3acb6249cb7bf330233e36df8cde602597abcac5", "version-date": "2020-09-14", diff --git a/versions/i-/itpp.json b/versions/i-/itpp.json index 48a353c5b69..44d121b8f57 100644 --- a/versions/i-/itpp.json +++ b/versions/i-/itpp.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "bb2b4a2f0b7fed9c43bf3587695b1c8c99079e32", + "version-semver": "4.3.1", + "port-version": 10 + }, { "git-tree": "8ba9ee864fcdbf30998904724db69a1cb515ebc2", "version-semver": "4.3.1", diff --git a/versions/j-/jbig2dec.json b/versions/j-/jbig2dec.json index f50b9e91b17..346b12ab30c 100644 --- a/versions/j-/jbig2dec.json +++ b/versions/j-/jbig2dec.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "ff97df9b9703a6314f50e608b155efb780d6deb7", + "version": "0.19", + "port-version": 3 + }, { "git-tree": "4622bedc189a466db46f55ab78e895b2c2eb4fef", "version": "0.19", diff --git a/versions/j-/jbigkit.json b/versions/j-/jbigkit.json index 9a55cfe024b..d0f0572a045 100644 --- a/versions/j-/jbigkit.json +++ b/versions/j-/jbigkit.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "b91151a54db723a66541029866bd3011e405ade9", + "version": "2.1", + "port-version": 7 + }, { "git-tree": "6d6f0004f10c5977c83106a38debd04554a4b4a7", "version": "2.1", diff --git a/versions/j-/jinja2cpplight.json b/versions/j-/jinja2cpplight.json index ec2bb4b822d..596f9a17333 100644 --- a/versions/j-/jinja2cpplight.json +++ b/versions/j-/jinja2cpplight.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "a57eb0a010f89aa5d43a4aba792c4d25dca5af8e", + "version-date": "2018-05-08", + "port-version": 3 + }, { "git-tree": "a0768865a046b0bd51d90af67d0059c7d158474d", "version-date": "2018-05-08", diff --git a/versions/j-/json-spirit.json b/versions/j-/json-spirit.json index 93cefa63153..c40d91d0a08 100644 --- a/versions/j-/json-spirit.json +++ b/versions/j-/json-spirit.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "a03472c9bc3c75081ffdd05a8aaf9aa4e86b9d01", + "version": "4.1.0", + "port-version": 4 + }, { "git-tree": "eebfdfbc7a3e422c96bb8c7205f5696dac6d4457", "version": "4.1.0", diff --git a/versions/j-/json11.json b/versions/j-/json11.json index 433199d86ef..34e38bb5146 100644 --- a/versions/j-/json11.json +++ b/versions/j-/json11.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "8b58dc7ee84c7424009066dd57f9b9f9a804f895", + "version-date": "2017-06-20", + "port-version": 6 + }, { "git-tree": "65ec4b34a9141b4f35e0870c383bbad03c7097b3", "version-date": "2017-06-20", diff --git a/versions/j-/json5-parser.json b/versions/j-/json5-parser.json index f786d38ae44..ea2802dd736 100644 --- a/versions/j-/json5-parser.json +++ b/versions/j-/json5-parser.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "931114b0187ebc307e231658525cacfef79345ac", + "version": "1.0.0", + "port-version": 5 + }, { "git-tree": "94f6125fdc5c6624c9ca969d62ea8514ab2ed8c0", "version": "1.0.0", diff --git a/versions/k-/kd-soap.json b/versions/k-/kd-soap.json index 719c6ef9227..a855dfa6b7f 100644 --- a/versions/k-/kd-soap.json +++ b/versions/k-/kd-soap.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "4965d8dc59b019e7a99cc0f3ebc705d4c1e18752", + "version": "2.1.1", + "port-version": 1 + }, { "git-tree": "25205691e2c5a4f621d6b4c7fbe78f56324a311f", "version": "2.1.1", diff --git a/versions/k-/kenlm.json b/versions/k-/kenlm.json index 7489104096b..a4528d19fe7 100644 --- a/versions/k-/kenlm.json +++ b/versions/k-/kenlm.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "4947aeed6f0e7817a4be646bbb7685e4e5ebf62a", + "version": "20200924", + "port-version": 3 + }, { "git-tree": "8154d9ed8e6458688478aae1e09c2334362bc198", "version": "20200924", diff --git a/versions/k-/kuku.json b/versions/k-/kuku.json index a55718e86fd..dfac4be8c25 100644 --- a/versions/k-/kuku.json +++ b/versions/k-/kuku.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "1a78898dbb7cbacda021768b5468af708035474b", + "version": "2.1", + "port-version": 3 + }, { "git-tree": "8d894f573635f4ccfa90ef38fa9b12ce90c27a7d", "version": "2.1", diff --git a/versions/k-/kvasir-mpl.json b/versions/k-/kvasir-mpl.json index d80d3cffe83..191b23b1c8e 100644 --- a/versions/k-/kvasir-mpl.json +++ b/versions/k-/kvasir-mpl.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "4a0535a96e146cdd0412da4db03afc7c414581a2", + "version-date": "2019-08-06", + "port-version": 3 + }, { "git-tree": "5ff2749ed8f663ea06f6e3422e11192ac083d8cc", "version-date": "2019-08-06", diff --git a/versions/l-/lapack.json b/versions/l-/lapack.json index 28567e0b5a6..fedbceca301 100644 --- a/versions/l-/lapack.json +++ b/versions/l-/lapack.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "7c892b58c70ebc7d83444c4e727272cad40e28c2", + "version-date": "2022-02-22", + "port-version": 2 + }, { "git-tree": "5897ee099a5aa43bcb50c0d5a19cda3a9ed6a50c", "version-date": "2022-02-22", diff --git a/versions/l-/levmar.json b/versions/l-/levmar.json index 4c7e35146af..923a8ea4996 100644 --- a/versions/l-/levmar.json +++ b/versions/l-/levmar.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "cba09ff1cf1b17d901bd60ff2505b31e98bc862e", + "version": "2.6", + "port-version": 3 + }, { "git-tree": "dbdc4f754e8573fdad2ce75cb1b476d828dad76e", "version": "2.6", diff --git a/versions/l-/libaiff.json b/versions/l-/libaiff.json index dcafd026159..db18870e5c1 100644 --- a/versions/l-/libaiff.json +++ b/versions/l-/libaiff.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "9d32c6814dfaaf072180ad43068025fdc60713a9", + "version": "5.0", + "port-version": 9 + }, { "git-tree": "bb6134943648934661d3e2f2b9b5bd561cfe8822", "version": "5.0", diff --git a/versions/l-/libcds.json b/versions/l-/libcds.json index 92198b1bb14..216c8e3e562 100644 --- a/versions/l-/libcds.json +++ b/versions/l-/libcds.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "2c2c64b70b3c99a15ddef75323dd98b8b4d066bc", + "version": "2.3.3", + "port-version": 4 + }, { "git-tree": "a9e46c27d63e8b303be787baa7349f1b1fe09e17", "version": "2.3.3", diff --git a/versions/l-/libconfig.json b/versions/l-/libconfig.json index 424764c365d..7f98184b0bd 100644 --- a/versions/l-/libconfig.json +++ b/versions/l-/libconfig.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "9056cd67b1885ed4721a931467fb7fd1eb5b4bf3", + "version": "1.7.3", + "port-version": 3 + }, { "git-tree": "cf6ab494ef19e4fb5bf1effcd86246cb758000af", "version": "1.7.3",