[boost] update to v1.83.0 (#33597)

This commit is contained in:
Yury Bura 2023-09-14 00:40:46 +02:00 committed by GitHub
parent bc378ccf3f
commit caa7579a1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
472 changed files with 3594 additions and 2872 deletions

View File

@ -0,0 +1,46 @@
From 4a7935e1f8d1756cbeafb2564066551f9bd766f0 Mon Sep 17 00:00:00 2001
From: jjll <jjll@gmv.com>
Date: Wed, 6 Sep 2023 14:25:30 +0200
Subject: [PATCH] compatibility boost >= 1.83
---
src/lib/parallel_progress.h | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/lib/parallel_progress.h b/src/lib/parallel_progress.h
index 958b170..ee938d9 100755
--- a/src/lib/parallel_progress.h
+++ b/src/lib/parallel_progress.h
@@ -23,7 +23,14 @@
#ifndef VINA_PARALLEL_PROGRESS_H
#define VINA_PARALLEL_PROGRESS_H
+#include <boost/version.hpp>
+#if BOOST_VERSION < 107200
#include <boost/progress.hpp>
+typedef boost::progress_display boost_progress;
+#else
+#include <boost/timer/progress_display.hpp>
+typedef boost::timer::progress_display boost_progress;
+#endif
#include <boost/thread/mutex.hpp>
#include <functional>
@@ -34,7 +41,7 @@ struct parallel_progress : public incrementable {
parallel_progress(std::function<void(double)>* c = NULL) : p(NULL), callback(c) {}
void init(unsigned long n) {
count = n;
- p = new boost::progress_display(count);
+ p = new boost_progress(count);
}
void operator++() {
if(p) {
@@ -47,7 +54,7 @@ struct parallel_progress : public incrementable {
virtual ~parallel_progress() { delete p; }
private:
boost::mutex self;
- boost::progress_display* p;
+ boost_progress* p;
std::function<void(double)>* callback;
unsigned long count;
};

View File

@ -6,6 +6,7 @@ vcpkg_from_github(
REF v${VERSION} REF v${VERSION}
SHA512 d36908e5833d22bcbc4dae353ef32b905d6eb46511302f7583a291398bfadff5e75fc99ce7b380860578b2257e5c32434cc75b1ca51fafb4b5f12d9477a878e9 SHA512 d36908e5833d22bcbc4dae353ef32b905d6eb46511302f7583a291398bfadff5e75fc99ce7b380860578b2257e5c32434cc75b1ca51fafb4b5f12d9477a878e9
HEAD_REF develop HEAD_REF develop
PATCHES fix-compatibility-with-boost-1.83.patch
) )
file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")

View File

@ -1,6 +1,7 @@
{ {
"name": "autodock-vina", "name": "autodock-vina",
"version-semver": "1.2.5", "version-semver": "1.2.5",
"port-version": 1,
"description": "AutoDock Vina is one of the fastest and most widely used open-source docking engines.", "description": "AutoDock Vina is one of the fastest and most widely used open-source docking engines.",
"homepage": "http://vina.scripps.edu/", "homepage": "http://vina.scripps.edu/",
"dependencies": [ "dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/accumulators REPO boostorg/accumulators
REF boost-1.82.0 REF boost-1.83.0
SHA512 8ad900f0f421af1302682a397d1bffb2aee4c5ab4b2103f3afe427905c7fa86cbabaaaffc6fbcef0f3ddb60f865756aafd1e7b5baa42176ed3ed2d2d8388b264 SHA512 6c7b9b03235945e796eb629e632f074262c46c9201918cd636298b87d464f97923fdb6f9d64c8d3ff70a5e4d6afac4f7d95fb338cf67b9c3ee4c0a7812d62984
HEAD_REF master HEAD_REF master
) )

View File

@ -1,95 +1,94 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-accumulators", "name": "boost-accumulators",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost accumulators module", "description": "Boost accumulators module",
"homepage": "https://github.com/boostorg/accumulators", "homepage": "https://github.com/boostorg/accumulators",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-array", "name": "boost-array",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-circular-buffer", "name": "boost-circular-buffer",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-concept-check", "name": "boost-concept-check",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-fusion", "name": "boost-fusion",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-iterator", "name": "boost-iterator",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-numeric-conversion", "name": "boost-numeric-conversion",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-parameter", "name": "boost-parameter",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-range", "name": "boost-range",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-serialization", "name": "boost-serialization",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-tuple", "name": "boost-tuple",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-typeof", "name": "boost-typeof",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-ublas", "name": "boost-ublas",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/algorithm REPO boostorg/algorithm
REF boost-1.82.0 REF boost-1.83.0
SHA512 46b49d336360fdaf6b3f28c93e4b4c6949d5b89ea4f718849ef40417811e32819b367513949a3040b343850698dac878a785639e18dc938066a1db9a07490ab6 SHA512 88321824ce0ec8c804c6a8451d16fb45b611107aaf0fcc0ee9ca4efd6fb17e60638b55867c811b8c3e57a270c21573ccba4d7e49865ee7a8df2e87d7759f46e4
HEAD_REF master HEAD_REF master
) )

View File

@ -1,83 +1,82 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-algorithm", "name": "boost-algorithm",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost algorithm module", "description": "Boost algorithm module",
"homepage": "https://github.com/boostorg/algorithm", "homepage": "https://github.com/boostorg/algorithm",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-array", "name": "boost-array",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-bind", "name": "boost-bind",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-concept-check", "name": "boost-concept-check",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-exception", "name": "boost-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function", "name": "boost-function",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-iterator", "name": "boost-iterator",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-range", "name": "boost-range",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-regex", "name": "boost-regex",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-tuple", "name": "boost-tuple",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-unordered", "name": "boost-unordered",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/align REPO boostorg/align
REF boost-1.82.0 REF boost-1.83.0
SHA512 939a4143d07e3656dcc2625288c2e3cbb77aba4b80d48bf2c3f7c403f634857b7898a7b49d90b225adae27c91643b169b5f52e75b93e9d76e664d4d631c8ba08 SHA512 4a8a3b9686a29c2d52bb23f52a256aee8f246b72a832af63082b87a8435aeab076a67c0cd220b1bad9d6a9f0184c59a2495594c7a4eb86916495ee2c8d35e5dc
HEAD_REF master HEAD_REF master
) )

View File

@ -1,31 +1,30 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-align", "name": "boost-align",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost align module", "description": "Boost align module",
"homepage": "https://github.com/boostorg/align", "homepage": "https://github.com/boostorg/align",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/any REPO boostorg/any
REF boost-1.82.0 REF boost-1.83.0
SHA512 3d65777d2b2037e996199c56420f6de419661e6dc79a226d42860f526232b31a256c0ddccb605244d98b9fc854fef42134ffe9e20b138c8f2309984345d3fc86 SHA512 5e0916fb16e14bc0d4702b3fa89a2ed1aadf0297abf627d2774604453d5049b799a9958e1bd525ef477e59fb28d65b3763d945603029200534d550e9137541c2
HEAD_REF master HEAD_REF master
) )

View File

@ -1,43 +1,42 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-any", "name": "boost-any",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost any module", "description": "Boost any module",
"homepage": "https://github.com/boostorg/any", "homepage": "https://github.com/boostorg/any",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-index", "name": "boost-type-index",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/array REPO boostorg/array
REF boost-1.82.0 REF boost-1.83.0
SHA512 aeec923cf445eb88c67c9cf46a617db4a9e99c8fceca233573907c029e6152dd57e296415a715148cea2acbdc8a4a196bc6d1460685fd05785cd5f975c05fa12 SHA512 3f1ec923d440139f57a5b7ec652501dad2cb0b6317cf7f064db2fddcc126fcad63e8b6c95b44b50b3e0c0b457245e386540e14d5e881cc611d6f2ce6fe395d00
HEAD_REF master HEAD_REF master
) )

