diff --git a/ports/buck-yeh-bux/portfile.cmake b/ports/buck-yeh-bux/portfile.cmake index 3bb3a957e6afff..acbaf5cf975048 100644 --- a/ports/buck-yeh-bux/portfile.cmake +++ b/ports/buck-yeh-bux/portfile.cmake @@ -2,7 +2,7 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO buck-yeh/bux REF "${VERSION}" - SHA512 90ce7cd956f758fb0f17398ce9f63651965ec5288256d318e267c619aff59f49e05412a52d0032df5896173fc5b32bc7c42ac1422485ef9e261af278f38ccf4b + SHA512 884c49a8a07cb2acf242bb3b7a8b6c7aeda9eebe7723887ce3a6c081aaf8f628d4f4a8dfe4adb7550977ab6e18730bc9c45ad4f326a5f4a8fc45448d736f0de2 HEAD_REF main ) diff --git a/ports/buck-yeh-bux/vcpkg.json b/ports/buck-yeh-bux/vcpkg.json index fd95a409987139..16cb0879707dc2 100644 --- a/ports/buck-yeh-bux/vcpkg.json +++ b/ports/buck-yeh-bux/vcpkg.json @@ -1,10 +1,10 @@ { "name": "buck-yeh-bux", - "version": "1.10.2", + "version": "1.11.1", "description": "A supplemental C++ library with functionalities not directly supported from Modern C++ standard.", "homepage": "https://github.com/buck-yeh/bux", "license": "MIT", - "supports": "!(android | linux | osx | uwp)", + "supports": "!(android | linux | uwp)", "dependencies": [ { "name": "vcpkg-cmake", diff --git a/ports/curl/portfile.cmake b/ports/curl/portfile.cmake index f8f3aced536b56..6accf239ac18e0 100644 --- a/ports/curl/portfile.cmake +++ b/ports/curl/portfile.cmake @@ -13,6 +13,7 @@ vcpkg_from_github( export-components.patch dependencies.patch cmake-config.patch + rtmp.patch ) vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS @@ -36,6 +37,7 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS gssapi CURL_USE_GSSAPI gsasl CURL_USE_GSASL gnutls CURL_USE_GNUTLS + rtmp USE_LIBRTMP INVERTED_FEATURES ldap CURL_DISABLE_LDAP ldap CURL_DISABLE_LDAPS diff --git a/ports/curl/rtmp.patch b/ports/curl/rtmp.patch new file mode 100644 index 00000000000000..d4f9dc8c4a193c --- /dev/null +++ b/ports/curl/rtmp.patch @@ -0,0 +1,31 @@ +diff --git a/CMake/curl-config.cmake.in b/CMake/curl-config.cmake.in +index 9a2559722c..bd25f61a92 100644 +--- a/CMake/curl-config.cmake.in ++++ b/CMake/curl-config.cmake.in +@@ -50,6 +50,10 @@ endif() + if("@HAVE_ZSTD@") + find_dependency(zstd CONFIG) + endif() ++if("@USE_LIBRTMP@") ++ find_dependency(PkgConfig) ++ pkg_check_modules(librtmp REQUIRED IMPORTED_TARGET librtmp) ++endif() + + include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake") + check_required_components("@PROJECT_NAME@") +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 0cba6f626b..fa497f2b70 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1309,6 +1309,11 @@ endif() + + option(USE_LIBRTMP "Enable librtmp from rtmpdump" OFF) + if(USE_LIBRTMP) ++ find_package(PkgConfig REQUIRED) ++ pkg_check_modules(librtmp REQUIRED IMPORTED_TARGET librtmp) ++ list(APPEND CURL_LIBS PkgConfig::librtmp) ++ list(APPEND LIBCURL_PC_REQUIRES_PRIVATE rtmp) ++elseif(0) + set(_extra_libs "rtmp") + if(WIN32) + list(APPEND _extra_libs "winmm") diff --git a/ports/curl/vcpkg.json b/ports/curl/vcpkg.json index f6a5187aec898e..ca1b2f11a9ab7e 100644 --- a/ports/curl/vcpkg.json +++ b/ports/curl/vcpkg.json @@ -1,6 +1,7 @@ { "name": "curl", "version": "8.11.1", + "port-version": 1, "description": "A library for transferring data with URLs", "homepage": "https://curl.se/", "license": "curl AND ISC AND BSD-3-Clause", @@ -136,6 +137,12 @@ "libpsl" ] }, + "rtmp": { + "description": "RTMP support", + "dependencies": [ + "librtmp" + ] + }, "schannel": { "description": "SSL support (Secure Channel)", "supports": "windows & !uwp", diff --git a/ports/etcd-cpp-apiv3/portfile.cmake b/ports/etcd-cpp-apiv3/portfile.cmake index 889acfe17ac7d3..d3822b1429a3d1 100644 --- a/ports/etcd-cpp-apiv3/portfile.cmake +++ b/ports/etcd-cpp-apiv3/portfile.cmake @@ -16,9 +16,16 @@ vcpkg_from_github( ) file(WRITE "${SOURCE_PATH}/cmake/UploadPPA.cmake" "") +vcpkg_check_features( + OUT_FEATURE_OPTIONS FEATURE_OPTIONS + INVERTED_FEATURES + async BUILD_ETCD_CORE_ONLY +) + vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" OPTIONS + ${FEATURE_OPTIONS} -DBUILD_ETCD_TESTS=OFF -DETCD_W_STRICT=OFF "-DGRPC_CPP_PLUGIN=${CURRENT_HOST_INSTALLED_DIR}/tools/grpc/grpc_cpp_plugin${VCPKG_HOST_EXECUTABLE_SUFFIX}" @@ -32,7 +39,7 @@ vcpkg_cmake_install() vcpkg_copy_pdbs() vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/etcd-cpp-api) vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/share/${PORT}/etcd-cpp-api-config.cmake" - [[ETCD_CPP_HOME "${CMAKE_CURRENT_LIST_DIR}/../../.."]] + [[ETCD_CPP_HOME "${CMAKE_CURRENT_LIST_DIR}/../../.."]] [[ETCD_CPP_HOME "${CMAKE_CURRENT_LIST_DIR}/../.."]] ) diff --git a/ports/etcd-cpp-apiv3/vcpkg.json b/ports/etcd-cpp-apiv3/vcpkg.json index a85c372b166e05..a41e7c7afa479d 100644 --- a/ports/etcd-cpp-apiv3/vcpkg.json +++ b/ports/etcd-cpp-apiv3/vcpkg.json @@ -1,7 +1,7 @@ { "name": "etcd-cpp-apiv3", "version": "0.15.4", - "port-version": 1, + "port-version": 2, "description": "The etcd-cpp-apiv3 is a C++ API for etcd's v3 client API, i.e., ETCDCTL_API=3.", "homepage": "https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3", "license": "BSD-3-Clause", @@ -10,10 +10,6 @@ "boost-random", "boost-system", "boost-thread", - { - "name": "cpprestsdk", - "default-features": false - }, "grpc", "openssl", "protobuf", @@ -25,5 +21,19 @@ "name": "vcpkg-cmake-config", "host": true } - ] + ], + "default-features": [ + "async" + ], + "features": { + "async": { + "description": "Enable async features supported by cpprestsdk.", + "dependencies": [ + { + "name": "cpprestsdk", + "default-features": false + } + ] + } + } } diff --git a/ports/gdal/portfile.cmake b/ports/gdal/portfile.cmake index 6ff0dac44fa7ad..aa308535c41fe2 100644 --- a/ports/gdal/portfile.cmake +++ b/ports/gdal/portfile.cmake @@ -2,14 +2,13 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO OSGeo/gdal REF "v${VERSION}" - SHA512 4e0431c9bb9b7c54508afdcaa936445eee8878aa47f404e2ff00c8ce786c1dd58247c2cee76cb0e0e26cef04419d7c6c4884f2d9078e9d292c4a1c720deae3ed + SHA512 2094f9373b13bb600f6c7fbe7fa9da947be98ea06f427940dd0add0930c8fb65f2693148614efcec9c2a103666664aa215445c754b8a20490bfb0e9f2c89db72 HEAD_REF master PATCHES find-link-libraries.patch fix-gdal-target-interfaces.patch libkml.patch target-is-valid.patch - remove-machine-flag.patch ) # `vcpkg clean` stumbles over one subdir file(REMOVE_RECURSE "${SOURCE_PATH}/autotest") diff --git a/ports/gdal/remove-machine-flag.patch b/ports/gdal/remove-machine-flag.patch deleted file mode 100644 index f759421eb2b226..00000000000000 --- a/ports/gdal/remove-machine-flag.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/gdal.cmake b/gdal.cmake -index 029eedd..412fc88 100644 ---- a/gdal.cmake -+++ b/gdal.cmake -@@ -409,7 +409,6 @@ if (MSVC) - target_sources(${GDAL_LIB_TARGET_NAME} PRIVATE gcore/Version.rc) - source_group("Resource Files" FILES gcore/Version.rc) - if (CMAKE_CL_64) -- set_target_properties(${GDAL_LIB_TARGET_NAME} PROPERTIES STATIC_LIBRARY_FLAGS "/machine:x64") - endif () - endif () - diff --git a/ports/gdal/vcpkg.json b/ports/gdal/vcpkg.json index 8b731cc28814a1..b98b323d496b84 100644 --- a/ports/gdal/vcpkg.json +++ b/ports/gdal/vcpkg.json @@ -1,7 +1,6 @@ { "name": "gdal", - "version-semver": "3.10.0", - "port-version": 2, + "version-semver": "3.10.1", "description": "The Geographic Data Abstraction Library for reading and writing geospatial raster and vector data", "homepage": "https://gdal.org", "license": null, diff --git a/ports/jsonnet/0005-use-upstream-rapidyaml.patch b/ports/jsonnet/0005-use-upstream-rapidyaml.patch index 732a3f25478baa..b865f0cb9b619b 100644 --- a/ports/jsonnet/0005-use-upstream-rapidyaml.patch +++ b/ports/jsonnet/0005-use-upstream-rapidyaml.patch @@ -45,3 +45,12 @@ index e328df5..2cafbb7 100644 #include "state.h" #include "static_analysis.h" #include "string_utils.h" +@@ -1637,7 +1637,7 @@ class Interpreter { + } + + const ryml::Tree treeFromString(const std::string& s) { +- return ryml::parse(c4::to_csubstr(s)); ++ return ryml::parse_in_arena(ryml::to_csubstr(s)); + } + + const std::vector split(const std::string& s, const std::string& delimiter) { diff --git a/ports/jsonnet/vcpkg.json b/ports/jsonnet/vcpkg.json index 9ef7a123b4b638..79277e2da31439 100644 --- a/ports/jsonnet/vcpkg.json +++ b/ports/jsonnet/vcpkg.json @@ -1,6 +1,7 @@ { "name": "jsonnet", "version": "0.20.0", + "port-version": 1, "description": "Jsonnet - The data templating language", "homepage": "https://github.com/google/jsonnet", "license": "Apache-2.0", diff --git a/ports/libtar/portfile.cmake b/ports/libtar/portfile.cmake index 23ba8c9563ff3c..cf344c37a0219f 100644 --- a/ports/libtar/portfile.cmake +++ b/ports/libtar/portfile.cmake @@ -1,9 +1,11 @@ -vcpkg_from_git( - OUT_SOURCE_PATH SOURCE_PATH - URL https://repo.or.cz/libtar.git - REF 6d0ab4c78e7a8305c36a0c3d63fd25cd1493de65 # latest on master +vcpkg_download_distfile(ARCHIVE + URLS https://repo.or.cz/libtar.git/snapshot/6d0ab4c78e7a8305c36a0c3d63fd25cd1493de65.tar.gz + FILENAME libtar-6d0ab4c78e7a8305c36a0c3d63fd25cd1493de65.tar.gz + SHA512 907d98ea2bd2e2a43604243fc7fd6c252aa02c3fdd79e21f2a784adf821cb18107e6e23a25ad0c64329fbe84e859da5c807272759a8bcd85a37b929c80af4a13 ) +vcpkg_extract_source_archive(SOURCE_PATH ARCHIVE "${ARCHIVE}") + vcpkg_configure_make( SOURCE_PATH "${SOURCE_PATH}" ) diff --git a/ports/libtar/vcpkg.json b/ports/libtar/vcpkg.json index d07de7154ab632..8b797b35b5e1d1 100644 --- a/ports/libtar/vcpkg.json +++ b/ports/libtar/vcpkg.json @@ -1,6 +1,7 @@ { "name": "libtar", "version": "1.2.20", + "port-version": 1, "description": "libtar - C library for manipulating tar files", "homepage": "https://repo.or.cz/libtar.git", "supports": "!windows" diff --git a/ports/quantlib/portfile.cmake b/ports/quantlib/portfile.cmake index dda00336f9a46e..0c181445948dbb 100644 --- a/ports/quantlib/portfile.cmake +++ b/ports/quantlib/portfile.cmake @@ -2,7 +2,7 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO lballabio/QuantLib REF "v${VERSION}" - SHA512 5c8cf1cc28a23d6586a542746ac61264dfdbe88c5a92a1292dfe19fadcdb23729fbbdca44da2fdd2917a48f0ba864c79c525d4e9ac5bbaef58e03a7ddaa177b0 + SHA512 a3a3644f6b04ed82c3e94de523880618a8ffb9be7a3e181d4b40621dadb9fd16bdcad6e15653887d64aa325669b79fcb88faf2553c51521e3cbb96dc30fdf997 HEAD_REF master ) diff --git a/ports/quantlib/vcpkg.json b/ports/quantlib/vcpkg.json index 69baacd8a93a1a..19f914f2886327 100644 --- a/ports/quantlib/vcpkg.json +++ b/ports/quantlib/vcpkg.json @@ -1,6 +1,6 @@ { "name": "quantlib", - "version": "1.36", + "version": "1.37", "description": "The QuantLib C++ library", "homepage": "https://www.quantlib.org/", "license": "BSD-3-Clause", diff --git a/ports/ryml/cmake-fix.patch b/ports/ryml/cmake-fix.patch index 4c973e9fde0e8f..ae14fc2881b7bf 100644 --- a/ports/ryml/cmake-fix.patch +++ b/ports/ryml/cmake-fix.patch @@ -1,22 +1,24 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt -index d18407c..db19e0b 100644 +index d80b395..8f1699e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -21,8 +21,7 @@ option(RYML_DBG "Enable (very verbose) ryml debug prints." OFF) +@@ -27,10 +27,7 @@ option(RYML_INSTALL "Enable install target" ON) #------------------------------------------------------- -c4_require_subproject(c4core INCORPORATE -- SUBDIRECTORY ${RYML_EXT_DIR}/c4core) +- SUBDIRECTORY ${RYML_EXT_DIR}/c4core +- OVERRIDE C4CORE_INSTALL ${RYML_INSTALL} +-) +find_package(c4core CONFIG REQUIRED) c4_add_library(ryml SOURCES -@@ -54,10 +53,10 @@ c4_add_library(ryml +@@ -77,10 +74,10 @@ c4_add_library(ryml ryml.natvis SOURCE_ROOT ${RYML_SRC_DIR} INC_DIRS -+ $ ++ $ $ $ - LIBS c4core diff --git a/ports/ryml/portfile.cmake b/ports/ryml/portfile.cmake index 3fc0b16b6c72d8..2a3b67968c6d1a 100644 --- a/ports/ryml/portfile.cmake +++ b/ports/ryml/portfile.cmake @@ -5,7 +5,7 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO biojppm/rapidyaml REF "v${VERSION}" - SHA512 861f1d2c39c5c8d455e8d40e3ecadd828b948c5dea2bcb88ba92686ca77b9a7d69ab2d94407732eab574e4e3c7b319d0f1b31250b18fb513310847192623a2f7 + SHA512 2ff14776498dc8a55cb257c38fbea5b1a1fc5c4c09ade5b10c45cb4afcaf0cc587674723bedf38fd04b3179a18ba7357a929484b154474d658d597d0f9ee8d2e HEAD_REF master PATCHES cmake-fix.patch ) diff --git a/ports/ryml/vcpkg.json b/ports/ryml/vcpkg.json index 98e116b0b87063..0c061a4725291f 100644 --- a/ports/ryml/vcpkg.json +++ b/ports/ryml/vcpkg.json @@ -1,7 +1,6 @@ { "name": "ryml", - "version": "0.5.0", - "port-version": 1, + "version": "0.7.2", "description": "Rapid YAML library", "homepage": "https://github.com/biojppm/rapidyaml", "license": "MIT", diff --git a/ports/tinyfiledialogs/portfile.cmake b/ports/tinyfiledialogs/portfile.cmake index b93dec69f4f23c..95e1f9edaec4bc 100644 --- a/ports/tinyfiledialogs/portfile.cmake +++ b/ports/tinyfiledialogs/portfile.cmake @@ -1,13 +1,14 @@ vcpkg_check_linkage(ONLY_STATIC_LIBRARY) -vcpkg_from_git( +vcpkg_from_sourceforge( OUT_SOURCE_PATH SOURCE_PATH - FETCH_REF master - HEAD_REF master - URL https://git.code.sf.net/p/tinyfiledialogs/code - REF e11f94cd7887b101d64f74892d769f0139b5e166 + REPO tinyfiledialogs + FILENAME tinyfiledialogs-current.zip + SHA512 6e890014646e69f0002a342d6331ec03dc41749a760dd30ac8a99919adbfc8ba646f988d1f44b0c1991a075d9cd054e481014c8cc8c5e9e8ec56ce2600d6fb03 ) +file(REMOVE_RECURSE "${SOURCE_PATH}/dll_cs_lua_R_fortran_pascal") + file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") vcpkg_cmake_configure( diff --git a/ports/tinyfiledialogs/vcpkg.json b/ports/tinyfiledialogs/vcpkg.json index ca44d2c9e5983a..5bb0ea916734bc 100644 --- a/ports/tinyfiledialogs/vcpkg.json +++ b/ports/tinyfiledialogs/vcpkg.json @@ -1,7 +1,6 @@ { "name": "tinyfiledialogs", - "version": "3.8.8", - "port-version": 4, + "version": "3.18.2", "description": "Highly portable and cross-platform dialogs for native inputbox, passwordbox, colorpicker and more", "homepage": "https://sourceforge.net/projects/tinyfiledialogs/", "supports": "!uwp", diff --git a/versions/b-/buck-yeh-bux.json b/versions/b-/buck-yeh-bux.json index 465a165e06ecf9..7624bbd6898f28 100644 --- a/versions/b-/buck-yeh-bux.json +++ b/versions/b-/buck-yeh-bux.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "757f61ee7bd93e69756546e8b10e5432d09442a4", + "version": "1.11.1", + "port-version": 0 + }, { "git-tree": "c29c8cb5d1b698dbb27a625cb528eb16e1c50aef", "version": "1.10.2", diff --git a/versions/baseline.json b/versions/baseline.json index d8b2d1cbcd608f..d85f4c667ed4d5 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -1405,7 +1405,7 @@ "port-version": 0 }, "buck-yeh-bux": { - "baseline": "1.10.2", + "baseline": "1.11.1", "port-version": 0 }, "buck-yeh-bux-sqlite": { @@ -2122,7 +2122,7 @@ }, "curl": { "baseline": "8.11.1", - "port-version": 0 + "port-version": 1 }, "curlcpp": { "baseline": "3.1", @@ -2590,7 +2590,7 @@ }, "etcd-cpp-apiv3": { "baseline": "0.15.4", - "port-version": 1 + "port-version": 2 }, "etl": { "baseline": "20.39.4", @@ -3021,8 +3021,8 @@ "port-version": 0 }, "gdal": { - "baseline": "3.10.0", - "port-version": 2 + "baseline": "3.10.1", + "port-version": 0 }, "gdcm": { "baseline": "3.0.24", @@ -3890,7 +3890,7 @@ }, "jsonnet": { "baseline": "0.20.0", - "port-version": 0 + "port-version": 1 }, "juce": { "baseline": "8.0.4", @@ -5198,7 +5198,7 @@ }, "libtar": { "baseline": "1.2.20", - "port-version": 0 + "port-version": 1 }, "libtasn1": { "baseline": "4.19.0", @@ -7753,7 +7753,7 @@ "port-version": 0 }, "quantlib": { - "baseline": "1.36", + "baseline": "1.37", "port-version": 0 }, "quaternions": { @@ -8117,8 +8117,8 @@ "port-version": 2 }, "ryml": { - "baseline": "0.5.0", - "port-version": 1 + "baseline": "0.7.2", + "port-version": 0 }, "ryu": { "baseline": "2.0", @@ -9013,8 +9013,8 @@ "port-version": 0 }, "tinyfiledialogs": { - "baseline": "3.8.8", - "port-version": 4 + "baseline": "3.18.2", + "port-version": 0 }, "tinyfsm": { "baseline": "0.3.3", diff --git a/versions/c-/curl.json b/versions/c-/curl.json index 7a91dd2320fd20..043a79d4da85e1 100644 --- a/versions/c-/curl.json +++ b/versions/c-/curl.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "d2c7cc1c54b17f6d1814d16c46b709767090d4d6", + "version": "8.11.1", + "port-version": 1 + }, { "git-tree": "aae0f4f9dd2f724e673c0d458fc4531626864393", "version": "8.11.1", diff --git a/versions/e-/etcd-cpp-apiv3.json b/versions/e-/etcd-cpp-apiv3.json index f0ea57362706a5..f15d78673a984d 100644 --- a/versions/e-/etcd-cpp-apiv3.json +++ b/versions/e-/etcd-cpp-apiv3.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "cae8fca4e862441e5fc85b5955988e41ea70f66e", + "version": "0.15.4", + "port-version": 2 + }, { "git-tree": "791701d891fdeb2955f502e13c64abd9bb632e15", "version": "0.15.4", diff --git a/versions/g-/gdal.json b/versions/g-/gdal.json index a6f5d78860bce2..3ca6d51fa48911 100644 --- a/versions/g-/gdal.json +++ b/versions/g-/gdal.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "5c61c198b18d4eae98f2d99949455f6e55383e9a", + "version-semver": "3.10.1", + "port-version": 0 + }, { "git-tree": "88a7fee530483435f48df0f4b74ec378fee3345a", "version-semver": "3.10.0", diff --git a/versions/j-/jsonnet.json b/versions/j-/jsonnet.json index 87af791d673392..2514cb96fbb160 100644 --- a/versions/j-/jsonnet.json +++ b/versions/j-/jsonnet.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "d0bfbc90a7c02fa2944141ac5128e054e222ae7f", + "version": "0.20.0", + "port-version": 1 + }, { "git-tree": "d58bf2d0d8b29fbcd87bfa9bcc4725aaec9283ad", "version": "0.20.0", diff --git a/versions/l-/libtar.json b/versions/l-/libtar.json index f78a73baa76d27..2969f204c5dee4 100644 --- a/versions/l-/libtar.json +++ b/versions/l-/libtar.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "52ef8acf2b8ff12c21e9a52b9e0f0d14d050f97e", + "version": "1.2.20", + "port-version": 1 + }, { "git-tree": "88cec24f0726abad060a2741dcd064b2698a886a", "version": "1.2.20", diff --git a/versions/q-/quantlib.json b/versions/q-/quantlib.json index 00281a94d60458..7075c4f4407657 100644 --- a/versions/q-/quantlib.json +++ b/versions/q-/quantlib.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "a4be13d268ae091a2928d9f330bca6e7cbc14854", + "version": "1.37", + "port-version": 0 + }, { "git-tree": "23781cb492d79ad899f97d89b7479e978c52b71d", "version": "1.36", diff --git a/versions/r-/ryml.json b/versions/r-/ryml.json index c03f811745ad61..6e3db5822f6eaa 100644 --- a/versions/r-/ryml.json +++ b/versions/r-/ryml.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "8f7cac7caba15d67f117443f9332679f17006223", + "version": "0.7.2", + "port-version": 0 + }, { "git-tree": "c8ceae82ba08f1a242ec0b15f80424db37e4847c", "version": "0.5.0", diff --git a/versions/t-/tinyfiledialogs.json b/versions/t-/tinyfiledialogs.json index 2b062876ff9bf3..404253ec78b241 100644 --- a/versions/t-/tinyfiledialogs.json +++ b/versions/t-/tinyfiledialogs.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "66dd1c60462dca8ace6d295559d268a9d958c5c0", + "version": "3.18.2", + "port-version": 0 + }, { "git-tree": "be887c4bad998770f49efced776f0ef5df71d342", "version": "3.8.8",