diff options
| author | autoantwort <41973254+autoantwort@users.noreply.github.com> | 2021-07-07 21:31:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-07 12:31:06 -0700 |
| commit | 761c81d43335a5d5ccc2ec8ad90bd7e2cbba734e (patch) | |
| tree | fafc3ca4a857223a779e39343977b72bbff0c654 /ports/boost-context | |
| parent | a1225b69e037b2f3a8dbf4a40bc4d3c957e1f865 (diff) | |
| download | vcpkg-761c81d43335a5d5ccc2ec8ad90bd7e2cbba734e.tar.gz vcpkg-761c81d43335a5d5ccc2ec8ad90bd7e2cbba734e.zip | |
[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
Diffstat (limited to 'ports/boost-context')
| -rw-r--r-- | ports/boost-context/fix_exports_for_32bit_GNU_asm_for_windows.patch | 45 | ||||
| -rw-r--r-- | ports/boost-context/portfile.cmake | 5 | ||||
| -rw-r--r-- | ports/boost-context/vcpkg.json | 4 |
3 files changed, 3 insertions, 51 deletions
diff --git a/ports/boost-context/fix_exports_for_32bit_GNU_asm_for_windows.patch b/ports/boost-context/fix_exports_for_32bit_GNU_asm_for_windows.patch deleted file mode 100644 index 30d38af1e..000000000 --- a/ports/boost-context/fix_exports_for_32bit_GNU_asm_for_windows.patch +++ /dev/null @@ -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\"" diff --git a/ports/boost-context/portfile.cmake b/ports/boost-context/portfile.cmake index 8563ece83..df4874126 100644 --- a/ports/boost-context/portfile.cmake +++ b/ports/boost-context/portfile.cmake @@ -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)
diff --git a/ports/boost-context/vcpkg.json b/ports/boost-context/vcpkg.json index 22f652b55..0faddcdb5 100644 --- a/ports/boost-context/vcpkg.json +++ b/ports/boost-context/vcpkg.json @@ -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 |