View File

@ -1,35 +1,34 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-array", "name": "boost-array",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost array module", "description": "Boost array module",
"homepage": "https://github.com/boostorg/array", "homepage": "https://github.com/boostorg/array",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -1,131 +0,0 @@
diff --git a/include/boost/asio/experimental/impl/coro.hpp b/include/boost/asio/experimental/impl/coro.hpp
index ec7d956e..ba219453 100644
--- a/include/boost/asio/experimental/impl/coro.hpp
+++ b/include/boost/asio/experimental/impl/coro.hpp
@@ -1070,17 +1070,17 @@ struct coro<Yield, Return, Executor, Allocator>::initiate_async_resume
std::true_type /* error is noexcept */,
std::true_type /* result is void */) //noexcept
{
- return [this, coro = coro_,
+ return [this, coro_promise_ = coro_,
h = std::forward<WaitHandler>(handler),
exec = std::move(exec)]() mutable
{
- assert(coro);
+ assert(coro_promise_);
- auto ch = detail::coroutine_handle<promise_type>::from_promise(*coro);
+ auto ch = detail::coroutine_handle<promise_type>::from_promise(*coro_promise_);
assert(ch && !ch.done());
- coro->awaited_from = post_coroutine(std::move(exec), std::move(h));
- coro->reset_error();
+ coro_promise_->awaited_from = post_coroutine(std::move(exec), std::move(h));
+ coro_promise_->reset_error();
ch.resume();
};
}
@@ -1091,18 +1091,18 @@ struct coro<Yield, Return, Executor, Allocator>::initiate_async_resume
std::true_type /* error is noexcept */,
std::false_type /* result is void */) //noexcept
{
- return [coro = coro_,
+ return [coro_promise_ = coro_,
h = std::forward<WaitHandler>(handler),
exec = std::move(exec)]() mutable
{
- assert(coro);
+ assert(coro_promise_);
- auto ch = detail::coroutine_handle<promise_type>::from_promise(*coro);
+ auto ch = detail::coroutine_handle<promise_type>::from_promise(*coro_promise_);
assert(ch && !ch.done());
- coro->awaited_from = detail::post_coroutine(
- exec, std::move(h), coro->result_).handle;
- coro->reset_error();
+ coro_promise_->awaited_from = detail::post_coroutine(
+ exec, std::move(h), coro_promise_->result_).handle;
+ coro_promise_->reset_error();
ch.resume();
};
}
@@ -1112,16 +1112,16 @@ struct coro<Yield, Return, Executor, Allocator>::initiate_async_resume
std::false_type /* error is noexcept */,
std::true_type /* result is void */)
{
- return [coro = coro_,
+ return [coro_promise_ = coro_,
h = std::forward<WaitHandler>(handler),
exec = std::move(exec)]() mutable
{
- if (!coro)
+ if (!coro_promise_)
return boost::asio::post(exec,
boost::asio::append(std::move(h),
detail::coro_error<error_type>::invalid()));
- auto ch = detail::coroutine_handle<promise_type>::from_promise(*coro);
+ auto ch = detail::coroutine_handle<promise_type>::from_promise(*coro_promise_);
if (!ch)
return boost::asio::post(exec,
boost::asio::append(std::move(h),
@@ -1132,9 +1132,9 @@ struct coro<Yield, Return, Executor, Allocator>::initiate_async_resume
detail::coro_error<error_type>::done()));
else
{
- coro->awaited_from = detail::post_coroutine(
- exec, std::move(h), coro->error_).handle;
- coro->reset_error();
+ coro_promise_->awaited_from = detail::post_coroutine(
+ exec, std::move(h), coro_promise_->error_).handle;
+ coro_promise_->reset_error();
ch.resume();
}
};
@@ -1145,17 +1145,17 @@ struct coro<Yield, Return, Executor, Allocator>::initiate_async_resume
std::false_type /* error is noexcept */,
std::false_type /* result is void */)
{
- return [coro = coro_,
+ return [coro_promise_ = coro_,
h = std::forward<WaitHandler>(handler),
exec = std::move(exec)]() mutable
{
- if (!coro)
+ if (!coro_promise_)
return boost::asio::post(exec,
boost::asio::append(std::move(h),
detail::coro_error<error_type>::invalid(), result_type{}));
auto ch =
- detail::coroutine_handle<promise_type>::from_promise(*coro);
+ detail::coroutine_handle<promise_type>::from_promise(*coro_promise_);
if (!ch)
return boost::asio::post(exec,
boost::asio::append(std::move(h),
@@ -1166,9 +1166,9 @@ struct coro<Yield, Return, Executor, Allocator>::initiate_async_resume
detail::coro_error<error_type>::done(), result_type{}));
else
{
- coro->awaited_from = detail::post_coroutine(
- exec, std::move(h), coro->error_, coro->result_).handle;
- coro->reset_error();
+ coro_promise_->awaited_from = detail::post_coroutine(
+ exec, std::move(h), coro_promise_->error_, coro_promise_->result_).handle;
+ coro_promise_->reset_error();
ch.resume();
}
};
@@ -1204,9 +1204,9 @@ struct coro<Yield, Return, Executor, Allocator>::initiate_async_resume
[h = handle(exec, std::forward<WaitHandler>(handler),
std::integral_constant<bool, is_noexcept>{},
std::is_void<result_type>{}),
- in = std::forward<Input>(input), coro = coro_]() mutable
+ in = std::forward<Input>(input), coro_promise_ = coro_]() mutable
{
- coro->input_ = std::move(in);
+ coro_promise_->input_ = std::move(in);
std::move(h)();
});
}

View File

@ -3,12 +3,10 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/asio REPO boostorg/asio
REF boost-1.82.0 REF boost-1.83.0
SHA512 d54fd77ca7996da138b10408df1eae28bbcae0c6475467cc19837bf6f6624c38ad7f9e1eec87ceae27f516583b204fdbaeb04daad7cc28e6aeec02ab5f188731 SHA512 83e6f39a4b8e54c89e7e7d322acc9e52a83a2a37f45c834a0267f0dbc1219314ad008f4f97e4cddc0a0c15dbea1785681181cea2e903773bdb31176875e0af95
HEAD_REF master HEAD_REF master
PATCHES PATCHES windows_alloca_header.patch
windows_alloca_header.patch
fix_coro_compile_error_msvc.patch #upstream PR: https://github.com/chriskohlhoff/asio/pull/1313
) )
include(${CURRENT_INSTALLED_DIR}/share/boost-vcpkg-helpers/boost-modular-headers.cmake) include(${CURRENT_INSTALLED_DIR}/share/boost-vcpkg-helpers/boost-modular-headers.cmake)

View File

@ -1,89 +1,88 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-asio", "name": "boost-asio",
"version": "1.82.0", "version": "1.83.0",
"port-version": 3,
"description": "Boost asio module", "description": "Boost asio module",
"homepage": "https://github.com/boostorg/asio", "homepage": "https://github.com/boostorg/asio",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-align", "name": "boost-align",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-array", "name": "boost-array",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-bind", "name": "boost-bind",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-chrono", "name": "boost-chrono",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-context", "name": "boost-context",
"platform": "!uwp & !emscripten", "platform": "!uwp & !emscripten",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-coroutine", "name": "boost-coroutine",
"platform": "!(arm & windows) & !uwp & !emscripten", "platform": "!(arm & windows) & !uwp & !emscripten",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-date-time", "name": "boost-date-time",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-exception", "name": "boost-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function", "name": "boost-function",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-regex", "name": "boost-regex",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-system", "name": "boost-system",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
], ],
"features": { "features": {

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/assert REPO boostorg/assert
REF boost-1.82.0 REF boost-1.83.0
SHA512 5f0a4f6edb6a4f933b14bcb5b637224d50ba078565d6f1405bc1eec282ac7fefe22b7ba8d61429159c6814cfab50deccf16c09aff10972bed9180b51c381b1ab SHA512 6ae5fd1bf3360361fdc0dd7c47752aba866c44766129359f0d00b4d9a6357c50b86d20f7aa6ebb1a324e575c4256a7690de589ca98d49eb6e0677def8aded5ca
HEAD_REF master HEAD_REF master
) )

