mirror of
https://github.com/microsoft/vcpkg.git
synced 2026-01-18 01:11:23 +01:00
[boost] update to 1.87.0 (#42678)
Co-authored-by: John Wason <wason@wasontech.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
#header-only library
|
||||
set(USE_UPSTREAM OFF)
|
||||
if("upstream" IN_LIST FEATURES)
|
||||
set(USE_UPSTREAM ON)
|
||||
endif()
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO crossbario/autobahn-cpp
|
||||
REF 84972fc81181bde635329bf0474e3874cc5c9091 # v20.8.1
|
||||
SHA512 fcd094907826e035188d19efc80f3caa6c90d7d7bd2c5b6796aea9de3a02052bd049329cbe5cb242bba535e70c127842c66d34956e715b4f6f37ffc54c39c483
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/share/autobahn)
|
||||
|
||||
# Copy the header files
|
||||
file(COPY "${SOURCE_PATH}/autobahn" DESTINATION "${CURRENT_PACKAGES_DIR}/include" FILES_MATCHING PATTERN "*.hpp")
|
||||
file(COPY "${SOURCE_PATH}/autobahn" DESTINATION "${CURRENT_PACKAGES_DIR}/include" FILES_MATCHING PATTERN "*.ipp")
|
||||
|
||||
set(PACKAGE_INSTALL_INCLUDE_DIR "\${CMAKE_CURRENT_LIST_DIR}/../../include")
|
||||
set(PACKAGE_INIT "
|
||||
macro(set_and_check)
|
||||
set(\${ARGV})
|
||||
endmacro()
|
||||
")
|
||||
|
||||
configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/autobahn/copyright COPYONLY)
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"name": "autobahn",
|
||||
"version": "20.8.1",
|
||||
"port-version": 2,
|
||||
"description": "WAMP for C++ in Boost/Asio",
|
||||
"homepage": "https://crossbar.io/autobahn",
|
||||
"dependencies": [
|
||||
"boost-asio",
|
||||
"boost-thread",
|
||||
"msgpack",
|
||||
"websocketpp"
|
||||
]
|
||||
}
|
||||
@@ -4,7 +4,7 @@ cmake_policy(VERSION 3.11)
|
||||
project(autodock-vina)
|
||||
|
||||
set(GIT_VERSION v1.2.6)
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
find_package(Boost REQUIRED COMPONENTS
|
||||
filesystem
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"name": "autodock-vina",
|
||||
"version-semver": "1.2.6",
|
||||
"port-version": 1,
|
||||
"description": "AutoDock Vina is one of the fastest and most widely used open-source docking engines.",
|
||||
"homepage": "https://vina.scripps.edu/",
|
||||
"dependencies": [
|
||||
|
||||
52
ports/azure-storage-cpp/fix-asio-error.patch
Normal file
52
ports/azure-storage-cpp/fix-asio-error.patch
Normal file
@@ -0,0 +1,52 @@
|
||||
diff --git a/Microsoft.WindowsAzure.Storage/includes/wascore/util.h b/Microsoft.WindowsAzure.Storage/includes/wascore/util.h
|
||||
index fcd86cd..5f02120 100644
|
||||
--- a/Microsoft.WindowsAzure.Storage/includes/wascore/util.h
|
||||
+++ b/Microsoft.WindowsAzure.Storage/includes/wascore/util.h
|
||||
@@ -125,7 +125,7 @@ namespace azure { namespace storage { namespace core {
|
||||
WASTORAGE_API static std::shared_ptr<web::http::client::http_client> get_http_client(const web::uri& uri, const web::http::client::http_client_config& config);
|
||||
|
||||
private:
|
||||
- static const boost::asio::io_service& s_service;
|
||||
+ static const boost::asio::io_context& s_service;
|
||||
WASTORAGE_API static std::map<utility::string_t, std::shared_ptr<web::http::client::http_client>> s_http_clients;
|
||||
WASTORAGE_API static std::mutex s_mutex;
|
||||
};
|
||||
diff --git a/Microsoft.WindowsAzure.Storage/src/cloud_common.cpp b/Microsoft.WindowsAzure.Storage/src/cloud_common.cpp
|
||||
index 7dfcfeb..0749252 100644
|
||||
--- a/Microsoft.WindowsAzure.Storage/src/cloud_common.cpp
|
||||
+++ b/Microsoft.WindowsAzure.Storage/src/cloud_common.cpp
|
||||
@@ -71,7 +71,7 @@ namespace azure { namespace storage {
|
||||
throw std::invalid_argument(protocol::error_invalid_ip_address);
|
||||
#else
|
||||
boost::system::error_code error;
|
||||
- auto addr = boost::asio::ip::address::from_string(address, error);
|
||||
+ auto addr = boost::asio::ip::make_address(address, error);
|
||||
if (error.value() == 0)
|
||||
{
|
||||
if (addr.is_v4())
|
||||
diff --git a/Microsoft.WindowsAzure.Storage/src/timer_handler.cpp b/Microsoft.WindowsAzure.Storage/src/timer_handler.cpp
|
||||
index f33d183..fc5e50d 100644
|
||||
--- a/Microsoft.WindowsAzure.Storage/src/timer_handler.cpp
|
||||
+++ b/Microsoft.WindowsAzure.Storage/src/timer_handler.cpp
|
||||
@@ -86,7 +86,7 @@ namespace azure { namespace storage { namespace core {
|
||||
pplx::task<void> timer_handler::timeout_after(const std::chrono::milliseconds& time)
|
||||
{
|
||||
m_timer = std::make_shared<boost::asio::basic_waitable_timer<std::chrono::steady_clock>>(crossplat::threadpool::shared_instance().service());
|
||||
- m_timer->expires_from_now(std::chrono::duration_cast<std::chrono::steady_clock::duration>(time));
|
||||
+ m_timer->expires_after(std::chrono::duration_cast<std::chrono::steady_clock::duration>(time));
|
||||
std::weak_ptr<timer_handler> weak_this_pointer = shared_from_this();
|
||||
auto callback = [weak_this_pointer](const boost::system::error_code& ec)
|
||||
{
|
||||
diff --git a/Microsoft.WindowsAzure.Storage/src/util.cpp b/Microsoft.WindowsAzure.Storage/src/util.cpp
|
||||
index cf0a311..8f321de 100644
|
||||
--- a/Microsoft.WindowsAzure.Storage/src/util.cpp
|
||||
+++ b/Microsoft.WindowsAzure.Storage/src/util.cpp
|
||||
@@ -440,7 +440,7 @@ namespace azure { namespace storage { namespace core {
|
||||
}
|
||||
|
||||
#ifndef _WIN32
|
||||
- const boost::asio::io_service& http_client_reusable::s_service = crossplat::threadpool::shared_instance().service();
|
||||
+ const boost::asio::io_context& http_client_reusable::s_service = crossplat::threadpool::shared_instance().service();
|
||||
std::map<utility::string_t, std::shared_ptr<web::http::client::http_client>> http_client_reusable::s_http_clients;
|
||||
std::mutex http_client_reusable::s_mutex;
|
||||
|
||||
@@ -6,6 +6,8 @@ vcpkg_from_github(
|
||||
REF v7.5.0
|
||||
SHA512 83eabcaf2114c8af1cabbc96b6ef2b57c934a06f68e7a870adf336feaa19edd57aedaf8507d5c40500e46d4e77f5059f9286e319fe7cadeb9ffc8fa018fb030c
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
fix-asio-error.patch
|
||||
)
|
||||
|
||||
vcpkg_replace_string("${SOURCE_PATH}/Microsoft.WindowsAzure.Storage/CMakeLists.txt" [[file(GLOB OPENSSL_ROOT_DIR /usr/local/Cellar/openssl/*)]] "")
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "azure-storage-cpp",
|
||||
"version": "7.5.0",
|
||||
"port-version": 6,
|
||||
"port-version": 7,
|
||||
"description": [
|
||||
"[legacy] Microsoft Azure Storage Client SDK for C++",
|
||||
"A client library for working with Microsoft Azure storage services including blobs, files, tables, and queues. This client library enables working with the Microsoft Azure storage services which include the blob service for storing binary and text data, the file service for storing binary and text data, the table service for storing structured non-relational data, and the queue service for storing messages that may be accessed by a client."
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
# All components of BitSerializer is "header only" except CSV archive
|
||||
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO PavelKisliak/BitSerializer
|
||||
REF v0.75
|
||||
SHA512 ae31f17a0b4e488892f676eafe94e2d43a381153b9179891a9d3a6380c7b3f12d29bc20b7be270a71305bc7c27b08395f6aa8a8be26c52934e148e7140d34d21
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
FEATURES
|
||||
"cpprestjson-archive" BUILD_CPPRESTJSON_ARCHIVE
|
||||
"rapidjson-archive" BUILD_RAPIDJSON_ARCHIVE
|
||||
"pugixml-archive" BUILD_PUGIXML_ARCHIVE
|
||||
"rapidyaml-archive" BUILD_RAPIDYAML_ARCHIVE
|
||||
"csv-archive" BUILD_CSV_ARCHIVE
|
||||
"msgpack-archive" BUILD_MSGPACK_ARCHIVE
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
DISABLE_PARALLEL_CONFIGURE
|
||||
OPTIONS
|
||||
${FEATURE_OPTIONS}
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
vcpkg_copy_pdbs()
|
||||
vcpkg_cmake_config_fixup()
|
||||
vcpkg_fixup_pkgconfig()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
if (NOT (${BUILD_CSV_ARCHIVE} OR ${BUILD_MSGPACK_ARCHIVE}))
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
|
||||
endif()
|
||||
|
||||
# Handle copyright
|
||||
file(INSTALL "${SOURCE_PATH}/license.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
||||
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
||||
@@ -1,12 +0,0 @@
|
||||
BitSerializer provides CMake targets:
|
||||
|
||||
find_package(bitserializer CONFIG REQUIRED)
|
||||
# Link only archives which you are specified in the features list when install
|
||||
target_link_libraries(main PRIVATE
|
||||
BitSerializer::cpprestjson-archive
|
||||
BitSerializer::rapidjson-archive
|
||||
BitSerializer::pugixml-archive
|
||||
BitSerializer::rapidyaml-archive
|
||||
BitSerializer::csv-archive
|
||||
BitSerializer::msgpack-archive
|
||||
)
|
||||
@@ -1,49 +0,0 @@
|
||||
{
|
||||
"name": "bitserializer",
|
||||
"version": "0.75",
|
||||
"description": "C++ 17 library for serialization to JSON, XML, YAML, CSV, MsgPack",
|
||||
"homepage": "https://github.com/PavelKisliak/BitSerializer",
|
||||
"license": "MIT",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
],
|
||||
"features": {
|
||||
"cpprestjson-archive": {
|
||||
"description": "Module for support JSON (implementation based on the CppRestSDK library)",
|
||||
"dependencies": [
|
||||
"cpprestsdk"
|
||||
]
|
||||
},
|
||||
"csv-archive": {
|
||||
"description": "Module for support CSV"
|
||||
},
|
||||
"msgpack-archive": {
|
||||
"description": "Module for support MsgPack"
|
||||
},
|
||||
"pugixml-archive": {
|
||||
"description": "Module for support XML (implementation based on the PugiXml library)",
|
||||
"dependencies": [
|
||||
"pugixml"
|
||||
]
|
||||
},
|
||||
"rapidjson-archive": {
|
||||
"description": "Module for support JSON (implementation based on the RapidJson library)",
|
||||
"dependencies": [
|
||||
"rapidjson"
|
||||
]
|
||||
},
|
||||
"rapidyaml-archive": {
|
||||
"description": "Module for support YAML (implementation based on the RapidYaml library)",
|
||||
"dependencies": [
|
||||
"ryml"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/accumulators
|
||||
REF boost-${VERSION}
|
||||
SHA512 72cb1c2bf3d58b8a97ca70765e73b98151b6767c80cc309f8117b4624909d45359cfbae7f4aab8e1f9a854bf9313be06cabd4d0d0d008ec3b5b755bbae11c0ed
|
||||
SHA512 444c0e8e9bd5979398360eb53ce43c5360252f48a6d6b3d9ed8cfcae89789d3f8598cb1e87da48fd8da27968cbf0c02fa3c27fe7838e4fefeaba3b8bab9433d5
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,98 +1,98 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-accumulators",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost accumulators module",
|
||||
"homepage": "https://www.boost.org/libs/accumulators",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-array",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-circular-buffer",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-concept-check",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-fusion",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-iterator",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mpl",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-numeric-conversion",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-parameter",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-range",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-serialization",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-tuple",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-typeof",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-ublas",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/algorithm
|
||||
REF boost-${VERSION}
|
||||
SHA512 2ce673ab8693cca338a4499d0dbe0c63b8b4967f017463fefd59a2892a636bf1197b49bf625cef797c93efd0685a5c399daa1d55456c35bcbcd013d47476c72b
|
||||
SHA512 b5608632f96239e8ee162fb642a0408985c3c11d19b972bec574a80088649d7c417d70ca5204b34afc93d92ab24dedea3ba877eb6d9a98296de53218d338bcfa
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,86 +1,86 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-algorithm",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost algorithm module",
|
||||
"homepage": "https://www.boost.org/libs/algorithm",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-array",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-bind",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-concept-check",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-function",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-iterator",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mpl",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-range",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-regex",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-tuple",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-unordered",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/align
|
||||
REF boost-${VERSION}
|
||||
SHA512 bffa9c6accb4e52fea876aca2fae3ed969f65deff578344c3cce48890650e30981f2010d64f19c642791f1a5d3798198502ebf56582096f0f734d5c2a665bb21
|
||||
SHA512 4a69511024a792fed09929a027819112174503ddc46b6053f0f2c73387d7e5501278d2e72eee541a2fb0c3fc299193e045ded8ee29845063250adb40e1e47e97
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,34 +1,34 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-align",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost align module",
|
||||
"homepage": "https://www.boost.org/libs/align",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/any
|
||||
REF boost-${VERSION}
|
||||
SHA512 721d3f1cd479994f8a6562333e76409c53c1baf2f7c77a074c9f1d07e896a88e3302eb570c3476d2fb7af5811fe7692a9e9c1b0b171deb00e8649cc588544f27
|
||||
SHA512 811367a86c15d01e13dcad32efa205bd2a7a4cab309990bd1f817ae26a49cc2c2a56b01f02224225f9673d852f5e5abee36546e0328ae5bf6065198f23e7d530
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,34 +1,34 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-any",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost any module",
|
||||
"homepage": "https://www.boost.org/libs/any",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-index",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/array
|
||||
REF boost-${VERSION}
|
||||
SHA512 a3fe3e7230bd5d82874b4a7c73311f6656c37820eeec5f6186547dde77a43ce5c6264aa0aed87f41399ab50e14988d816d6dd5e66f7ee0fe307c1d15e14d4355
|
||||
SHA512 3ce366b8f0b41070cc7f92f7aa9c5a794843820f27e4822bf8dea3973d64b91db6ad6dee6442c9a336dff1f00a8dce4f673fefa6b5ac254b16d28201ad363535
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,38 +1,38 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-array",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost array module",
|
||||
"homepage": "https://www.boost.org/libs/array",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,15 +1,13 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 2ad3c1de2f..c918c7707d 100644
|
||||
--- a/CMakeLists.txt
|
||||
index a55a62f..be4452d 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -17,13 +17,21 @@ target_link_libraries(boost_asio
|
||||
@@ -17,12 +17,16 @@ target_link_libraries(boost_asio
|
||||
Boost::align
|
||||
Boost::assert
|
||||
Boost::config
|
||||
- Boost::context
|
||||
- Boost::coroutine
|
||||
+ $<TARGET_NAME_IF_EXISTS:Boost::context>
|
||||
+ $<TARGET_NAME_IF_EXISTS:Boost::coroutine>
|
||||
Boost::date_time
|
||||
Boost::system
|
||||
Boost::throw_exception
|
||||
@@ -18,10 +16,6 @@ index 2ad3c1de2f..c918c7707d 100644
|
||||
+if(NOT TARGET Boost::context)
|
||||
+ target_compile_definitions(boost_asio INTERFACE $<$<NOT:$<TARGET_EXISTS:Boost::context>>:BOOST_ASIO_DISABLE_BOOST_CONTEXT_FIBER>)
|
||||
+endif()
|
||||
+
|
||||
+if(NOT TARGET Boost::coroutine)
|
||||
+ target_compile_definitions(boost_asio INTERFACE $<$<NOT:$<TARGET_EXISTS:Boost::coroutine>>:BOOST_ASIO_DISABLE_BOOST_COROUTINE>)
|
||||
+endif()
|
||||
+
|
||||
target_compile_features(boost_asio INTERFACE cxx_std_11)
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/asio
|
||||
REF boost-${VERSION}
|
||||
SHA512 379905acf0cc0352c8df32f4106c3e17ad0f02fd0367288c2dca319a7573bd34ebf435a0e9d876ee0d44a24189d896167c49c7727e1dc77c0fca887e9f7a6eca
|
||||
SHA512 5bd17f3667f85c65f7ac25665231743e64f4060b358d7756a3eddab30c22cf7fcfb774cd65a863fd957ed735249b028dd7d43adba928c7722e4da99bca1306a0
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
opt-dep.diff
|
||||
|
||||
@@ -1,52 +1,52 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-asio",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost asio module",
|
||||
"homepage": "https://www.boost.org/libs/asio",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-align",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-context",
|
||||
"platform": "!uwp & !emscripten",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-coroutine",
|
||||
"platform": "!(arm & windows) & !uwp & !emscripten",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-date-time",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-system",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
],
|
||||
"features": {
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/assert
|
||||
REF boost-${VERSION}
|
||||
SHA512 5774b88d43233d53a3449962c0768ff1362bde7a116130f0d433ae6e9937925f98a7575f6dc11743230940da5d1972664dabdae035722fa2881bcdef5e4bbbfc
|
||||
SHA512 da141f67e0c8926e21d4fae6a1665f1706b300b1a85c1d870546eb74d7382369148846bb939d1d23b84fb0dfc542fdc1dafed613f34adacc5931df7655406276
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-assert",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost assert module",
|
||||
"homepage": "https://www.boost.org/libs/assert",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/assign
|
||||
REF boost-${VERSION}
|
||||
SHA512 c86e613bdd0cade0f2be229ea12fea2e869cbc220c8f95a743a0599d2c0e74a41e6feff71c40fb6197cc4f53a632c42ff8f7f2ec4e6ac8c769c6fea1820fa3cc
|
||||
SHA512 fa769f792937e14f712c1c0cd5a5bd7f61ae2b7de216c2ed389ce3d9f67eb2fa0e89d8b7b4f8f5def54eff09af15b7b18914eae45ada4c6e2b71be33db0be078
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,62 +1,62 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-assign",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost assign module",
|
||||
"homepage": "https://www.boost.org/libs/assign",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-array",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-move",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-ptr-container",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-range",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-tuple",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/atomic
|
||||
REF boost-${VERSION}
|
||||
SHA512 9296704de816cfa3a262d7d49b39431565ca24e65c9503fcef068c65f1bdd08f4c451a1355cb107ffd1c3d6dbf54a5a09c0e2b7b3658e78eeada1f4517494536
|
||||
SHA512 c9be2087ffed6b1711c4777328732a91526eab985c767c3357284cb05e56da4a2ea64554ef2d070d01d9a2e457f413c27016c4050114fdb76d3b609089f2c80b
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
fix-include.patch
|
||||
|
||||
@@ -1,46 +1,46 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-atomic",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost atomic module",
|
||||
"homepage": "https://www.boost.org/libs/atomic",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-align",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-predef",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-winapi",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/beast
|
||||
REF boost-${VERSION}
|
||||
SHA512 342e78855354a8c35c0ca2297ce7abdb28fec2ef119bee419931994bbd1bb0251b7ac46061709b9373f3dd263a7a6a660063b6837d3419daea9327bbcb217130
|
||||
SHA512 9413bfeec900166ba0e645d2a113a9240b41b1eea4f9affb9005635fc9fd6aae1b972d68226931ed8ad8372e20a31cfcbcd925725505a63b4f35778852641de8
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-beast",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost beast module",
|
||||
"homepage": "https://www.boost.org/libs/beast",
|
||||
"license": "BSL-1.0",
|
||||
@@ -9,95 +9,95 @@
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-asio",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-bind",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-container",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-container-hash",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-endian",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-intrusive",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-logic",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mp11",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-optional",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-string",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-system",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-index",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-winapi",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/bimap
|
||||
REF boost-${VERSION}
|
||||
SHA512 1bd2a7d5d07c1a96ece6dd3683374212b89343aa7096d2631f6fd8e4650f34e5cdca5cd920ad5a4d8d06adc190b890041343c89827a98cb2eac2de66da463979
|
||||
SHA512 d3830228a9971369d0e5031be01c80a30a7906ddb110387c2af00e6f3d4a7609819870c5ca9892059caedd8d5e1f2f4aab14d0bfdcb30f0329e601140cf38ab0
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,70 +1,70 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-bimap",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost bimap module",
|
||||
"homepage": "https://www.boost.org/libs/bimap",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-concept-check",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-container-hash",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-iterator",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-lambda",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mpl",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-multi-index",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-utility",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/bind
|
||||
REF boost-${VERSION}
|
||||
SHA512 178fa4b8396b6a76c20cff40e029ae1b36d6f0b199636bda1b34ea7c2cb827d6f09e45e364547e30120e63e5e17c8280df62ecdda6e163f83919cc21bfaeb01a
|
||||
SHA512 dea9fbfdda1668b3084068428ede983d4a28101181c681f8f435a8abe224d4b458e8ef1a5d8e0da42c12b3e64a3ff94317a3a8497c9d4c55c1b7dc90d04b28b2
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,26 +1,26 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-bind",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost bind module",
|
||||
"homepage": "https://www.boost.org/libs/bind",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/build
|
||||
REF boost-${VERSION}
|
||||
SHA512 0214861d3c93f64fd3d211631304a42783eb019df946a4b6ed216163aa9d22b609056c6d1e8dcd62f5f00e9963aa56e84818f01d94465debfc615999baad6bab
|
||||
SHA512 6684fa1954f75b6d4e0007622a4fe44f105a3cee05a39c8ed20e252ab3f9aa4bb23450b085d0e241ed14a02d9b37393d831025e1df7572e92215530906252ea5
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
0002-fix-get-version.patch
|
||||
|
||||
@@ -1,15 +1,14 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-build",
|
||||
"version": "1.86.0",
|
||||
"port-version": 1,
|
||||
"version": "1.87.0",
|
||||
"description": "Boost.Build",
|
||||
"homepage": "https://github.com/boostorg/build",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-uninstall",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/callable_traits
|
||||
REF boost-${VERSION}
|
||||
SHA512 625682baee6df7bea8eeb55dbc941cdd40546f90de271c3c4ff872cc9d51d68eba4991fc3fc2c8073f59182b4739934e6d940239e2a11d69a0b3a8438d95ba78
|
||||
SHA512 0a9f2e656a243d0ea572abaee6740710c695c1ae7fcad1a8e8cd0cada5fbece490fda7cd00fecf8964e989a6a8245f14fa885f012e2dc14e018dfed419437aab
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-callable-traits",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost callable_traits module",
|
||||
"homepage": "https://www.boost.org/libs/callable_traits",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/charconv
|
||||
REF boost-${VERSION}
|
||||
SHA512 9b4668cb9d5e1e4a8f7d57c117998b8d5a6dbf3718c684670b13c3c55eda59257fb8a76e8ab6c34d96a807018d36dd6379890f03b18eba1135ed99dae202c2df
|
||||
SHA512 43c7e36a026de018af54e9150b68aa71d91bf687569225684220f32ae12cf6edb8aa8c236e47a0e8b30e5ab7eefa1847b57ecaa5a7c1c03843746260de7d03e4
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,30 +1,30 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-charconv",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost charconv module",
|
||||
"homepage": "https://www.boost.org/libs/charconv",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/chrono
|
||||
REF boost-${VERSION}
|
||||
SHA512 b10162a7e74fafd9f6841b20672adee3994937201d2928da6c17f47aa52c69819d76b33f85c727801dd02c4897b9e5e75b7975fd937665ae17b7b1fb5807a924
|
||||
SHA512 c339a9a5e15d16494db768cd827062bac2beef0fc98c2d9cb821f2984d547dc5c27b06a0774b0115c27201ddde3b83e38c482b98949b53d28588eb76611ecd18
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,78 +1,78 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-chrono",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost chrono module",
|
||||
"homepage": "https://www.boost.org/libs/chrono",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-integer",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-move",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mpl",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-predef",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-ratio",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-system",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-typeof",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-utility",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-winapi",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/circular_buffer
|
||||
REF boost-${VERSION}
|
||||
SHA512 475e9fbe37e87a4b09fefd12556b5c4efacb5a4af6a1204b40ded29856933d6140b9c5758f66e6dfb16d1f7e1d5d168fc218bf74f44de604a68aaa1a031e8d56
|
||||
SHA512 58e6795fecd792053485186ec3920a4351bd201823291fcd89da5cbd61238b9bff8ff4274a96eadd64fbe419aaa749f6e06ce25b7779ba8e4353fa5f44518a7d
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,50 +1,50 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-circular-buffer",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost circular_buffer module",
|
||||
"homepage": "https://www.boost.org/libs/circular_buffer",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-concept-check",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-move",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
set(boost_boost_ref boost-${VERSION})
|
||||
set(boost_boost_sha512 b30b52c81fa3bfaeb5d67ac766ca47c16da829900c3dcf1f7a1ee2913b88de6d8a72287838adb5a63d59a1b72aea6164a693f921a29fefae8e990aa85c413e0d)
|
||||
set(boost_boost_sha512 7b97172692f8062ca33e830957013ddcd7201bb6584408c8a2af10b1112493c39e7388b8e842403c191ddd565a5f6093fe12312252e120e20094ded82a8710b7)
|
||||
set(boost_cmake_ref boost-${VERSION})
|
||||
set(boost_cmake_sha512 3b0650baa5384df71f4a9be4f54d1b9b34c2ab4f828dbcdf1cc2f5623b5ca2cde6762c72c6f708ef728c9cbbeded12ba632a2b953bf178a3a6b44b4b677cb621)
|
||||
set(boost_cmake_sha512 d363ebed9b534da1bcf99c3b3ba584b7bf5346f459a9f749499bb47a398656cc181b07d405152d85228e1130e102b4feef8685a70777dc520cbf545bd11dc79b)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
diff --git a/include/BoostRoot.cmake b/include/BoostRoot.cmake
|
||||
index e93f90712..063032e8a 100644
|
||||
index 98a19df..e80bbbc 100644
|
||||
--- a/include/BoostRoot.cmake
|
||||
+++ b/include/BoostRoot.cmake
|
||||
@@ -21,7 +21,7 @@ set(__boost_incompatible_libraries "")
|
||||
@@ -19,8 +19,7 @@ index e93f90712..063032e8a 100644
|
||||
|
||||
if(EXISTS "${BOOST_SUPERPROJECT_SOURCE_DIR}/libs/${lib}/CMakeLists.txt")
|
||||
|
||||
@@ -209,7 +209,8 @@ function(__boost_scan_dependencies lib var)
|
||||
foreach(line IN LISTS data)
|
||||
@@ -209,6 +210,7 @@ function(__boost_scan_dependencies lib var)
|
||||
|
||||
if(line MATCHES "^[ ]*Boost::([A-Za-z0-9_]+)[ ]*$")
|
||||
|
||||
@@ -28,7 +27,7 @@ index e93f90712..063032e8a 100644
|
||||
string(REGEX REPLACE "^numeric_" "numeric/" dep ${CMAKE_MATCH_1})
|
||||
list(APPEND result ${dep})
|
||||
|
||||
@@ -218,13 +218,18 @@ function(__boost_scan_dependencies lib var)
|
||||
@@ -218,6 +220,11 @@ function(__boost_scan_dependencies lib var)
|
||||
|
||||
endif()
|
||||
|
||||
@@ -40,14 +39,7 @@ index e93f90712..063032e8a 100644
|
||||
set(${var} ${result} PARENT_SCOPE)
|
||||
|
||||
endfunction()
|
||||
|
||||
macro(__boost_add_header_only lib)
|
||||
|
||||
if(TARGET "boost_${lib}" AND TARGET "Boost::${lib}")
|
||||
|
||||
get_target_property(__boost_lib_type "boost_${lib}" TYPE)
|
||||
|
||||
@@ -251,13 +256,13 @@ while(__boost_libs_to_scan)
|
||||
@@ -280,10 +287,10 @@ while(__boost_libs_to_scan)
|
||||
|
||||
list(REMOVE_DUPLICATES __boost_dependencies)
|
||||
|
||||
@@ -59,10 +51,7 @@ index e93f90712..063032e8a 100644
|
||||
endif()
|
||||
|
||||
list(APPEND __boost_include_libraries ${__boost_libs_to_scan})
|
||||
|
||||
endwhile()
|
||||
|
||||
@@ -362,13 +367,14 @@ if(CMAKE_SKIP_INSTALL_RULES)
|
||||
@@ -430,6 +437,7 @@ if(CMAKE_SKIP_INSTALL_RULES)
|
||||
|
||||
endif()
|
||||
|
||||
@@ -70,16 +59,14 @@ index e93f90712..063032e8a 100644
|
||||
set(CONFIG_INSTALL_DIR "${BOOST_INSTALL_CMAKEDIR}/Boost-${BOOST_SUPERPROJECT_VERSION}")
|
||||
set(CONFIG_FILE_NAME "${CMAKE_CURRENT_LIST_DIR}/../config/BoostConfig.cmake")
|
||||
|
||||
install(FILES "${CONFIG_FILE_NAME}" DESTINATION "${CONFIG_INSTALL_DIR}")
|
||||
|
||||
set(CONFIG_VERSION_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/tmpinst/BoostConfigVersion.cmake")
|
||||
|
||||
if(NOT CMAKE_VERSION VERSION_LESS 3.14)
|
||||
|
||||
write_basic_package_version_file("${CONFIG_VERSION_FILE_NAME}" COMPATIBILITY SameMajorVersion ARCH_INDEPENDENT)
|
||||
@@ -385,3 +392,4 @@ else()
|
||||
@@ -453,9 +461,5 @@ else()
|
||||
endif()
|
||||
|
||||
install(FILES "${CONFIG_VERSION_FILE_NAME}" DESTINATION "${CONFIG_INSTALL_DIR}")
|
||||
+endif()
|
||||
\ No newline at end of file
|
||||
|
||||
-set(CPACK_PACKAGE_VENDOR "Boost")
|
||||
-set(CPACK_GENERATOR "TGZ")
|
||||
-set(CPACK_RESOURCE_FILE_LICENSE "${Boost_SOURCE_DIR}/LICENSE_1_0.txt")
|
||||
-set(CPACK_RESOURCE_FILE_README "${Boost_SOURCE_DIR}/README.md")
|
||||
-include(CPack)
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-cmake",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost CMake support infrastructure",
|
||||
"homepage": "https://github.com/boostorg/cmake",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-uninstall",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-boost",
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/cobalt
|
||||
REF boost-${VERSION}
|
||||
SHA512 a92ff4050772b61035121f944d81d4a9d6d2da858dedc0956ad850132657c80c660a8839a99597443751744577dd5b0958239e99d948d3036c85b8361151aa27
|
||||
SHA512 af8161c15d9134ed46d38d0817403ca4f537892a68055048e1edc5d5f15626fe0d3d80b1ff76faec875f66146f3291a298ae289aea6280067477c4ca99cf9a02
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
fail-on-compiler-not-supported.patch
|
||||
|
||||
@@ -1,81 +1,80 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-cobalt",
|
||||
"version": "1.86.0",
|
||||
"port-version": 1,
|
||||
"version": "1.87.0",
|
||||
"description": "Boost cobalt module",
|
||||
"homepage": "https://www.boost.org/libs/cobalt",
|
||||
"license": "BSL-1.0",
|
||||
"supports": "!osx & !ios & !android & !uwp",
|
||||
"supports": "!uwp",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-asio",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-callable-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-circular-buffer",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-container",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-context",
|
||||
"platform": "!uwp & !emscripten",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-intrusive",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-leaf",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mp11",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-system",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-variant2",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/compat
|
||||
REF boost-${VERSION}
|
||||
SHA512 581ab370fffec2e4d531abcec84f6a8fa9a71152375f44147ab0892e7b8549deec10c32056bcc97137ad2d1dee11c0aca416231620185dd904ddc6344ded3c5d
|
||||
SHA512 ae81f5d4fd7f552eaf390da2d4e8557273229126bab4e8d1cd029eed35813b4f19c8e51ac4702116f551c1c1b15a6971de8ec5ff75b9449620dd6caf196a6b3e
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,30 +1,30 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-compat",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost compat module",
|
||||
"homepage": "https://www.boost.org/libs/compat",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/compute
|
||||
REF boost-${VERSION}
|
||||
SHA512 2bbd253f0cf89d8cd34c4a3813b0b42dd8bd8e68c8e2a10b5637c247b3e532ff97ff2abb03be0f030f1710e655d89eab336e7a4b9fb92a3477f213daaf419f05
|
||||
SHA512 75e986e9082a72293649514604d35aa95eda1e2a9824d4d374c5fd407822a36f37021b50921661608cd97f55e2931d07ba65bc4c24e192b4f58235f80ee2ca1f
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
opt-filesystem.diff
|
||||
|
||||
@@ -1,127 +1,127 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-compute",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost compute module",
|
||||
"homepage": "https://www.boost.org/libs/compute",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-algorithm",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-array",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-chrono",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-filesystem",
|
||||
"platform": "!uwp",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-function",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-function-types",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-fusion",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-iterator",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-lexical-cast",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mpl",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-optional",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-property-tree",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-proto",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-range",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-thread",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-tuple",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-typeof",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-utility",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-uuid",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/concept_check
|
||||
REF boost-${VERSION}
|
||||
SHA512 5d959efc1dc930454552a7e6b896618c2e24242ff9c3d9e63cd30f1090fa84de0650fcd3226043fa3f6fc76d97fe31b9e19f807a553fb1209efda2fbc168cd10
|
||||
SHA512 02d90c46bad058a63cb9023d7737c7477cccfb17be0e284131e6fae108a88bf8c638698359c89fa6c3a094118a3e150f3bc833907ee581fa7875392d01763585
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,34 +1,34 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-concept-check",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost concept_check module",
|
||||
"homepage": "https://www.boost.org/libs/concept_check",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/config
|
||||
REF boost-${VERSION}
|
||||
SHA512 d2ca9b1619905c60d7e2d82afab9570e84834e6d8d742e0a10693fd71319c69d8ad3b5a4c4dad007d8df2840aa8a79786e5e9a53ed2c44395bc319995e86bb9e
|
||||
SHA512 8958ac0f764ab83481f38931a860c0b7cdad8ced4882d1fa57f570d6ebcb0ef000f33ca896faca392c85336406cbb791bf5114c38a15e0a5dcba5bb69ee5526f
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-config",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost config module",
|
||||
"homepage": "https://www.boost.org/libs/config",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/container_hash
|
||||
REF boost-${VERSION}
|
||||
SHA512 3abb573c4dccb23d706abf57d21f3a837baf49d9e976d5b7ff31cd41e0b827528e8218f2e63368440e14d6aeaada23db5bbdc389ba70f1cecf94d899ce3fcf1b
|
||||
SHA512 4409ead5957923de111975826fb49f8e5a0862dbfc7a22d795e31d8157b6768d6ce31fbd53240c7ebdc67b77b0727dc104445ec4e1323081b9e9f7a661d00da3
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,30 +1,30 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-container-hash",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost container_hash module",
|
||||
"homepage": "https://www.boost.org/libs/container_hash",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-describe",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mp11",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/container
|
||||
REF boost-${VERSION}
|
||||
SHA512 bac716c525f83337551a029497d923eaad3b6e02b14a227bc5bffae593637bae8aac7715a0ff5819857999e2b9b9e526806c7d460203556dbb9baa0d4a216e66
|
||||
SHA512 447df3942dbf9157c36aec3144f2c80f49a82e18ac4e8e479c85a0b0bcd84deb798c23cf6cab4324f785552af9a1246cab80a77ed7e96c53408bee5aa9c73eba
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
posix-threads.diff
|
||||
|
||||
@@ -1,34 +1,34 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-container",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost container module",
|
||||
"homepage": "https://www.boost.org/libs/container",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-intrusive",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-move",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/context
|
||||
REF boost-${VERSION}
|
||||
SHA512 cd21a4e834a09783c6c4c26fd9904df9a598ace34cd71f0963baf04801f9d78f62014a0aa48ff711b26e9ed0185fbda5d678e46a57eb7fcf058a5e7f3deecb56
|
||||
SHA512 c3d8efd9cda7b2ba93299a7ce544cc074036516ce589fe6c2ce63fbf29c6f13fe8fd4929b7228d87a8a79fb938abe1ba408a46a8b419eba44d2f38ab39c7979c
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
marmasm.patch
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-context",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost context module",
|
||||
"homepage": "https://www.boost.org/libs/context",
|
||||
"license": "BSL-1.0",
|
||||
@@ -9,39 +9,39 @@
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mp11",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-pool",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-predef",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/contract
|
||||
REF boost-${VERSION}
|
||||
SHA512 4efee6cb0794408947c66f7731ac2745df910485ab58365adb059f4868737f45475eed835713bdcf50e05c74f3ece2911b70f22445607ee1bd3d98c908a15228
|
||||
SHA512 2a1de7a7b7679af0008dc11d14d3013a4b1c6b37d892cf547872d900b19741a7d99229172e09de230822bd6f580abd7c1ce8547bc729d8e87bc2039858b7d6d6
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-contract",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost contract module",
|
||||
"homepage": "https://www.boost.org/libs/contract",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-any",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-function",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-function-types",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mpl",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-optional",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-thread",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-typeof",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-utility",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/conversion
|
||||
REF boost-${VERSION}
|
||||
SHA512 16e50594633b77d584c3cea6430cea8eb4797c7b840291a2724ace112cf2cdfc5caa6519c6671c813c53cc295bafbd4cb12940e98668f51da39f0125c57543c2
|
||||
SHA512 87d0d5625b79e1da8d652d34c817b4c5e2d98d58ee496ec3ce2d7c4d9c636c0778a6c2ec2798fa2240c700eb30c7400360cb40c963307482d37ef3328e039c3b
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,34 +1,34 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-conversion",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost conversion module",
|
||||
"homepage": "https://www.boost.org/libs/conversion",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/convert
|
||||
REF boost-${VERSION}
|
||||
SHA512 8b3cbc66378a739c040a7cfdce5d3be391629b34734fc52e8babfec793789368ae0eeff90b46af835967a412155364eaa9205d541e44af2ecb684e332230b7d6
|
||||
SHA512 068703f8f5cb053d0ab2bee06b3c8faed2847270268bbd8a25b189c99842152dbc2813f58ea8cb8da0bf1b7feba1591fcf217fc867fcac42e053025878821141
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,62 +1,62 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-convert",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost convert module",
|
||||
"homepage": "https://www.boost.org/libs/convert",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-function-types",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-lexical-cast",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-math",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mpl",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-optional",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-parameter",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-range",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-spirit",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/core
|
||||
REF boost-${VERSION}
|
||||
SHA512 36e269dabb7c5c74416d2e55683a7354f47623c726fa95576c8a2c78745e65ce6e9ad5688cc96581f55ba939c00853da30e28d814aef71233080dfcfdb3428f0
|
||||
SHA512 4d5b8ca8fdecd97d3d4028498495c6d75f21d7e128335347acf4a18621f27ac05f5d07174e1bc4086121ae9334cbe12553df5ec32038b49e4c1166bae74c0334
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,34 +1,34 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-core",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost core module",
|
||||
"homepage": "https://www.boost.org/libs/core",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/coroutine
|
||||
REF boost-${VERSION}
|
||||
SHA512 e41b0c22bdbc621cc6d1081a1c5050541894648c5ab8de760fc35e203933e4c13eee57c16060b0b2f28f94bef966e6b71eb26206fe495180e1a9905de5abf7ef
|
||||
SHA512 ae7e47c706f1fdc809d094c7035fc435f13d0e810b9266dff32d7926824ac0c9a49a60b9c45b349c320b55470a0f90bf1d805d1af439894423b315c75d2bad77
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-coroutine",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost coroutine module",
|
||||
"homepage": "https://www.boost.org/libs/coroutine",
|
||||
"license": "BSL-1.0",
|
||||
@@ -9,52 +9,52 @@
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-context",
|
||||
"platform": "!uwp & !emscripten",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-move",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-system",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-utility",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/coroutine2
|
||||
REF boost-${VERSION}
|
||||
SHA512 11d84272ce98c6a251253f2bf766255115566d6e29fb2c8b67166666fb76dfda5ab6457368cdd8cf49999598ee03acb81b3abc05c12849681c6da3778a66b2be
|
||||
SHA512 c1576b0a5d6f6a83c8711d11d82dca71e4e8f687d255ade6c6680a104a46b826434beb67a45830d2c7694a6a732b877ac969b8096fb51280b6ced501609d6e77
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,30 +1,30 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-coroutine2",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost coroutine2 module",
|
||||
"homepage": "https://www.boost.org/libs/coroutine2",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-context",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/crc
|
||||
REF boost-${VERSION}
|
||||
SHA512 86ade360a2c4cd4e6f7e59a474838952a89275917acca1a6fcbabbf408ea82f5fcfe74ed3ff82dc528cd0d631c62d0dc7ae74a6e76ed67d756c44a79c787e9c9
|
||||
SHA512 530304cf76fddfdb1a20e8fd416b00fb446368821c47be4a9878d69b84cbb7e57209fa7799edfbfa24855f52ddcef2a8d92dc77c096e8b74ac2b3640fb7e2f6d
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-crc",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost crc module",
|
||||
"homepage": "https://www.boost.org/libs/crc",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/date_time
|
||||
REF boost-${VERSION}
|
||||
SHA512 b5befffc1bc958b7167fd8b7154ded3a07ac47882007577a8aebbe26de0baebe99fdc71867f51e4446ad7e6f454ebe75fc02e1327089b22a4edd60c887a75c32
|
||||
SHA512 524dc50d7a8c1e7212385ce09ecbcf7433c6323648b65c2350ef14c97ac08d4ed15beef70fe8fad74f624bd14811cf6ff3a2ec4aeebc5d0c47f302a0cef2a7b5
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,78 +1,78 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-date-time",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost date_time module",
|
||||
"homepage": "https://www.boost.org/libs/date_time",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-algorithm",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-io",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-lexical-cast",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-numeric-conversion",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-range",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-tokenizer",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-utility",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-winapi",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/describe
|
||||
REF boost-${VERSION}
|
||||
SHA512 6dae1a712b2d3270163f37d7d1761e48c860f9339f1acb64e481056f1e9018222d44a176848a7a704e97a94d1c5b514fec7d5fb532ec179deca1d51984f11326
|
||||
SHA512 b3ac7cfff3fa1a35fbb8e55e7d7e76aeb88efaffd1bb38ccbfe5d84bbc9aa0360ece2005d660dc570fd5938a0dcb9ab5fa52c6cf45192924570f8501dc848620
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,26 +1,26 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-describe",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost describe module",
|
||||
"homepage": "https://www.boost.org/libs/describe",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mp11",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/detail
|
||||
REF boost-${VERSION}
|
||||
SHA512 1235a8297c101a3f35cba4b74aca7bd9d8ded89fe60cf8d4868ea8a1eebe40ffdb50c385a16c11e3fce6dead37aa979c6bc55aa4bd067dc77fb7d1429daf3860
|
||||
SHA512 43c6294a8a3b72a346e4096a50e695ff265b3d8e35298115ed84968696869036f6768065cae0df397415670a81759edf5c38709a34b9a0b1f6a15faa9914eefc
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,38 +1,38 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-detail",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost detail module",
|
||||
"homepage": "https://www.boost.org/libs/detail",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/dll
|
||||
REF boost-${VERSION}
|
||||
SHA512 da9a2c341a23930e50747d978dc23dc41e2cdbb41cf50f561f309a942adecd855284fc4ca6e6c6f751d721b0a02bf476266ea4a66fb3e67abfafc17d93c87dce
|
||||
SHA512 c0a7a3f241bf7b0bcd5902d2b603f9c32835f3aaff66a1d14ba6f52bb29f5db60437b760c77654984b25d982ffef044df83dfb71308be080f5558499cf912b0e
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,74 +1,74 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-dll",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost dll module",
|
||||
"homepage": "https://www.boost.org/libs/dll",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-filesystem",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-function",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-move",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-predef",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-spirit",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-system",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-index",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-winapi",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/dynamic_bitset
|
||||
REF boost-${VERSION}
|
||||
SHA512 e86fc2ef217bdead342aa50d7e2e629b07b58059aecd99ca9d34414cd83cf1cc0effb707a18c140d9403766266098af03d758b5aaf61933a893430104b5d3b3e
|
||||
SHA512 e01d1d36a585a6cb382ddbcbea6d4f94692018c2a6f9e548422565cd22bdf2fb1af36e0bcf5f7950cc7fda6068501fda308d646841186967b0995eb41755fd6f
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,50 +1,50 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-dynamic-bitset",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost dynamic_bitset module",
|
||||
"homepage": "https://www.boost.org/libs/dynamic_bitset",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-container-hash",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-integer",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-move",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-static-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/endian
|
||||
REF boost-${VERSION}
|
||||
SHA512 022205042407ff55f28a24282b3de56a71bc94b7d55a8cfbb92b83d343d07456c3d77612aeda222327bde59fdc69942bd5dc06056bd4f61e146db180db3160a5
|
||||
SHA512 48e168281c381a27b4102d0d29c7646b480661119ba4db890b1f1a25e83939335f505081bfc3c71d52b22553a95ee646863867e44607d9d2de9e294f36f152d8
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-endian",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost endian module",
|
||||
"homepage": "https://www.boost.org/libs/endian",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/exception
|
||||
REF boost-${VERSION}
|
||||
SHA512 1472e4e59d2397f30bbc32e0d9bc9965d36272fb290a9a923363b396ecd6a4f7d0a7e874eeb3f5d2b3ba5cada279eb10e948df5c96b45994439bbcda76b2105e
|
||||
SHA512 ea1c971da699001b4946f1336edd18fe5225b1d6ac9db50a7640fb39ec31b7596159c1769aa36e949dc887ec228150487718cb1249895dac9503a30e8240f448
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,46 +1,46 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-exception",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost exception module",
|
||||
"homepage": "https://www.boost.org/libs/exception",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-tuple",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/fiber
|
||||
REF boost-${VERSION}
|
||||
SHA512 9936195278181804a25b1b1b8a358c96cc3bc6e6d3952c0f01c29de349f1562503e063eb4f569deeca3589cb902ed1200e0db5289f9f7c0756934914e445caf5
|
||||
SHA512 10d8695746280fea3fc911936777e833d98c0f65616a9cef43d8bd1167306fe6797373acca91ac2f454beb4d9447e6d6d54ba73ff84596862c0947e3487b7781
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-fiber",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost fiber module",
|
||||
"homepage": "https://www.boost.org/libs/fiber",
|
||||
"license": "BSL-1.0",
|
||||
@@ -9,53 +9,53 @@
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-algorithm",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-context",
|
||||
"platform": "!uwp & !emscripten",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-filesystem",
|
||||
"platform": "!uwp",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-format",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-intrusive",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-predef",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
],
|
||||
"features": {
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/filesystem
|
||||
REF boost-${VERSION}
|
||||
SHA512 cb036ab7a381ffd72c0a415d00b256c82445f4f777ce5b7b1490f9dcea53e28af8ccea67807a12195f44bfee6aa29e1bd7178cef2199f2cfd017c066c005d29c
|
||||
SHA512 ba7a9dcb60262465b35da1fecf9be52278835287db311ab658acbe060b92a4c1642537d2e4db192569011c974d469cf2d269d1e5a01afa0e9c9d6be266b0391b
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-filesystem",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost filesystem module",
|
||||
"homepage": "https://www.boost.org/libs/filesystem",
|
||||
"license": "BSL-1.0",
|
||||
@@ -9,67 +9,67 @@
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-atomic",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-container-hash",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-detail",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-io",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-iterator",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-predef",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-scope",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-system",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-winapi",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/flyweight
|
||||
REF boost-${VERSION}
|
||||
SHA512 dc5862df3f1f1b8d8704175952690011dd02e01cd396318b24da4d52e9b5c12da27903128a6003439b92934ce4fb3341b42972152793d17768a04acedcf0bde7
|
||||
SHA512 a2c6fe6a70278afdea514c9bba15b4e5075e3dd1d7a3137a95bad4813e46d1de82f26436185ab36f5528f4cb0e2fc805e236eb3b1dd6b9ecfc3e35ed019a966e
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,70 +1,70 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-flyweight",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost flyweight module",
|
||||
"homepage": "https://www.boost.org/libs/flyweight",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-assert",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-container-hash",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-detail",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-interprocess",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mpl",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-multi-index",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-parameter",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-preprocessor",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-smart-ptr",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-throw-exception",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/foreach
|
||||
REF boost-${VERSION}
|
||||
SHA512 9ec2431151570a7cc0efa8e9651a6ea5484e8e483a50067faa221e26c2bfbaf26e7ff97de7bb8fa82cbffaead5710f9df28ef1781aff83320e747110d678c531
|
||||
SHA512 92acc6bc45239700f73ba0145c9f5b921e6d58d384ebcb6d6f2462f2e630d80b0041834b86cf51506721cafc106b53fbf3fffac895919f57f4d6047afdcef222
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
|
||||
@@ -1,42 +1,42 @@
|
||||
{
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-foreach",
|
||||
"version": "1.86.0",
|
||||
"version": "1.87.0",
|
||||
"description": "Boost foreach module",
|
||||
"homepage": "https://www.boost.org/libs/foreach",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "boost-cmake",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-config",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-core",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-headers",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-iterator",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-mpl",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-range",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
},
|
||||
{
|
||||
"name": "boost-type-traits",
|
||||
"version>=": "1.86.0"
|
||||
"version>=": "1.87.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user