[boost] update to 1.76.0 (#17335)

* [boost] update generator script for boost 1.76

* [boost] update ports to 1.76.0 (run generator)

* [boost] fix windows build?

* [quantlib] update and fix mac build

* [symengine] update and fix build

* [avro-cpp] update to latest master and fix windows build

* [folly] update to 2021.05.31.00

* [fbthrift, fizz, wangle] update to v2021.05.31.00 and fix build

* [proxygen] update to version 2021.05.31.00

* [fizz, proxygen, fbthrift] fix sodium target

* [proxygen] also works on macOS

* [quantlib] use fix from upstream to fix mac build

* [symengine] minimize patch file and fix deprecation warning

* [folly,proxygen,wangle,fizz,fbthrift] update to 2021.06.14.00

* [fbthrift] remove unnecessary dependency rsocket

I couldn't find any information that this dependency exists. The term is used in the code, but not in the context of a dependency

* [fizz,fbthrift] fix zlib dependency

* [fbthrift] pass required flex executable to cmake configure

* add version files

* [boost] generate-ports.ps1: Apply code review

* [boost] changes from new version of generate-ports script

* update version files

* [boost] generate-ports.ps1: Apply code review
This commit is contained in:
autoantwort 2021-07-07 21:31:06 +02:00 committed by GitHub
parent a1225b69e0
commit 761c81d433
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
485 changed files with 2046 additions and 1041 deletions

View File

@ -1,10 +0,0 @@
Source: avro-cpp
Version: 1.9.2
Homepage: https://github.com/apache/avro
Description: Apache Avro is a data serialization system
Build-Depends: boost-format, boost-thread, boost-filesystem, boost-iostreams, boost-program-options, boost-random, boost-crc, boost-test, libzip, bzip2, liblzma, zlib, zstd
Supports: !(windows&static)
Feature: snappy
Build-Depends: snappy
Description: Support Snappy for compression

View File

@ -0,0 +1,33 @@
diff --git a/lang/c++/impl/avrogencpp.cc b/lang/c++/impl/avrogencpp.cc
index 61570413..0b6b35a2 100644
--- a/lang/c++/impl/avrogencpp.cc
+++ b/lang/c++/impl/avrogencpp.cc
@@ -804,8 +804,8 @@ static string readGuard(const string &filename) {
int main(int argc, char **argv) {
const string NS("namespace");
- const string OUT("output");
- const string IN("input");
+ const string OUT_FILE("output");
+ const string IN_FILE("input");
const string INCLUDE_PREFIX("include-prefix");
const string NO_UNION_TYPEDEF("no-union-typedef");
@@ -817,14 +817,14 @@ int main(int argc, char **argv) {
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
- if (vm.count("help") || vm.count(IN) == 0 || vm.count(OUT) == 0) {
+ if (vm.count("help") || vm.count(IN_FILE) == 0 || vm.count(OUT_FILE) == 0) {
std::cout << desc << std::endl;
return 1;
}
string ns = vm.count(NS) > 0 ? vm[NS].as<string>() : string();
- string outf = vm.count(OUT) > 0 ? vm[OUT].as<string>() : string();
- string inf = vm.count(IN) > 0 ? vm[IN].as<string>() : string();
+ string outf = vm.count(OUT_FILE) > 0 ? vm[OUT_FILE].as<string>() : string();
+ string inf = vm.count(IN_FILE) > 0 ? vm[IN_FILE].as<string>() : string();
string incPrefix = vm[INCLUDE_PREFIX].as<string>();
bool noUnion = vm.count(NO_UNION_TYPEDEF) != 0;
if (incPrefix == "-") {

View File

@ -1,8 +1,8 @@
diff --git a/lang/c++/CMakeLists.txt b/lang/c++/CMakeLists.txt
index 30a5d66..f7f2b94 100644
index bf764ce4..e84524d0 100644
--- a/lang/c++/CMakeLists.txt
+++ b/lang/c++/CMakeLists.txt
@@ -40,6 +40,8 @@ set (AVRO_VERSION_MINOR "0")
@@ -48,6 +48,8 @@ list(GET AVRO_VERSION 2 AVRO_VERSION_PATCH)
project (Avro-cpp)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR})
@ -11,12 +11,13 @@ index 30a5d66..f7f2b94 100644
if (WIN32 AND NOT CYGWIN AND NOT MSYS)
add_definitions (/EHa)
add_definitions (
@@ -118,11 +120,11 @@ set_target_properties (avrocpp PROPERTIES
@@ -125,12 +127,12 @@ set_target_properties (avrocpp PROPERTIES
set_target_properties (avrocpp_s PROPERTIES
VERSION ${AVRO_VERSION_MAJOR}.${AVRO_VERSION_MINOR})
VERSION ${AVRO_VERSION_MAJOR}.${AVRO_VERSION_MINOR}.${AVRO_VERSION_PATCH})
-target_link_libraries (avrocpp ${Boost_LIBRARIES} ${SNAPPY_LIBRARIES})
+target_link_libraries (avrocpp ${Boost_LIBRARIES} ${SNAPPY_LIBRARIES} ZLIB::ZLIB)
target_include_directories(avrocpp PRIVATE ${SNAPPY_INCLUDE_DIR})
add_executable (precompile test/precompile.cc)
@ -25,13 +26,12 @@ index 30a5d66..f7f2b94 100644
macro (gen file ns)
add_custom_command (OUTPUT ${file}.hh
@@ -151,34 +153,40 @@ gen (crossref cr)
gen (primitivetypes pt)
@@ -160,37 +162,42 @@ gen (primitivetypes pt)
gen (cpp_reserved_words cppres)
add_executable (avrogencpp impl/avrogencpp.cc)
-target_link_libraries (avrogencpp avrocpp_s ${Boost_LIBRARIES} ${SNAPPY_LIBRARIES})
+target_link_libraries (avrogencpp avrocpp_s ${Boost_LIBRARIES} ${SNAPPY_LIBRARIES} ZLIB::ZLIB)
+
-enable_testing()
+if(BUILD_TESTING)
@ -57,6 +57,9 @@ index 30a5d66..f7f2b94 100644
-unittest (JsonTests)
-unittest (AvrogencppTests)
-unittest (CompilerTests)
-unittest (AvrogencppTestReservedWords)
-
-add_dependencies (AvrogencppTestReservedWords cpp_reserved_words_hh)
-
-add_dependencies (AvrogencppTests bigrecord_hh bigrecord_r_hh bigrecord2_hh
- tweet_hh
@ -75,6 +78,9 @@ index 30a5d66..f7f2b94 100644
+ unittest (JsonTests)
+ unittest (AvrogencppTests)
+ unittest (CompilerTests)
+ unittest (AvrogencppTestReservedWords)
+
+ add_dependencies (AvrogencppTestReservedWords cpp_reserved_words_hh)
+
+ add_dependencies (AvrogencppTests bigrecord_hh bigrecord_r_hh bigrecord2_hh
+ tweet_hh
@ -86,7 +92,7 @@ index 30a5d66..f7f2b94 100644
include (InstallRequiredSystemLibraries)
@@ -189,9 +197,9 @@ include (CPack)
@@ -201,9 +208,9 @@ include (CPack)
install (TARGETS avrocpp avrocpp_s
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib

View File

@ -3,11 +3,12 @@ vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO apache/avro
REF release-1.9.2
SHA512 6a6980901eea964c050eb3d61fadf28712e2f02c36985bf8e5176b668bba48985f6a666554a1964435448de29b18d790ab86b787d0288a22fd9cba00746a7846
REF 2ab8fa85d05f04387bd5d63b10ad1c8fd2243616
SHA512 fd21f0919b0e5e884bdf4d66c4d5ba056f04c426b309ec0b5ab26642a5f6b00d46f4dd965431b10130bc5f0d81699e2195780e90e127f63049ee5763403ef7c8
HEAD_REF master
PATCHES
install.patch
fix-windows-build.patch
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS

30
ports/avro-cpp/vcpkg.json Normal file
View File

@ -0,0 +1,30 @@
{
"name": "avro-cpp",
"version-date": "2021-06-01",
"description": "Apache Avro is a data serialization system",
"homepage": "https://github.com/apache/avro",
"supports": "!(windows & static)",
"dependencies": [
"boost-crc",
"boost-filesystem",
"boost-format",
"boost-iostreams",
"boost-program-options",
"boost-random",
"boost-test",
"boost-thread",
"bzip2",
"liblzma",
"libzip",
"zlib",
"zstd"
],
"features": {
"snappy": {
"description": "Support Snappy for compression",
"dependencies": [
"snappy"
]
}
}
}

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/accumulators
REF boost-1.75.0
SHA512 1ac43f8a6df1d184261a022c37ffefe9db505e1cc3d4f17cf7ffdf42648d79ebc55653ed299089ff4cf56ccfb90ca565a71fef81735805ef435ac858cf65fae4
REF boost-1.76.0
SHA512 51c5a64ec68274c77a674dfa15b106df2a341018498501a882d1fbeddcdee40944422184cf102986ce5c5fb1e7e5bf388566f94893a2bb6da98ec666fa20287d
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-accumulators",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost accumulators module",
"homepage": "https://github.com/boostorg/accumulators",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/algorithm
REF boost-1.75.0
SHA512 6ae80682fcd31caf4dc593f60df6b0c6c26688e2d8aa39277077c29556ae7c4a314cd9037b4d36464ddd3ce28350aa6691e4343617220aae813f98f25611af1a
REF boost-1.76.0
SHA512 1a421f88244e07de254ea8f050e74ed0b0de889ea7a39d95daaf1f55ec5455d9dc7bcb3ae55970885dc6cd5ac6b5f9637146420eadcc59a12fc2753c842207c3
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-algorithm",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost algorithm module",
"homepage": "https://github.com/boostorg/algorithm",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/align
REF boost-1.75.0
SHA512 51d138b368a565ecdd9484a333eb0e1a97a23606d3e195ac3a3aa6f64f9b028f1c2abdfa4b28bc49e11044f8f73692a5d86b5591e8ecaf7aa292a0892361a132
REF boost-1.76.0
SHA512 5b9f646512a79c7848989b5d9c2d1e67b3db86cc751d2e1034969412715c7d27a7558ecfececcad3db3ddb49a9b4ca664c9ae844f3e57b32d443549968e2ac9b
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-align",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost align module",
"homepage": "https://github.com/boostorg/align",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/any
REF boost-1.75.0
SHA512 426c4c1b47f86e1637514be45ad60ff2df40c91012c275819a2817ec0edd3fa6de107a16fbdc2cdd3d51d50fa76232f6bfc6b80a963e2fc60e94dd464a7994be
REF boost-1.76.0
SHA512 38f0bf6dddcdf5ce5527d068057de1ce9594605d51dde8f1591decb6423a912be2047fd2ed1b77acf42eb22d5e44a29276db9e9a24fad1596c589a58354307ba
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-any",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost any module",
"homepage": "https://github.com/boostorg/any",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/array
REF boost-1.75.0
SHA512 0ba02e3b084cb7c334d9709ea12d1408461d0ff0b32b35e69869d0cd81e30bd3ab06c2941fa16b51194d5961648d7283e15ebd0d8c8b843d7491a4470e72dd53
REF boost-1.76.0
SHA512 76109a4c45ba9ec880fd419cb6287ffc7f78b141c3b42f8ac934317093fbb632376381895863fa874187252e3047cd9cf4501f3fef04b559fb90a66e3b6acb50
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-array",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost array module",
"homepage": "https://github.com/boostorg/array",
"dependencies": [

View File

@ -1,13 +0,0 @@
diff --git a/asio/include/asio/impl/use_awaitable.hpp b/asio/include/asio/impl/use_awaitable.hpp
index 60a6f5cd..af7be635 100644
--- a/include/boost/asio/impl/use_awaitable.hpp
+++ b/include/boost/asio/impl/use_awaitable.hpp
@@ -236,7 +236,7 @@ T dummy_return()
}
template <>
-void dummy_return()
+inline void dummy_return()
{
}
#endif // defined(_MSC_VER)

View File

@ -3,12 +3,10 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/asio
REF boost-1.75.0
SHA512 5f332644207f87af8ffbf93d9f1f72b7ca6dfa96d77a871308951c492ae27fac20bad2bfdf4e1de06585c1405d1875c4d4335786b3fc08aa0a76ef4de3626c27
REF boost-1.76.0
SHA512 d9706045510dc65dfb5d84fded39cb7bbbf44d9f1ba079efc3802962f30ba36ceb7b1610d47822348a910bbca857d0fee8ffef767921a9a75ee9565f9eb63a79
HEAD_REF master
PATCHES
windows_alloca_header.patch
inline_dummy_return.patch
PATCHES windows_alloca_header.patch
)
include(${CURRENT_INSTALLED_DIR}/share/boost-vcpkg-helpers/boost-modular-headers.cmake)

View File

@ -1,7 +1,6 @@
{
"name": "boost-asio",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost asio module",
"homepage": "https://github.com/boostorg/asio",
"supports": "!emscripten",
@ -10,7 +9,6 @@
"boost-assert",
"boost-bind",
"boost-chrono",
"boost-compatibility",
"boost-config",
{
"name": "boost-coroutine",
@ -19,7 +17,6 @@
"boost-date-time",
"boost-detail",
"boost-function",
"boost-integer",
"boost-regex",
"boost-smart-ptr",
"boost-system",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/assert
REF boost-1.75.0
SHA512 3a20f892b6f49d03e0d8488623e1cd3dff3eff708c77851007e50ad7e8bb2e80696a333da7dfa95cacc30e4ddc9f25dce061793670c9b8733df9227631501a08
REF boost-1.76.0
SHA512 bcd8d1fea358916d4ac8a707edee13bdc4b269a05f1456c3780fa525a2fe1438e8af1ca8689171da8bb3bb7ea2b02f0ed10ddc1204a5b52a885e2eebd1ba4f23
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-assert",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost assert module",
"homepage": "https://github.com/boostorg/assert",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/assign
REF boost-1.75.0
SHA512 33c5adc9fe35b670ab9be1e68d61970e6c1ea0a870791fd446669cf501e665e615e72da5bb50a61e0e6bc6d7e695513d1bf73e91f845c5d1b47e694868da2baf
REF boost-1.76.0
SHA512 fce24fed1b909d108176ed9c52e9c8dfd53aa7eab063f99d83bf7b0d37db64494c5d47fe60bcade57d59afb4da53c50c0101c4a14316b043e5a018444ed4e34a
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-assign",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost assign module",
"homepage": "https://github.com/boostorg/assign",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/atomic
REF boost-1.75.0
SHA512 4045b4b9cd920854bd8a98298ba8662000bd045fe1322748c7ef0b96fdcb17ce8b55a16e3f10bc7344f37993d1c6df0720ddcc1b5b4255b54a5ca1fc29e253f1
REF boost-1.76.0
SHA512 8677c5bd03f089b75f8fac891f9d0383510096c64490936b766a94fdbfd984cd550f41e3e7dbed76372ca81ab8264d2d5fc2dcaadb87a52b4ebb7b0aa3b6feeb
HEAD_REF master
)

View File

@ -1,7 +1,6 @@
{
"name": "boost-atomic",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost atomic module",
"homepage": "https://github.com/boostorg/atomic",
"dependencies": [
@ -12,7 +11,6 @@
"host": true
},
"boost-config",
"boost-integer",
{
"name": "boost-modular-build-helper",
"host": true

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/beast
REF boost-1.75.0
SHA512 c153b550610834d27e07786d9ad651429d0dea9e47e57578fccd17e463722d413259a4cfbd039a4b30a06b2bd99bd519869ff94e1029e8f22ea1c7f5d9c5ec5f
REF boost-1.76.0
SHA512 8fca87bdbd17ba7701fab6527043ff33c15b0c544b62448a2c269e4c0baab51fcedaf7f4bce746eb7a8d9390a37234aa96d0519fba7507d34656f20097a60c9e
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-beast",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost beast module",
"homepage": "https://github.com/boostorg/beast",
"supports": "!emscripten",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/bimap
REF boost-1.75.0
SHA512 fa8d6666554090b4d37795284e6c3c8e631c4c5e1288ca38da391ff13515d92ef7ba2407ae0b6f45df3bc1cbb736f774bbb58fe582c36514068281e3138d83ad
REF boost-1.76.0
SHA512 efa156483c4b696bf88e1f752f1810916699254cb22038d7ea2f3399938dcaebf14795572a2a42558bed356e19d0be154443282bdadc20c8235a057ac5a72fb6
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-bimap",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost bimap module",
"homepage": "https://github.com/boostorg/bimap",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/bind
REF boost-1.75.0
SHA512 6c3ef2f4be49222956ad9d8770413486f1f7b216c489bdd9793a859f15b38d15813e16b2554e77314f373ecdfafa6b88c4862c34f5f058752d17a9942b4adf9e
REF boost-1.76.0
SHA512 a2e40c56d5092818bcddd22b90c6fe6705e2d322b9d96e5abb3524fa166e1d7fc6e5a9c98acf14409663a639c77274d12f9e9840eaa4c963b872c7363caa54ba
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-bind",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost bind module",
"homepage": "https://github.com/boostorg/bind",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/callable_traits
REF boost-1.75.0
SHA512 fbed9560bff606778f1ff30978a6a87bb03f55bef5160f3c40329aa06262e2232fcafeb4a56994c697141bdba3c24b9615b299309a8b3adeb50e4321773596ce
REF boost-1.76.0
SHA512 9ccc62f33001179b9ab6576cc6ac9a3e1a8117a557fbdd65c7eec0b522aa1b7e5e4f31601205819d1e3507afa4e327cfd56d58589974404c8f9c14f970bad79f
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-callable-traits",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost callable_traits module",
"homepage": "https://github.com/boostorg/callable_traits",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/chrono
REF boost-1.75.0
SHA512 97ce109ad99a9687d2528c7b15f56059dcbdfcb120646644a6707cb98f1a9407a70b9c8d295dc933375b923348e6a33817b596fd55d45a8c96e3f1ab9a335ac2
REF boost-1.76.0
SHA512 ebfea42589e69152256fb175175d753fbb86f96d988fd2678e0df82d6bf7c2e226c8223280ab044cbb1533a690692e23134ee09f665db38a5d1a7e10dd79da22
HEAD_REF master
)

View File

@ -1,7 +1,6 @@
{
"name": "boost-chrono",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost chrono module",
"homepage": "https://github.com/boostorg/chrono",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/circular_buffer
REF boost-1.75.0
SHA512 08a51f1d6947802097245d2e97ab23be89447fbaa47ff9538f04ce9e1a3077b6bf0b7ec8be5e21d02eb24c6721f330ed485f57d2fd2e4759021eef508690d5f2
REF boost-1.76.0
SHA512 0e85b0cd8d66552f8cbf2c90dcd3685d4666b2d4608f5352c68e3f1e03e68cdaf368777235b0cc6a17420e07c767c61ca026f753d1d1d6e35c6d7c3a11deac9f
HEAD_REF master
)

View File

@ -1,11 +1,10 @@
{
"name": "boost-circular-buffer",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost circular_buffer module",
"homepage": "https://github.com/boostorg/circular_buffer",
"dependencies": [
"boost-assert",
"boost-compatibility",
"boost-concept-check",
"boost-config",
"boost-core",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/compatibility
REF boost-1.75.0
SHA512 9a7dfa28325cdc257d26de9203d64015453a3245c90de63895c7fd8a0ef24e3acea5203737d6ccf69ce51563010772ff7807137e2531f55a1fa7f63e4b2d0547
REF boost-1.76.0
SHA512 ca17b6a6021d7f87692a37aa8e558b76235095f6e7850432ebc3c945afe25c01ce0b7d26e8d239636ff38d2d697ba057b9109f8c06b7d70ae154a4b8223733ce
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-compatibility",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost compatibility module",
"homepage": "https://github.com/boostorg/compatibility",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/compute
REF boost-1.75.0
SHA512 740e351c466d133058b2730311194198f958504b6b0c20517e54ad7809d71d3fe11d35b7935d6bf49f191d4dea7a9f37be21fa4f8d363331588a32d73febc047
REF boost-1.76.0
SHA512 93f20c281e71ba205fdfc458a40f437cec09c2c9593e41ccf59e927b2f9e6c2f31b89389605c5a1f5b4893097928f16ded38b794dccf95adbdfac68f4e016ad9
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-compute",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost compute module",
"homepage": "https://github.com/boostorg/compute",
"dependencies": [

View File

@ -1,13 +0,0 @@
diff --git a/include/boost/concept_check.hpp b/include/boost/concept_check.hpp
index abbadb7..cab58e5 100644
--- a/include/boost/concept_check.hpp
+++ b/include/boost/concept_check.hpp
@@ -352,7 +352,7 @@ namespace boost
private:
void test(boost::false_type)
{
- f(first,second);
+ (void) f(first,second);
Return r = f(first, second); // require operator()
(void)r;
}

View File

@ -3,11 +3,9 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/concept_check
REF boost-1.75.0
SHA512 823e3af47881c98f864c70686a3a2f6c9b7d5e6bf0ae61f2983f6c2ba26a70aaa888b683a74ef504ec7f5f479609731e35fad3518f1731954e01e7d67636e5d4
REF boost-1.76.0
SHA512 f10bcd81ed88a036078188647a0b8aa2245d0c343fe29d4c13c16fe8dc551d843281bbe1fb903c71026c8183f02f57bbad2cbbf3eb6c3f4f885ec8773afb8bde
HEAD_REF master
PATCHES
fix-warning-c4834.patch
)
include(${CURRENT_INSTALLED_DIR}/share/boost-vcpkg-helpers/boost-modular-headers.cmake)

View File

@ -1,7 +1,6 @@
{
"name": "boost-concept-check",
"version-string": "1.75.0",
"port-version": 2,
"version": "1.76.0",
"description": "Boost concept_check module",
"homepage": "https://github.com/boostorg/concept_check",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/config
REF boost-1.75.0
SHA512 458cd2e2d1649b6cba86eb1b0be61259a36ca716ccc418d5501dbcc78f2884226ae5d2ddcb99a644df6c90ea1601a2f7d8a0484389ccd2148e18cee137165f23
REF boost-1.76.0
SHA512 cef30b35f4d791c9220aad28b347acb28ed87e58ecf319c9fe7dfdb0c36d8c2a1ba7f996fbf2da201a2c4fae8cf2ca1b45224754482c7ecb074cee382f33e7ab
HEAD_REF master
)

View File

@ -1,10 +1,9 @@
{
"name": "boost-config",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost config module",
"homepage": "https://github.com/boostorg/config",
"dependencies": [
"boost-compatibility",
"boost-vcpkg-helpers"
]
}

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/container_hash
REF boost-1.75.0
SHA512 4d1a8381e9b7554884597db4b1e365465845b1fd7e665ec5bc89c38f859fb4b62e024e77b2cd818f3bdf959476dedae0fc49fc43e28e4e9043e0386a366f9a43
REF boost-1.76.0
SHA512 59dbd3028e65ff5a499ebf316354eb4e46dcefa736d07954b9f99471cf0195b080821180925923814fad50f44e21f93e0a90b2d86ef3a6cf1b7d478a6d1122bf
HEAD_REF master
)

View File

@ -1,11 +1,10 @@
{
"name": "boost-container-hash",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost container_hash module",
"homepage": "https://github.com/boostorg/container_hash",
"dependencies": [
"boost-assert",
"boost-compatibility",
"boost-config",
"boost-core",
"boost-detail",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/container
REF boost-1.75.0
SHA512 b49609fcf1195f8661b1603d8328bd6009d2667c85dce5a4b3309582976c5e73ae21bc64a58100a9a7ef8fa10bc18075bb0c06f0e56cc16c50cda8b31cea26dc
REF boost-1.76.0
SHA512 5e73508ea1bb67ccbb83785c1f7db4a92d0cf9435a6383394dd1aecd83f88697a16b054c762bdd4d06c3ec92629d1f4b89cf32d2fafefa0a0702318bc01d5dd4
HEAD_REF master
)

View File

@ -1,7 +1,6 @@
{
"name": "boost-container",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost container module",
"homepage": "https://github.com/boostorg/container",
"dependencies": [
@ -11,9 +10,8 @@
"host": true
},
"boost-config",
"boost-container-hash",
"boost-core",
"boost-integer",
"boost-detail",
"boost-intrusive",
{
"name": "boost-modular-build-helper",
@ -22,6 +20,7 @@
"boost-move",
"boost-static-assert",
"boost-type-traits",
"boost-vcpkg-helpers"
"boost-vcpkg-helpers",
"boost-winapi"
]
}

View File

@ -1,45 +0,0 @@
From d52ce8ca89674e31e689a7af3b0fc9304018be5a Mon Sep 17 00:00:00 2001
From: Julien Schueller <schueller@phimeca.com>
Date: Thu, 20 Aug 2020 12:51:30 +0200
Subject: [PATCH] Revert "Fix exports for 32-bit GNU assembler files targeting
Windows."
This reverts 85783e8, as the wrong linker was used
Closes #136
---
src/asm/jump_i386_ms_pe_gas.asm | 2 +-
src/asm/make_i386_ms_pe_gas.asm | 2 +-
src/asm/ontop_i386_ms_pe_gas.asm | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/asm/jump_i386_ms_pe_gas.asm b/src/asm/jump_i386_ms_pe_gas.asm
index bf5c75a4..6eb45326 100644
--- a/src/asm/jump_i386_ms_pe_gas.asm
+++ b/src/asm/jump_i386_ms_pe_gas.asm
@@ -120,4 +120,4 @@ _jump_fcontext:
jmp *%ecx
.section .drectve
-.ascii " -export:\"_jump_fcontext\""
+.ascii " -export:\"jump_fcontext\""
diff --git a/src/asm/make_i386_ms_pe_gas.asm b/src/asm/make_i386_ms_pe_gas.asm
index 10277bb5..608ddf3a 100644
--- a/src/asm/make_i386_ms_pe_gas.asm
+++ b/src/asm/make_i386_ms_pe_gas.asm
@@ -150,4 +150,4 @@ finish:
.def __exit; .scl 2; .type 32; .endef /* standard C library function */
.section .drectve
-.ascii " -export:\"_make_fcontext\""
+.ascii " -export:\"make_fcontext\""
diff --git a/src/asm/ontop_i386_ms_pe_gas.asm b/src/asm/ontop_i386_ms_pe_gas.asm
index c23e18a2..abe9002a 100644
--- a/src/asm/ontop_i386_ms_pe_gas.asm
+++ b/src/asm/ontop_i386_ms_pe_gas.asm
@@ -128,4 +128,4 @@ _ontop_fcontext:
jmp *%ecx
.section .drectve
-.ascii " -export:\"_ontop_fcontext\""
+.ascii " -export:\"ontop_fcontext\""

View File

@ -3,10 +3,9 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/context
REF boost-1.75.0
SHA512 e1ba126cf1c785c38e196c1eddc347b5b06badf980d3b83d7b1c41d77ca060fbe18b34758d5beadcb53d54e13ce76775fcea24963f1754fab4e482da099cfade
REF boost-1.76.0
SHA512 f004e38d63b73e96492ab7267a2e4c3b9993eebc7df6e17fbc5daeb4feb002ee8be815ad8db26ec954471678eefd3609d12a81a34adab3115032209002b663eb
HEAD_REF master
PATCHES fix_exports_for_32bit_GNU_asm_for_windows.patch
)
file(READ "${SOURCE_PATH}/build/Jamfile.v2" _contents)

View File

@ -1,7 +1,6 @@
{
"name": "boost-context",
"version-string": "1.75.0",
"port-version": 4,
"version": "1.76.0",
"description": "Boost context module",
"homepage": "https://github.com/boostorg/context",
"supports": "!uwp & !emscripten",
@ -14,7 +13,6 @@
"boost-config",
"boost-core",
"boost-detail",
"boost-integer",
{
"name": "boost-modular-build-helper",
"host": true

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/contract
REF boost-1.75.0
SHA512 6dc5bad8e9d54c9a33f68da89956fbcf89af51bedbd4b8c539cff23d59e14ed93f521f88d247b66816ed8bc4d13634d2573ff52e3e05356906e1141490615966
REF boost-1.76.0
SHA512 964290bd77ca345330e50ee76af6e976aba2190bf2186a5376f4fd4b581d2a62f4e5bf6d74938e36f9f06179471ba434721948e1190dd07e41b6b3b0deb9258f
HEAD_REF master
)

View File

@ -1,7 +1,6 @@
{
"name": "boost-contract",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost contract module",
"homepage": "https://github.com/boostorg/contract",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/conversion
REF boost-1.75.0
SHA512 0f9f1d7eb9a6b9cf69322aa5007c237cf4775a2778613b2f14da6be6158dad18dcf266ade7a9394a7ac9f85cc9e3b2d600f4a978f2139aa41cfee7f404a161ba
REF boost-1.76.0
SHA512 2f14ad44d8fc8645704c1f9aeca7a824747c35422ee795faedc6ae78341d28f38f7100b063107a25fc62cb84a5cdedbe4a6308607168196322cde4abb1453bdd
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-conversion",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost conversion module",
"homepage": "https://github.com/boostorg/conversion",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/convert
REF boost-1.75.0
SHA512 e977b0336ea5cc01d9597cd6b2a4ed814c8f84520837742fa40f671dfaa2f49df7f133464fc86819c837f32afcff15c66e399d9b77de020c245e223501399e7e
REF boost-1.76.0
SHA512 104a220d275b16654f53edcd7048ef78123b38ac820d7bb3d76a0493fc31714d55706a61d0a1f7097daa5190b27c666c22beb19024bb15c52a365cd0cfcfd603
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-convert",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost convert module",
"homepage": "https://github.com/boostorg/convert",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/core
REF boost-1.75.0
SHA512 316fb165037850b7c70d24d1c78ebd188613049d389cc2d59a1da4a3d130708ce945191e46a599452e9aa2bc224ac12fe23ad6f118e8335c474d4a202c6a8d6e
REF boost-1.76.0
SHA512 95fc5db2580ebd4d8de1a377c7b006e3f89e99c3613620334caa2747b82e28356bb8e023a79f53fca9425a6a9aa9af28b53eefc2cb7222f0f5c5447f448c0143
HEAD_REF master
)

View File

@ -1,10 +1,11 @@
{
"name": "boost-core",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost core module",
"homepage": "https://github.com/boostorg/core",
"dependencies": [
"boost-config",
"boost-static-assert",
"boost-vcpkg-helpers"
]
}

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/coroutine
REF boost-1.75.0
SHA512 0fe4181896b4cca48c8aced4fba47974a06547e5d7477284b7e6564171ab61ae0f2564b720e164a27b5c7cebeae911f8741732f9516d2bdb04c8dd3aff835051
REF boost-1.76.0
SHA512 9554ef6a3200b7bd79d6ca953af65ae229e2c8649b2f4e67f911d0844924856163e0eb88fdce03e2c1cb120737e1a9f6cb8bf326ae0b44f161aac213b11b1640
HEAD_REF master
)

View File

@ -1,7 +1,6 @@
{
"name": "boost-coroutine",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost coroutine module",
"homepage": "https://github.com/boostorg/coroutine",
"supports": "!arm & !uwp & !emscripten",
@ -19,7 +18,6 @@
"boost-core",
"boost-detail",
"boost-exception",
"boost-integer",
{
"name": "boost-modular-build-helper",
"host": true

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/coroutine2
REF boost-1.75.0
SHA512 76fb3edec0edc82b9aea20e8b3732a9848f5eab7851a3ff287d4b043c89a99ceb217b797630234131bb1c8163af799a48da25dbbb7ff9d276823186da41f3330
REF boost-1.76.0
SHA512 746f03de8f9b2108d95eca2d940462c16660db2021b0612966f0f3e46a5a0d16708a3ef19c605ee56574a5427a93d435597c7dc7a411c2ffbba117afd660b291
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-coroutine2",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost coroutine2 module",
"homepage": "https://github.com/boostorg/coroutine2",
"supports": "!emscripten",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/crc
REF boost-1.75.0
SHA512 500ee5b9b91d45dfb00486905e0953e88be5a64f7c1d256c1bd5af0497a1ff02f6c64c22b07a31c2331480bf1b3d6956ca79dabc2183110662b271b76a8541f8
REF boost-1.76.0
SHA512 714041c7525dff54ca47d61482d691a06fbb8bf65c93cf87a34f522798657d2d4a01633c2d23c9688626b13e37e4f9f18ab66dccf1499518ba9927499f59e8b2
HEAD_REF master
)

View File

@ -1,11 +1,10 @@
{
"name": "boost-crc",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost crc module",
"homepage": "https://github.com/boostorg/crc",
"dependencies": [
"boost-array",
"boost-compatibility",
"boost-config",
"boost-integer",
"boost-type-traits",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/date_time
REF boost-1.75.0
SHA512 9500e4db431c7a805d6a1acdd3c71c464aed2ad4c42fe6f86fea05f1144b4243fc5fab90c79e41d4723323f5efe747b48c2edceb43e101c00a5117a5c0f5ad09
REF boost-1.76.0
SHA512 f3d2f78e595762b9d31241d3df3d89a54520557d9cbea945c85a0604ad4a1499382dcb7e55e2c33e45908cbca71d9eb36c9bf72ce1392b7dc24ee34e3b18ba02
HEAD_REF master
)

View File

@ -1,7 +1,6 @@
{
"name": "boost-date-time",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost date_time module",
"homepage": "https://github.com/boostorg/date_time",
"dependencies": [
@ -11,11 +10,9 @@
"name": "boost-build",
"host": true
},
"boost-compatibility",
"boost-config",
"boost-core",
"boost-detail",
"boost-integer",
"boost-io",
"boost-lexical-cast",
"boost-math",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/detail
REF boost-1.75.0
SHA512 69950608f8c1a923fdad229b479230c2e2e63bddb813b0621ae196afed2a79edf35676ef6e63f13b2fb85b39d5354139b96fdf0a67092d9850d4c2025880a91c
REF boost-1.76.0
SHA512 c1958a1ef6ab2fd9fbf2a16d6a0a4a8e49237e66b36c1f8f515d4c84386c1e98bac6d519f1395628441b9a7cdf01b479ebd28dd203835992e99f614dee5b609b
HEAD_REF master
)

View File

@ -1,10 +1,9 @@
{
"name": "boost-detail",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost detail module",
"homepage": "https://github.com/boostorg/detail",
"dependencies": [
"boost-compatibility",
"boost-config",
"boost-preprocessor",
"boost-vcpkg-helpers"

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/dll
REF boost-1.75.0
SHA512 ae9490fb8fdcad0f350d2e3fa99eae4c72d890503b64f7bf1a2a2fad18babe27c18ddfc5fb0075a3d101ddbc6791df5bb0eaf295d6cc59ea9dcec11ab9fde11b
REF boost-1.76.0
SHA512 df41f44a89d1f661b87f1863b0dc551a44040ccd002c9eab6728dc4ad4cc789853ab29c04ce6b17f0d94303cbd9f06ba53521c54f7ec614a061e2cb02db1462a
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-dll",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost dll module",
"homepage": "https://github.com/boostorg/dll",
"dependencies": [
@ -12,7 +12,6 @@
"platform": "!uwp"
},
"boost-function",
"boost-integer",
"boost-move",
"boost-predef",
"boost-smart-ptr",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/dynamic_bitset
REF boost-1.75.0
SHA512 6612007e0c344ef6ec9ff502922e43aba9422c6f80e50830be9f02817310df4424a6b8b15d70088491e1d6b0b4a5ede5c69150b1833afcbb72c70e04274e0050
REF boost-1.76.0
SHA512 5ca3153b18b2a57574c158e09af1bc3e79b769f73988de8d16fc16d4fddb375ce9aaebbee3204a8b5afaaafe6ca484d8a2d85162dec6a576c6bc52674c9d4a3f
HEAD_REF master
)

View File

@ -1,10 +1,18 @@
{
"name": "boost-dynamic-bitset",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost dynamic_bitset module",
"homepage": "https://github.com/boostorg/dynamic_bitset",
"dependencies": [
"boost-assert",
"boost-config",
"boost-core",
"boost-detail",
"boost-functional",
"boost-integer",
"boost-move",
"boost-static-assert",
"boost-throw-exception",
"boost-vcpkg-helpers"
]
}

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/endian
REF boost-1.75.0
SHA512 cd8ba3b22303424b848e2c985cd3e1da632ce299bff1e0fa7ff42539a077707cf50389505786c7418b6b6786c545728583baeaba8a65ead37c8c595457e64458
REF boost-1.76.0
SHA512 8075e7127872d134954708287aef372f872937ecec50db91fd78cc9de33056ba732519a8f7f76ce9bbcfbec0894416b3f3738259ba93ad2cc47702e58366516f
HEAD_REF master
)

View File

@ -1,12 +1,11 @@
{
"name": "boost-endian",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost endian module",
"homepage": "https://github.com/boostorg/endian",
"dependencies": [
"boost-config",
"boost-core",
"boost-integer",
"boost-static-assert",
"boost-type-traits",
"boost-vcpkg-helpers"

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/exception
REF boost-1.75.0
SHA512 fe7c62f3970b7041ac94922105305696374fbee59f8cfe3a48035f6487e616f430a1a577bfad997e2be34dc50393b9301726ca27612689f9275b64633c3fab1e
REF boost-1.76.0
SHA512 e77b6c6088ad7a5443b635d2336605eb5c04fa97849fae7150df2b2521fe47916bf5c17fead55eefa3aa278eb826ca22058c4145d01e09ccc41c0a7ccf961506
HEAD_REF master
)

View File

@ -1,7 +1,6 @@
{
"name": "boost-exception",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost exception module",
"homepage": "https://github.com/boostorg/exception",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/fiber
REF boost-1.75.0
SHA512 8b6355aaf804bbf8c33d65e7cb8c5c0e26ca33af0f4da49369073b92ff2afe84c992adf204c1aeedb137daa7f544ed7b40550fca294ed2ba62c8a615b4e5f7da
REF boost-1.76.0
SHA512 b7994427313de7959144b929806a947fae20087c7215df25e2925dbd553e2aa88d8f1c39a70cbbde61f111c005cded7a664961bf633f0251be4b204e42f1fcbb
HEAD_REF master
)

View File

@ -1,7 +1,6 @@
{
"name": "boost-fiber",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost fiber module",
"homepage": "https://github.com/boostorg/fiber",
"supports": "!osx & !uwp & !arm & !emscripten",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/filesystem
REF boost-1.75.0
SHA512 e79008f39568eaa4763110e4c172b022220b0667d7f05c606daed92f6f5c3977f2478063b6b16db6517b3e33b2df8ec13f8f0ae134fb2020a93d64895170b08d
REF boost-1.76.0
SHA512 1df89b441c2528844218e447e420c7c9aea0d72f8563ff20f86acebbc7d0d69ed9661422b3625e51005b975d73d7fac3efb69692e21ee13dd92fc1855f119088
HEAD_REF master
)

View File

@ -1,7 +1,6 @@
{
"name": "boost-filesystem",
"version-string": "1.75.0",
"port-version": 1,
"version": "1.76.0",
"description": "Boost filesystem module",
"homepage": "https://github.com/boostorg/filesystem",
"supports": "!uwp",
@ -15,7 +14,6 @@
"boost-core",
"boost-detail",
"boost-functional",
"boost-integer",
"boost-io",
"boost-iterator",
{

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/flyweight
REF boost-1.75.0
SHA512 ab39e5c10f2e2ef75caefd7fa56f2cae013a3d45554e3e66466bf985ef56c942a69a4b5da98de415258119b420a7514fe9b28d1e62f8822eaeacdf4d15e25451
REF boost-1.76.0
SHA512 f772c0e7c3efd66c191383c6490ace32294b34f67af569c885abb375c2afdbfeb64de810b50096a902d90bc9f05bae19323a8ec9546f0cc3b9021cdbc497e97a
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-flyweight",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost flyweight module",
"homepage": "https://github.com/boostorg/flyweight",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/foreach
REF boost-1.75.0
SHA512 6e88997825127ed0876c3d496b108b4bb7cdfba0e37705288868491150ed455a52624bec49653d9ffc547d98288e1395fd9b95c09a31d763618c76184c9d4853
REF boost-1.76.0
SHA512 b2d82918147aa9e22fba6ad798479fc4fca6a437a73c005cde715c5d19adf7320f986637a270742783d0d40bcadb11ae1cc7abbec4358363496d08b8c8d908e0
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-foreach",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost foreach module",
"homepage": "https://github.com/boostorg/foreach",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/format
REF boost-1.75.0
SHA512 618ad8b4d7b2982973b21b69e4c8d9c982b56d775756b52399aea3dbdece718e6e77a202e8ecaeec5597a5781227893acc2da837a224ce89f439579d8395b05a
REF boost-1.76.0
SHA512 7f988f0a3bf2e483d09edc7eb698128286b5c19bb9c4e39e9947ec4d1457b5c3d0b6d7b6f656dd9a2f96e4d372745d62843cd2836b12b96624059576c1905e3b
HEAD_REF master
)

View File

@ -1,11 +1,10 @@
{
"name": "boost-format",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost format module",
"homepage": "https://github.com/boostorg/format",
"dependencies": [
"boost-assert",
"boost-compatibility",
"boost-config",
"boost-core",
"boost-detail",

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/function_types
REF boost-1.75.0
SHA512 990e67e874a7bf135d1a4c3ef4654a2a5e4879e8d21445c1fee56c37be76477ade7401bd4106b8bac07de54e1cf14a5a9ec643ff647c170877e1153a878ba762
REF boost-1.76.0
SHA512 d95ffacc507baf0bedb495f1ea7e0639a19db45b1d55f212dee1eea1e0a9de932e4b74da623200666eef5ead3aea60b66bf7f73cda845b95e54d26714dcdc2e6
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-function-types",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost function_types module",
"homepage": "https://github.com/boostorg/function_types",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/function
REF boost-1.75.0
SHA512 5e7753aa8857a032d77abdbeded9633b00df5cf93f79dd3f53e957db00fbbe3b6ee5fe9a01c3fc9830c159f0dd62aac1fbf062909e832c5fa7dabed003003822
REF boost-1.76.0
SHA512 d8ad636b47fc77208b3b438494c8bfc286938fd310e91adb9a55a099b552f70a86dfde263fcf100c77fe43b300050dd19c289802366beaa9bd36f38a8539b34e
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-function",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost function module",
"homepage": "https://github.com/boostorg/function",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/functional
REF boost-1.75.0
SHA512 f5f9b759b27c92b8b948c0043f83eaebef206e75430b85a4da27d2f643e15cf31c56ca06ad9b30b291d28fadcc93eabaa0b13277a3d14be0abe9eb5a07259393
REF boost-1.76.0
SHA512 9b63cdbba4a997c04a887775dd4d351eb3fce55ebc6f620865f88f696d969cc56d47675c21ed7a976f19b64eee4875b0e47dd0949e56a576f19fb1a6c59fe31a
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-functional",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost functional module",
"homepage": "https://github.com/boostorg/functional",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/fusion
REF boost-1.75.0
SHA512 13c0dcd2b0c9466f240843c5edaef7e292c118f26e598595b9fe30d3ae5952c0617b3c7786e93cf1589e419444d87f1bb2fa5254878c89e422497d86fb25428d
REF boost-1.76.0
SHA512 4e8244962d5f165de9953f7669248002d36c82c213ae3e6374c2b997a3a39f151cf1bee2a5e5e45ae06f9ee7eb0322aeeb0ef7e4215d0829e9aa94f9000ee4b9
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-fusion",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost fusion module",
"homepage": "https://github.com/boostorg/fusion",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/geometry
REF boost-1.75.0
SHA512 d5fb18363bb4a9e25079b36190b253e5134196ad8942e935c4be31a8495750343779115e83e9e6c787692ff22cf6c6b41f1263abcf49d2cbaf1e6e6328edff15
REF boost-1.76.0
SHA512 2ae1af6337cbb820cef2c34c24b55fb032e4b57ead2a5fc5ee041a083f08e1c35c873e94a135d1c990809e1f160d19aedb31d8a1715f2c211361279fd9707236
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-geometry",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost geometry module",
"homepage": "https://github.com/boostorg/geometry",
"dependencies": [

View File

@ -3,8 +3,8 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/gil
REF boost-1.75.0
SHA512 aff1ea0e3455ce18faf691b02481e8c591e5cf0918981d1a3cf95971ea93f31ed72a51efbf7b8557ab51d186d4a7fbed03dbf996c7f2e0be28c5d5fc67277048
REF boost-1.76.0
SHA512 ba3504fb8af75406c1e41d5f17fe8a31629949902cee75719890250bdbe45ab170d36e66f76e20dfe8612fb1888f152158bc21f4488e85a5a25ebc3aad18dd4d
HEAD_REF master
)

View File

@ -1,6 +1,6 @@
{
"name": "boost-gil",
"version-string": "1.75.0",
"version": "1.76.0",
"description": "Boost gil module",
"homepage": "https://github.com/boostorg/gil",
"dependencies": [

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