View File

@ -1,19 +1,18 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-assert", "name": "boost-assert",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost assert module", "description": "Boost assert module",
"homepage": "https://github.com/boostorg/assert", "homepage": "https://github.com/boostorg/assert",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/assign REPO boostorg/assign
REF boost-1.82.0 REF boost-1.83.0
SHA512 8b9e8999b9a8375eedcb37a0261484a4c592382bb7c3cc2eb58ed3c9f2b74330ac31a5776ffb121d52ca022d8493dc46c6f977fe9440bacfce250eb1efab92c6 SHA512 cdcab29f429528aff53c009e6ee822c70e763534561be97be5ceb806d58ea2906b19b3e81f667f27fb08a320385a9207122d5bdba704e314eda040377d63ea6a
HEAD_REF master HEAD_REF master
) )

View File

@ -1,59 +1,58 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-assign", "name": "boost-assign",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost assign module", "description": "Boost assign module",
"homepage": "https://github.com/boostorg/assign", "homepage": "https://github.com/boostorg/assign",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-array", "name": "boost-array",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-move", "name": "boost-move",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-ptr-container", "name": "boost-ptr-container",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-range", "name": "boost-range",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-tuple", "name": "boost-tuple",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/atomic REPO boostorg/atomic
REF boost-1.82.0 REF boost-1.83.0
SHA512 d14db6e1fc5d1d23f564a2117784b94951a6d4daffd48c505d13c2c697f84eb0f05b843a66b79dd9fc7a2cb764d6b015fed897e5f92dcb9546567ded111b7e8a SHA512 d6ee15758d9de6c64e9bb307e3b9a5a9aea6d4555be2df78c8ed8089d9da75926f6ec376c2917fbb8c2f985f23b0b926b39fb2d02921c443a83edb77e0455996
HEAD_REF master HEAD_REF master
) )

View File

@ -1,57 +1,56 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-atomic", "name": "boost-atomic",
"version": "1.82.0", "version": "1.83.0",
"port-version": 3,
"description": "Boost atomic module", "description": "Boost atomic module",
"homepage": "https://github.com/boostorg/atomic", "homepage": "https://github.com/boostorg/atomic",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-align", "name": "boost-align",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-predef", "name": "boost-predef",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-winapi", "name": "boost-winapi",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/beast REPO boostorg/beast
REF boost-1.82.0 REF boost-1.83.0
SHA512 85dd18b1ecc56cdd3ab18fa95b14971ccc91270c262ff204cdb807aa2a77b88e0bcb5b873f2c2bb444d99e9d9815d14c8a26770104875f6796c137d48f831ce4 SHA512 d79ab6eb972e2beff4751809b3038c816578d6ea10422eca89bb75652686315bc31579761982a098c100272320b0e36ba2b4b70c2d5d30d7f2aa9a1a60e78ec8
HEAD_REF master HEAD_REF master
) )

View File

@ -1,8 +1,7 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-beast", "name": "boost-beast",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost beast module", "description": "Boost beast module",
"homepage": "https://github.com/boostorg/beast", "homepage": "https://github.com/boostorg/beast",
"license": "BSL-1.0", "license": "BSL-1.0",
@ -10,91 +9,91 @@
"dependencies": [ "dependencies": [
{ {
"name": "boost-asio", "name": "boost-asio",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-bind", "name": "boost-bind",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-container", "name": "boost-container",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-container-hash", "name": "boost-container-hash",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-endian", "name": "boost-endian",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-intrusive", "name": "boost-intrusive",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-logic", "name": "boost-logic",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mp11", "name": "boost-mp11",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-optional", "name": "boost-optional",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-string", "name": "boost-static-string",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-system", "name": "boost-system",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-index", "name": "boost-type-index",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-winapi", "name": "boost-winapi",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/bimap REPO boostorg/bimap
REF boost-1.82.0 REF boost-1.83.0
SHA512 3ab80d2750b472f4f3f365dc695a28df128d2b9302a6c78e94fb0974780523583e20a88a3c4e28f3c349672911bc0b730b52ef1f272a9cd70f7f219418effffa SHA512 e4de66ad6c185be505abbe077ce22862466dd11c2d11d3879032e43e0fd08cd9b4b27276422fd4f5909b5367e483f891c75e1895407ca8d67a4284d9821c04eb
HEAD_REF master HEAD_REF master
) )

View File

@ -1,67 +1,66 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-bimap", "name": "boost-bimap",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost bimap module", "description": "Boost bimap module",
"homepage": "https://github.com/boostorg/bimap", "homepage": "https://github.com/boostorg/bimap",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-concept-check", "name": "boost-concept-check",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-container-hash", "name": "boost-container-hash",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-iterator", "name": "boost-iterator",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-lambda", "name": "boost-lambda",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-multi-index", "name": "boost-multi-index",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/bind REPO boostorg/bind
REF boost-1.82.0 REF boost-1.83.0
SHA512 f816e3421e34e6f185708ce1cc0590a634f893493fd62d1d75a51e98b84eadf75af55301d1ae79e39f62ae5e81b5fc8f3366d5a6745e75ecfe5cdf770b57de41 SHA512 7b2e76459b5cd18437f5d8644c532d6f2ba293cc56ffbe979981a9ac81fa8ca87b0354a1a488321742be1c3448e3ce13637f590856c671993de3a2512e040d07
HEAD_REF master HEAD_REF master
) )

View File

@ -1,23 +1,22 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-bind", "name": "boost-bind",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost bind module", "description": "Boost bind module",
"homepage": "https://github.com/boostorg/bind", "homepage": "https://github.com/boostorg/bind",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -4,13 +4,13 @@ if(CMAKE_HOST_WIN32 AND VCPKG_CMAKE_SYSTEM_NAME AND NOT VCPKG_CMAKE_SYSTEM_NAME
return() return()
endif() endif()
set(BOOST_VERSION 1.82.0) set(BOOST_VERSION 1.83.0)
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/build REPO boostorg/build
REF boost-${BOOST_VERSION} REF boost-${BOOST_VERSION}
SHA512 5f8d46f48e037737e3465e3562c9bdbcacb4a075305c073fe665a8e9c7381ecaa4f5b91a42a9c509cf1c2e0f2af10dbb19f9d443a06fd09edf7372c008d91204 SHA512 1dfd98087b41190437ea07a82fca0a85b71d29ee3f059c6d49916d089102d7fd79a721f720019b98f9cdefcada2cc8dc8fc87d3507a70b43fc0e1b4eaa7853f8
HEAD_REF master HEAD_REF master
PATCHES PATCHES
0002-fix-get-version.patch 0002-fix-get-version.patch
@ -27,7 +27,7 @@ vcpkg_download_distfile(ARCHIVE
vcpkg_download_distfile(BOOSTCPP_ARCHIVE vcpkg_download_distfile(BOOSTCPP_ARCHIVE
URLS "https://raw.githubusercontent.com/boostorg/boost/boost-${BOOST_VERSION}/boostcpp.jam" URLS "https://raw.githubusercontent.com/boostorg/boost/boost-${BOOST_VERSION}/boostcpp.jam"
FILENAME "boost-${BOOST_VERSION}-boostcpp.jam" FILENAME "boost-${BOOST_VERSION}-boostcpp.jam"
SHA512 0daa0dd315f7e426e7b9ada9cc4dad03da2eb257456e551de3fb3b2a8244f0117ed41d9d1ff77b5a3eee7a3c5fb466d345b9bb2af46004fc630209043d4862e3 SHA512 32feae4e13418f68702b18964b17e706255429dd881a098355a0b644da11a97c42aa7eeffa5cc4e30aa8a370dde2097aecc62175fb37cd5cf9766e7fc6303da7
) )
# https://github.com/boostorg/boost/pull/206 # https://github.com/boostorg/boost/pull/206

View File

@ -1,15 +1,14 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-build", "name": "boost-build",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost.Build", "description": "Boost.Build",
"homepage": "https://github.com/boostorg/build", "homepage": "https://github.com/boostorg/build",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-uninstall", "name": "boost-uninstall",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/callable_traits REPO boostorg/callable_traits
REF boost-1.82.0 REF boost-1.83.0
SHA512 a8768293632678b3f6693103452090f20d5a0f4e5cda600e29b080695eed78db4a5cdc541e737f8c79971da1c02b1972dc41aee94051f456b77c1cff3b8accec SHA512 102097394e795dea433742941c5708c2bd80c1a59fb2d4acb851ec071822f505889ca3fa8484332e684d210d16820212519674d1a758463258ae6fef6634e0e9
HEAD_REF master HEAD_REF master
) )

View File

@ -1,15 +1,14 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-callable-traits", "name": "boost-callable-traits",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost callable_traits module", "description": "Boost callable_traits module",
"homepage": "https://github.com/boostorg/callable_traits", "homepage": "https://github.com/boostorg/callable_traits",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/chrono REPO boostorg/chrono
REF boost-1.82.0 REF boost-1.83.0
SHA512 f1edef690e9ecacdd5cece1043f68403a428a4b91f38575971976a13b040d6b7275ba2f4fa6cfb4059aaa764df89011cffe21ebd31b2acd1117fce109a5f2564 SHA512 4e337e93dac9758121afa1a9f404e9b0d02b6a34fa8a81fca09419587cd3f4d6f796dfde5e2d212e94f843db0f7f2996557ef2af0b2b697ed31b72895a7438e8
HEAD_REF master HEAD_REF master
) )

View File

@ -1,85 +1,84 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-chrono", "name": "boost-chrono",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost chrono module", "description": "Boost chrono module",
"homepage": "https://github.com/boostorg/chrono", "homepage": "https://github.com/boostorg/chrono",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-integer", "name": "boost-integer",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-move", "name": "boost-move",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-predef", "name": "boost-predef",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-ratio", "name": "boost-ratio",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-system", "name": "boost-system",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-typeof", "name": "boost-typeof",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-winapi", "name": "boost-winapi",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/circular_buffer REPO boostorg/circular_buffer
REF boost-1.82.0 REF boost-1.83.0
SHA512 6e3bfdf4139bb585be90f54f37f77b3d9ea1dd90b62e0ff3d0c7918a69d4e524d4736999bcc11957eeed1381a96aa499f71e2588d3c8f440062b3216d4aa7f79 SHA512 8ec66b5b9185971684c72cd6f4ef86c2ed5d0decb1a72949d1dc7423f8f220f14e124151d1c6a7042805ecb9813a2ce67080f2ebef316e24a0b67ea5686a2e1f
HEAD_REF master HEAD_REF master
) )

View File

@ -1,47 +1,46 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-circular-buffer", "name": "boost-circular-buffer",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost circular_buffer module", "description": "Boost circular_buffer module",
"homepage": "https://github.com/boostorg/circular_buffer", "homepage": "https://github.com/boostorg/circular_buffer",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-concept-check", "name": "boost-concept-check",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-move", "name": "boost-move",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -0,0 +1,12 @@
# Automatically generated by scripts/boost/generate-ports.ps1
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/compat
REF boost-1.83.0
SHA512 4eb3d73e278da881967d9408822cb6d8a54b98ab7bfe278eed94189a3ff6b1b3987b5317f9765ce2b16b4c0cb75af5755bdb0850a053fa0ccec3e942e67a9347
HEAD_REF master
)
include(${CURRENT_INSTALLED_DIR}/share/boost-vcpkg-helpers/boost-modular-headers.cmake)
boost_modular_headers(SOURCE_PATH ${SOURCE_PATH})

View File

@ -0,0 +1,26 @@
{
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-compat",
"version": "1.83.0",
"description": "Boost compat module",
"homepage": "https://github.com/boostorg/compat",
"license": "BSL-1.0",
"dependencies": [
{
"name": "boost-assert",
"version>=": "1.83.0"
},
{
"name": "boost-config",
"version>=": "1.83.0"
},
{
"name": "boost-throw-exception",
"version>=": "1.83.0"
},
{
"name": "boost-vcpkg-helpers",
"version>=": "1.83.0"
}
]
}

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/compatibility REPO boostorg/compatibility
REF boost-1.82.0 REF boost-1.83.0
SHA512 3ab0133479e8f7a10336b1eded030f81f8300e0cd15ab186fa5f69177aeaeca92106f54b5f5d1ba260c7a86910a29f71ab40d260f42499e707f99709bceb0fd1 SHA512 bc6ff1c30acc9f7123e9b28a732960776e1a028bf0fc5459f39266546f1e2466c62366cc689dab6f8a59a4a46fa9ae3370b4bca14b51d364c3d16e680d5ff95b
HEAD_REF master HEAD_REF master
) )

View File

@ -1,15 +1,14 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-compatibility", "name": "boost-compatibility",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost compatibility module", "description": "Boost compatibility module",
"homepage": "https://github.com/boostorg/compatibility", "homepage": "https://github.com/boostorg/compatibility",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/compute REPO boostorg/compute
REF boost-1.82.0 REF boost-1.83.0
SHA512 3c38f2ee6b6063842cf08afa4bf8e59706bb85cf956c26fbd574abafe7439ba5557ed2a70e922ff32001b645c453a4d1d956a6489c93adc83a6c3ee57b4a3143 SHA512 bb555cffc7761a1dba3b010aa45782af22d4bac049ecfa9d26695a5eb3c5722b29f5f7b30143d17698b2098f81dcc7eaef2425482c5a6495e29324b1f8f324b2
HEAD_REF master HEAD_REF master
) )

View File

@ -1,124 +1,123 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-compute", "name": "boost-compute",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost compute module", "description": "Boost compute module",
"homepage": "https://github.com/boostorg/compute", "homepage": "https://github.com/boostorg/compute",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-algorithm", "name": "boost-algorithm",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-array", "name": "boost-array",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-chrono", "name": "boost-chrono",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-filesystem", "name": "boost-filesystem",
"platform": "!uwp", "platform": "!uwp",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function", "name": "boost-function",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function-types", "name": "boost-function-types",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-fusion", "name": "boost-fusion",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-iterator", "name": "boost-iterator",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-lexical-cast", "name": "boost-lexical-cast",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-optional", "name": "boost-optional",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-property-tree", "name": "boost-property-tree",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-proto", "name": "boost-proto",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-range", "name": "boost-range",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-thread", "name": "boost-thread",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-tuple", "name": "boost-tuple",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-typeof", "name": "boost-typeof",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-uuid", "name": "boost-uuid",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/concept_check REPO boostorg/concept_check
REF boost-1.82.0 REF boost-1.83.0
SHA512 a5e4faf91f8edbca84440fe8ce188abe86088d1249bedabfb866755f238c2dad52312201f764d9b19d15e787824a580b7bb66259e4940c9f7d465b6939648869 SHA512 525debb2e5a804daf9dfe59afc16022ff32825dc385930167736ae337b7cbb9e54165e1be59c77c8bbf8cd1c7e0d7b1f5689091119ea79d4fb461f03f9d228a3
HEAD_REF master HEAD_REF master
) )

View File

@ -1,31 +1,30 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-concept-check", "name": "boost-concept-check",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost concept_check module", "description": "Boost concept_check module",
"homepage": "https://github.com/boostorg/concept_check", "homepage": "https://github.com/boostorg/concept_check",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/config REPO boostorg/config
REF boost-1.82.0 REF boost-1.83.0
SHA512 175d8c355890703e74e301e478d0257a59dde9c4cec5d7765bf7da770ac8345253caef9bc2e88299b9fd038d7a640352181fd933bca2d619bbe0ec12514f4c86 SHA512 84ae4e303b9f63e950fc6e01d0318bf223b56518474343a3e0f2d9e5ee631c4ca8ddedb5ec425259806360b30f82b80cd3330ff2ad6cfc8013d7c90d32280516
HEAD_REF master HEAD_REF master
) )

View File

@ -1,15 +1,14 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-config", "name": "boost-config",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost config module", "description": "Boost config module",
"homepage": "https://github.com/boostorg/config", "homepage": "https://github.com/boostorg/config",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/container_hash REPO boostorg/container_hash
REF boost-1.82.0 REF boost-1.83.0
SHA512 651fa89c9281c16f6fa4cf56dee7bf050e3fca1b6322560ba89c35671cf4a5c14cc90b1001fbacc4084ed1b43d0084d71189e74ddd38523bab42c3880b91abcb SHA512 8258ad4888d5780cd083466af1facba2430aba7ac1de32b513cecbf9eae3920c9d2d17622bf6b00ebe75cb3bbb84f64ae48dfb78c913d60ec583f09cabfc4b8d
HEAD_REF master HEAD_REF master
) )

View File

@ -1,31 +1,30 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-container-hash", "name": "boost-container-hash",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost container_hash module", "description": "Boost container_hash module",
"homepage": "https://github.com/boostorg/container_hash", "homepage": "https://github.com/boostorg/container_hash",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-describe", "name": "boost-describe",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mp11", "name": "boost-mp11",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/container REPO boostorg/container
REF boost-1.82.0 REF boost-1.83.0
SHA512 d3da8405ed58bd2d26a71a7a703b597b9888c30d1fab181082aded56af636a5ce3abf56f84b791f1a96d391f7ffe63d7358987890174076309972a5e2c9d43cb SHA512 4c5054ba5ab55df8fbb58d6f9661ec32e14a6a0c06ac86b916d98de076565f1bc6d76d85aad90b7a198760360bbcd4acea6d8d298347157866593486a1ae0ba8
HEAD_REF master HEAD_REF master
) )

View File

@ -1,45 +1,44 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-container", "name": "boost-container",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost container module", "description": "Boost container module",
"homepage": "https://github.com/boostorg/container", "homepage": "https://github.com/boostorg/container",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-intrusive", "name": "boost-intrusive",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-move", "name": "boost-move",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/context REPO boostorg/context
REF boost-1.82.0 REF boost-1.83.0
SHA512 e4474d84a93a21e2e7ba67ce08a60a856080d1e2952097dca8fc61776a7eef7c72bb98ff322ec303e255b462e85fba341db1eb59db4b18fb60da20e56946f07f SHA512 726d54231de62eb5a30331ff21c334f6fd88a70ec35904315753c695c8470f38904ed65cf468015ef2284901080df17fab28db68a028c6cfe7ef0e3d0cc7545d
HEAD_REF master HEAD_REF master
) )

View File

@ -1,8 +1,7 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-context", "name": "boost-context",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost context module", "description": "Boost context module",
"homepage": "https://github.com/boostorg/context", "homepage": "https://github.com/boostorg/context",
"license": "BSL-1.0", "license": "BSL-1.0",
@ -10,45 +9,45 @@
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mp11", "name": "boost-mp11",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-pool", "name": "boost-pool",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-predef", "name": "boost-predef",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/contract REPO boostorg/contract
REF boost-1.82.0 REF boost-1.83.0
SHA512 241df3fd514dd32a98beebb71bb22483e271c0c313ed337d2080ce413eed7c8a77629987d1db185fe8fe254aa99c7c6ff8f17e49a47f030e75fd30c301c30199 SHA512 70ce8255eb8d32f525dc0af4f6f1cb953a7f5032fc76c70dd51609849100ac6addcadb00e2eca74f688471441a1fe286854dedeae3cb8c925638764f1028dbef
HEAD_REF master HEAD_REF master
) )

View File

@ -1,89 +1,88 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-contract", "name": "boost-contract",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost contract module", "description": "Boost contract module",
"homepage": "https://github.com/boostorg/contract", "homepage": "https://github.com/boostorg/contract",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-any", "name": "boost-any",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-exception", "name": "boost-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function", "name": "boost-function",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function-types", "name": "boost-function-types",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-optional", "name": "boost-optional",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-thread", "name": "boost-thread",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-typeof", "name": "boost-typeof",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/conversion REPO boostorg/conversion
REF boost-1.82.0 REF boost-1.83.0
SHA512 0b0695928c8e1a40156d6fac36b51490c4b9011827c7dbadb747867ebc616e75c9d787ed1120298e990a49b86f1206b886c1995e5e3091685abddbf11320d2e4 SHA512 c64a6bbdd0089e89b27f778c3c4ffbee606c7239293e2451396d3e0489aea83bc81b1fc720a37539dd592634a6310ffeef810f3f520f561d84fbc062475c3cbb
HEAD_REF master HEAD_REF master
) )

View File

@ -1,43 +1,42 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-conversion", "name": "boost-conversion",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost conversion module", "description": "Boost conversion module",
"homepage": "https://github.com/boostorg/conversion", "homepage": "https://github.com/boostorg/conversion",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-typeof", "name": "boost-typeof",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/convert REPO boostorg/convert
REF boost-1.82.0 REF boost-1.83.0
SHA512 683c8c71b52edb76e31ebee6fee6df8cbf2653b3d595df897cbb636ed068c7276877f6460deaefc89eab5e69a4a19552f74fec0b5c9f9e2dc80591b5407bcce5 SHA512 03e5b4e483eae34bd2c024f147cd54a6d255a041a469a079f544e9bcf9aee2ac1e777103e8bdb696f2ea43cb6012173cc9f4d006e5c0afd343bb91f806c978d5
HEAD_REF master HEAD_REF master
) )

View File

@ -1,59 +1,58 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-convert", "name": "boost-convert",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost convert module", "description": "Boost convert module",
"homepage": "https://github.com/boostorg/convert", "homepage": "https://github.com/boostorg/convert",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function-types", "name": "boost-function-types",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-lexical-cast", "name": "boost-lexical-cast",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-math", "name": "boost-math",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-optional", "name": "boost-optional",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-parameter", "name": "boost-parameter",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-range", "name": "boost-range",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-spirit", "name": "boost-spirit",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/core REPO boostorg/core
REF boost-1.82.0 REF boost-1.83.0
SHA512 3bc4760b7a5536a838b29704ca1600d2836d6c485161950b6dbfbb4bf1abb840b89624a96f290db3af05c5906573ce0b2a67123b90bc50a389e24ec038d815b5 SHA512 a67515e7b641eb3c7ae7fe25a4cee67ddec0de86cb40bd6d7b6c4f7472050f1de06285498a4144c3bd4da7a1b00ae330da593a61a37a1ba7e22fb33d1da2f269
HEAD_REF master HEAD_REF master
) )

View File

@ -1,31 +1,30 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-core", "name": "boost-core",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost core module", "description": "Boost core module",
"homepage": "https://github.com/boostorg/core", "homepage": "https://github.com/boostorg/core",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/coroutine REPO boostorg/coroutine
REF boost-1.82.0 REF boost-1.83.0
SHA512 f94a3a0dfece7d57a90d7e4dd1454eeb8ab7096be4e14e1b79a63e46d205b83558cc512889e4896664dcdda1657da4c386756ca4e24c2601b9b7b4acc1df06e1 SHA512 aa2c1f22ac750d9a7f55b6b1c97c0a3db8e409bfbedf6722e77f7c60669db7b8c647c710bf512b2523f1aae819edc647331069e6e25abc5434a16ab4ee1c3105
HEAD_REF master HEAD_REF master
) )

View File

@ -1,8 +1,7 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-coroutine", "name": "boost-coroutine",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost coroutine module", "description": "Boost coroutine module",
"homepage": "https://github.com/boostorg/coroutine", "homepage": "https://github.com/boostorg/coroutine",
"license": "BSL-1.0", "license": "BSL-1.0",
@ -10,58 +9,58 @@
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-context", "name": "boost-context",
"platform": "!uwp & !emscripten", "platform": "!uwp & !emscripten",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-exception", "name": "boost-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-move", "name": "boost-move",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-system", "name": "boost-system",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/coroutine2 REPO boostorg/coroutine2
REF boost-1.82.0 REF boost-1.83.0
SHA512 1dc72e489c192954db5158e320bab164caa56880fa6f170906ee1d62e87c634809be947544a285701aa8c069d3c73acc90960209ad5e439d5927e7327e178c1d SHA512 e3cbf798364ed5b5aa6e9d811d356d74bae37463c586ac44a39b2e9f19d4aa366d5703e2f28bb2c8af4509a0695b6e8b5d61fcfdef5a6d0d54136a5aed59f4af
HEAD_REF master HEAD_REF master
) )

View File

@ -1,8 +1,7 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-coroutine2", "name": "boost-coroutine2",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost coroutine2 module", "description": "Boost coroutine2 module",
"homepage": "https://github.com/boostorg/coroutine2", "homepage": "https://github.com/boostorg/coroutine2",
"license": "BSL-1.0", "license": "BSL-1.0",
@ -10,20 +9,20 @@
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-context", "name": "boost-context",
"platform": "!uwp & !emscripten", "platform": "!uwp & !emscripten",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/crc REPO boostorg/crc
REF boost-1.82.0 REF boost-1.83.0
SHA512 5218fb2e477604f8d93f7acec53788a0b415ca9818e2895a2c9550add8836ae378c7a9d5d1eb9bd7a5f8bb24b8f83b3946a74b5c1289bda74bd6d18b52f96bbf SHA512 c758c8ecf586689b50df5e8462a09726d46a89a64c8521d9d37a071df6babbdaafa87b60ba612faed37ee327f6e57bea2f07cbd4e264f79bdba1236191e8d2b2
HEAD_REF master HEAD_REF master
) )

View File

@ -1,31 +1,30 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-crc", "name": "boost-crc",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost crc module", "description": "Boost crc module",
"homepage": "https://github.com/boostorg/crc", "homepage": "https://github.com/boostorg/crc",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-array", "name": "boost-array",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-integer", "name": "boost-integer",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/date_time REPO boostorg/date_time
REF boost-1.82.0 REF boost-1.83.0
SHA512 a8130ea6aafba0ab2bd82ada42031a3a03e75f7d01adb559509b1d32695203a512d2a8ac6fdc28f2ef7b3376f605ec92c30ea16cb3d7f7888c6aab7578d1c125 SHA512 efcdb38090295548d7bd9c9f0b3d095360f30b586c92cfe6c72e3de112cd0253a9e5b7307898e0d2498a100f153289b7ad7c423f83beb32d3fd24f5ed0502aac
HEAD_REF master HEAD_REF master
) )

View File

@ -1,85 +1,84 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-date-time", "name": "boost-date-time",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost date_time module", "description": "Boost date_time module",
"homepage": "https://github.com/boostorg/date_time", "homepage": "https://github.com/boostorg/date_time",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-algorithm", "name": "boost-algorithm",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-io", "name": "boost-io",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-lexical-cast", "name": "boost-lexical-cast",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-numeric-conversion", "name": "boost-numeric-conversion",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-range", "name": "boost-range",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-tokenizer", "name": "boost-tokenizer",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-winapi", "name": "boost-winapi",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/describe REPO boostorg/describe
REF boost-1.82.0 REF boost-1.83.0
SHA512 82a0002966b6bd0fab1d55b58ae7922c4515b1efa942a60b0568952cdf2d73d8ddfbe940d5d75b5f3da1c36035a10b38cf9a74bd343c2264ebfb1290f981f1bb SHA512 652972000916ce99a54dc8aa6fe5507c8ea04aba9ff9624cdfdfe89e6f0e9aae19c84b08381066a411bf851239dc9c585205df64a72f57f56e52f2f02e1ce6ad
HEAD_REF master HEAD_REF master
) )

View File

@ -1,19 +1,18 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-describe", "name": "boost-describe",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost describe module", "description": "Boost describe module",
"homepage": "https://github.com/boostorg/describe", "homepage": "https://github.com/boostorg/describe",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-mp11", "name": "boost-mp11",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/detail REPO boostorg/detail
REF boost-1.82.0 REF boost-1.83.0
SHA512 862bd8310938bf663427ad9201065802e1d233646b987ab813b1b777d988cc21b1526214adc756776e3e4debb8f68401b14264700f87314161bdc1062e7e81aa SHA512 40e0e7c06c5fa94fe0210b9fb74ece2ef42cc4448d30b6090789b1dc3a31da1c3a2efac5826c4e51f39c716ed20810cbb12350b590197710518f37ff8b028154
HEAD_REF master HEAD_REF master
) )

View File

@ -1,35 +1,34 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-detail", "name": "boost-detail",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost detail module", "description": "Boost detail module",
"homepage": "https://github.com/boostorg/detail", "homepage": "https://github.com/boostorg/detail",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/dll REPO boostorg/dll
REF boost-1.82.0 REF boost-1.83.0
SHA512 ac9b5c1de0770c67e531a2309c8695630da4eb0f046d1abe1b0ebb55242f97787936e60a437a5a635937a547138ae724e302ca8cbe588e42333a05db0030a862 SHA512 1a45b45673301809a6ad4f4aadfcebf7566f9ed973e35982b3cf4b39a881e2573517a5ad40af749714474fb13e69087b1a7f3dc1a81df0093a1e60fec022011c
HEAD_REF master HEAD_REF master
) )

View File

@ -1,76 +1,75 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-dll", "name": "boost-dll",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost dll module", "description": "Boost dll module",
"homepage": "https://github.com/boostorg/dll", "homepage": "https://github.com/boostorg/dll",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-filesystem", "name": "boost-filesystem",
"platform": "!uwp", "platform": "!uwp",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function", "name": "boost-function",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-move", "name": "boost-move",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-predef", "name": "boost-predef",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-spirit", "name": "boost-spirit",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-system", "name": "boost-system",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-index", "name": "boost-type-index",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-winapi", "name": "boost-winapi",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/dynamic_bitset REPO boostorg/dynamic_bitset
REF boost-1.82.0 REF boost-1.83.0
SHA512 782a6e203de483481415db815ae37b7bb29878aa6fe6336fcf4342e910b6067140a76086cd6f024789a0f23ff6ae1beccfb2ba0469229109e117dc3bc6e29198 SHA512 33795e6323b1a91bec31789e2f1ede38ce952b2a50fbd10f931225a0e83e4ad530827392991e8a6f994e06edb1627cb29927c9111c6ff98e18b2e17fd31b945e
HEAD_REF master HEAD_REF master
) )

View File

@ -1,47 +1,46 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-dynamic-bitset", "name": "boost-dynamic-bitset",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost dynamic_bitset module", "description": "Boost dynamic_bitset module",
"homepage": "https://github.com/boostorg/dynamic_bitset", "homepage": "https://github.com/boostorg/dynamic_bitset",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-container-hash", "name": "boost-container-hash",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-integer", "name": "boost-integer",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-move", "name": "boost-move",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/endian REPO boostorg/endian
REF boost-1.82.0 REF boost-1.83.0
SHA512 07c17826f9a1478e68330da7e57f042d02fd78121b488d1e63c68dc35e17463551dc478de2779f292b6f81ec776249ba161653baf31f873d45913dcd822fe261 SHA512 8c77b9b5d1931844cdd083d02f6f4eb677ad6344aad704bf7ff8fe0c05fa2775be31d7c776048f11eb54f6601ddcf9a884898747d0286f8440fe4bdf493862b8
HEAD_REF master HEAD_REF master
) )

View File

@ -1,31 +1,30 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-endian", "name": "boost-endian",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost endian module", "description": "Boost endian module",
"homepage": "https://github.com/boostorg/endian", "homepage": "https://github.com/boostorg/endian",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/exception REPO boostorg/exception
REF boost-1.82.0 REF boost-1.83.0
SHA512 d025ed356906a7dae2ce55550b216599a62f907f854814d5553a8f1e935276efe768642eec872de325c9ce17904fde4ab706acb93e6d24897b74794d98d12bdd SHA512 9b5bc191b3f50c529e3f61bfe6acfdfb095a6f462ff9e62bbd7ad63e93e52b6286f13c59847063889623d281d09f607277a42134ab735c3734959db2bf627546
HEAD_REF master HEAD_REF master
) )

View File

@ -1,53 +1,52 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-exception", "name": "boost-exception",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost exception module", "description": "Boost exception module",
"homepage": "https://github.com/boostorg/exception", "homepage": "https://github.com/boostorg/exception",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-tuple", "name": "boost-tuple",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/fiber REPO boostorg/fiber
REF boost-1.82.0 REF boost-1.83.0
SHA512 00d12393ad8a3d6cf90aa3a8e1011b61d976d4d08b1b1af719ebefecd269f0b2295db4bb3bd58b6b74416e1986af05dad897ed1d3a83fd43812b77833f85aba7 SHA512 f1ee98497a548661ce5aab19a2a49aea62ed789b7102eaa2a65f5011ead33fa4f19dce549f7d026bf7d93dba80bbc75555ffd1b80aa35da0627f5f4e3cc54ee3
HEAD_REF master HEAD_REF master
) )

View File

@ -1,8 +1,7 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-fiber", "name": "boost-fiber",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost fiber module", "description": "Boost fiber module",
"homepage": "https://github.com/boostorg/fiber", "homepage": "https://github.com/boostorg/fiber",
"license": "BSL-1.0", "license": "BSL-1.0",
@ -10,59 +9,59 @@
"dependencies": [ "dependencies": [
{ {
"name": "boost-algorithm", "name": "boost-algorithm",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-context", "name": "boost-context",
"platform": "!uwp & !emscripten", "platform": "!uwp & !emscripten",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-filesystem", "name": "boost-filesystem",
"platform": "!uwp", "platform": "!uwp",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-format", "name": "boost-format",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-intrusive", "name": "boost-intrusive",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-predef", "name": "boost-predef",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/filesystem REPO boostorg/filesystem
REF boost-1.82.0 REF boost-1.83.0
SHA512 53141484dbfc0ee399333eaadc87cb5fe077d0be8dbfb69c6a9c4545d254e894f0f0f7fb16f7de72c344f91ac29c2769125324ad2363b36b7a82bc4651472501 SHA512 7de786c7831971faa9aacbc454dcba3021e41d115a88dbfb05f3cb3f68dcec9bb56521eaba16ee77b16e93670e197964649436b83ceb6a0eef199d29e25ff95e
HEAD_REF master HEAD_REF master
) )

View File

@ -1,8 +1,7 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-filesystem", "name": "boost-filesystem",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost filesystem module", "description": "Boost filesystem module",
"homepage": "https://github.com/boostorg/filesystem", "homepage": "https://github.com/boostorg/filesystem",
"license": "BSL-1.0", "license": "BSL-1.0",
@ -10,73 +9,73 @@
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-atomic", "name": "boost-atomic",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-build", "name": "boost-build",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-container-hash", "name": "boost-container-hash",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-detail", "name": "boost-detail",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-io", "name": "boost-io",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-iterator", "name": "boost-iterator",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-modular-build-helper", "name": "boost-modular-build-helper",
"host": true, "host": true,
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-predef", "name": "boost-predef",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-system", "name": "boost-system",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-winapi", "name": "boost-winapi",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/flyweight REPO boostorg/flyweight
REF boost-1.82.0 REF boost-1.83.0
SHA512 97f10dac36d22d065989fb24ad7187c39af5c58cdadbd0672d3cba1c03098314bc121a8bcc3c0cb417598a04cfd021bf937f5118a1323031f9ef9d8399636d0c SHA512 c054403707a0574c0b2e5c7f34521153f604ae17d10a52ed7ff8e222d006ff4875d3e479abacce18c59edd2d44d8fec63f22a806d7a203094ce9e885ffbd903b
HEAD_REF master HEAD_REF master
) )

View File

@ -1,67 +1,66 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-flyweight", "name": "boost-flyweight",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost flyweight module", "description": "Boost flyweight module",
"homepage": "https://github.com/boostorg/flyweight", "homepage": "https://github.com/boostorg/flyweight",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-container-hash", "name": "boost-container-hash",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-detail", "name": "boost-detail",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-interprocess", "name": "boost-interprocess",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-multi-index", "name": "boost-multi-index",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-parameter", "name": "boost-parameter",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/foreach REPO boostorg/foreach
REF boost-1.82.0 REF boost-1.83.0
SHA512 ab9113874ebb5c5e34769db78505b1c702a261f33cb63bcd2b7423e158096fe2a71b3635bcc5d759efe2896e39e31c2bf1b30cb9b766b92a07119a1a9b794e4a SHA512 74b95e1c13c48ef38a4d8bfd50fd896fda6f12cbbc360530a1c69c96ab2a891ef5c6b7162ea5fe13dd978f329e5c618226688ba75307a0243fc0b1845cc9f18a
HEAD_REF master HEAD_REF master
) )

View File

@ -1,39 +1,38 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-foreach", "name": "boost-foreach",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost foreach module", "description": "Boost foreach module",
"homepage": "https://github.com/boostorg/foreach", "homepage": "https://github.com/boostorg/foreach",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-iterator", "name": "boost-iterator",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-range", "name": "boost-range",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/format REPO boostorg/format
REF boost-1.82.0 REF boost-1.83.0
SHA512 9103f42b8a12ebe752e0e4ccb45c2e35d13ce00d3522a49abcc95e0a5b1c389930cb782b0d7618fb0e69b66c99d527ad272098cea480656bfcdf8b4130ab27da SHA512 e5faefa4aca61498b13522d2606c3fe91c1c23053f2ae6d83f9680d6c19680fafd36232fbcb735fb4d7cb79f498c28fd7095f1568594b050f87060c744960c13
HEAD_REF master HEAD_REF master
) )

View File

@ -1,43 +1,42 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-format", "name": "boost-format",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost format module", "description": "Boost format module",
"homepage": "https://github.com/boostorg/format", "homepage": "https://github.com/boostorg/format",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-optional", "name": "boost-optional",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-smart-ptr", "name": "boost-smart-ptr",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/function_types REPO boostorg/function_types
REF boost-1.82.0 REF boost-1.83.0
SHA512 f47c49056d938b945c7ca51a73ca29d61e30f4a447bd54af17790ad6e474acdc67f187e5fd6ecc93296b38210b1f3e6057fbdfa68e35899f4b6c386d08792e53 SHA512 6ccaf5f67a7fd50e175b57a6e3cfe47c9bd523a94705d008f9ed7837926e8e84a2d13df2bd8b64e7df6a85d61a51a4c30ab409acd6a3b9f8eb054236dcc68abc
HEAD_REF master HEAD_REF master
) )

View File

@ -1,39 +1,38 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-function-types", "name": "boost-function-types",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost function_types module", "description": "Boost function_types module",
"homepage": "https://github.com/boostorg/function_types", "homepage": "https://github.com/boostorg/function_types",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-detail", "name": "boost-detail",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/function REPO boostorg/function
REF boost-1.82.0 REF boost-1.83.0
SHA512 0dea7ded3895403de62b1446c5737e0e75232c0b881dfeb40751c1ad19adb379850e87f0d6747d7397a2b7e889e87c5e4fb9f79bc6e499e282df24a8617b12e3 SHA512 2df43a509b4f5ee39c5febc5253369eacbf2421d73fff32525fbdb28e8aa4c2a22173ee1d11a4aefa28975ea6ca7649edc771d047f1893179da119a13ca27681
HEAD_REF master HEAD_REF master
) )

View File

@ -1,47 +1,46 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-function", "name": "boost-function",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost function module", "description": "Boost function module",
"homepage": "https://github.com/boostorg/function", "homepage": "https://github.com/boostorg/function",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-bind", "name": "boost-bind",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-typeof", "name": "boost-typeof",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/functional REPO boostorg/functional
REF boost-1.82.0 REF boost-1.83.0
SHA512 ccd6782a6a05e9629211ab403484cf3dfb22eeae35fd393e690f6e4935a4596436d24e2730f746be12b1866dbe7767e735c6a8ea90c19c837a5d33cc60af6796 SHA512 c63de62b13393a125039ef5b2e28d42de4aebff3d6ac7c137780451471992b7022765f9e28a67050d5bcc406328730cc56a77bdc41fdfbf8a3926aaed80080e9
HEAD_REF master HEAD_REF master
) )

View File

@ -1,51 +1,50 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-functional", "name": "boost-functional",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost functional module", "description": "Boost functional module",
"homepage": "https://github.com/boostorg/functional", "homepage": "https://github.com/boostorg/functional",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function", "name": "boost-function",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function-types", "name": "boost-function-types",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-typeof", "name": "boost-typeof",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/fusion REPO boostorg/fusion
REF boost-1.82.0 REF boost-1.83.0
SHA512 142ee69b7438bca8feacb7511a99680bdc669044a8eb58eb059bc5bbd62de3f9319fbb759c110412e515a106e0ea43dcdb194ebe522bebf5e77b567627ab11f3 SHA512 4fefa5c968a7a7f99e408d58d08b25ac52a7e5bc50a7b6d60e185f1b7947382da487d2e97bfc725bef693208b80d072c610bb7d44028d666fd66e3bf2677098e
HEAD_REF master HEAD_REF master
) )

View File

@ -1,63 +1,62 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-fusion", "name": "boost-fusion",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost fusion module", "description": "Boost fusion module",
"homepage": "https://github.com/boostorg/fusion", "homepage": "https://github.com/boostorg/fusion",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-container-hash", "name": "boost-container-hash",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function-types", "name": "boost-function-types",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-functional", "name": "boost-functional",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-preprocessor", "name": "boost-preprocessor",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-tuple", "name": "boost-tuple",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-typeof", "name": "boost-typeof",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-utility", "name": "boost-utility",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

View File

@ -3,8 +3,8 @@
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/geometry REPO boostorg/geometry
REF boost-1.82.0 REF boost-1.83.0
SHA512 e03a2a1f15dfe140e3fd6fc3725386c094c7d8b1248c713f9530a5b7735d025c7282426adc1de62aa60fe305289605e0f0826936e6b976102f54695f6c4368d5 SHA512 e6708bdcb2ec9b55e9a68cade2efd0114cfc757c1cbf2aaa84e740c2ce5a26c910afef09343be9d7cd2ac8209bf99310b7404a1938ddac99975eef92b7c1e675
HEAD_REF master HEAD_REF master
) )

View File

@ -1,147 +1,134 @@
{ {
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1", "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
"name": "boost-geometry", "name": "boost-geometry",
"version": "1.82.0", "version": "1.83.0",
"port-version": 2,
"description": "Boost geometry module", "description": "Boost geometry module",
"homepage": "https://github.com/boostorg/geometry", "homepage": "https://github.com/boostorg/geometry",
"license": "BSL-1.0", "license": "BSL-1.0",
"dependencies": [ "dependencies": [
{ {
"name": "boost-algorithm", "name": "boost-algorithm",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-any", "name": "boost-any",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-array", "name": "boost-array",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-assert", "name": "boost-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-concept-check", "name": "boost-concept-check",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-config", "name": "boost-config",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-container", "name": "boost-container",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-core", "name": "boost-core",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-function-types", "name": "boost-function-types",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-fusion", "name": "boost-fusion",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-integer", "name": "boost-integer",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-iterator", "name": "boost-iterator",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-lexical-cast", "name": "boost-lexical-cast",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-math", "name": "boost-math",
"version>=": "1.82.0" "version>=": "1.83.0"
},
{
"name": "boost-move",
"version>=": "1.82.0"
}, },
{ {
"name": "boost-mpl", "name": "boost-mpl",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-multiprecision", "name": "boost-multiprecision",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-numeric-conversion", "name": "boost-numeric-conversion",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-polygon", "name": "boost-polygon",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-qvm", "name": "boost-qvm",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-range", "name": "boost-range",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-rational", "name": "boost-rational",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-serialization", "name": "boost-serialization",
"version>=": "1.82.0" "version>=": "1.83.0"
},
{
"name": "boost-smart-ptr",
"version>=": "1.82.0"
}, },
{ {
"name": "boost-static-assert", "name": "boost-static-assert",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-thread", "name": "boost-thread",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-throw-exception", "name": "boost-throw-exception",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-tokenizer", "name": "boost-tokenizer",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-tuple", "name": "boost-tuple",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-type-traits", "name": "boost-type-traits",
"version>=": "1.82.0" "version>=": "1.83.0"
},
{
"name": "boost-utility",
"version>=": "1.82.0"
}, },
{ {
"name": "boost-variant", "name": "boost-variant",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-variant2", "name": "boost-variant2",
"version>=": "1.82.0" "version>=": "1.83.0"
}, },
{ {
"name": "boost-vcpkg-helpers", "name": "boost-vcpkg-helpers",
"version>=": "1.82.0" "version>=": "1.83.0"
} }
] ]
} }

Some files were not shown because too many files have changed in this diff Show More