mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-19 09:45:36 +08:00
[buck-yeh-bux] Upgrade to 1.6.5 (#25072)
* [bux] Add new port * Corrections according to Create Pull Request suggested questions * SHA512 * Mark fails into .\scripts\ci.baseline.txt * Mark fails into .\scripts\ci.baseline.txt * No need of "port-version": 1 in vcpkg.json * Update version database * Update ports/bux/portfile.cmake Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * Update ports/bux/portfile.cmake Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * Update ports/bux/portfile.cmake Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * Update ports/bux/vcpkg.json Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * Update bux.json * Update ports/bux/vcpkg.json * update version * Update scripts/ci.baseline.txt Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * update bux support * update version * update version * Rename bux to buck-yeh-bux * Update version database * [buck-yeh-bux] upgrade to v1.5.0 1. [New] `bux::C_ParaLog` is ready for a variety of parallel logging configurations, filtered or unfiltered. 2. [New] Necessary helper classes for implementation _s.t_ logger users no longer need to declare child source instances explicitly. 3. [New] Add methods to `ParaLog.h` & `SyncLog.h` to support testability. 4. [New] Add unit test cases to `ParaLog.h` & `SyncLog.h` (test_paralog & test_logger) 5. [New] Update what are found in `test/` to `test/archlinux/aur_poc/` 6. [Bug] `std::uniform_int_distribution<unsigned char>` no longer allowed. 7. [Change] `CUR_FUNC_` for Windows (MSVC) 8. [Change] `tbb` is no longer implicitly needed by C++ standard library. 9. [Change] `smoke_filtlog.cpp` verifies 2-level log filters ok. * Missing comma in versions/b-/buck-yeh-bux.json * buck-yeh-bux 1.6.0 * Corrections made according to NancyLi1013's requests in PR #20813 * Fix SHA key in versions/b-/buck-yeh-bux.json * Update to buxk-yeh-bux v1.6.2 * [buck-yeh-bux-mariadb-client] The first release * Add dependency to libmariadb * Inccorect git-tree value in versions/b-/buck-yeh-bux-mariadb-client.json * linux build is enabled * [buck-yeh-bux] Upgrade to 1.6.3 to allow u64-linux * linux build is disabled again for not recognizing C++20 header <concpts> yet * Mark vcpkg.json to support Linux but ci.baseline.txt to fail the CI build * Repair buck-buck-yeh-bux in version database. * [buck-yeh-bux] Upgrade to 1.6.5 * [buck-yeh-bux] Upgrade to 1.6.5 * Add "license" field * Correction nade by `./vcpkg format-manifest ports/buck-yeh-bux/vcpkg.json` * Update according to `git rev-parse HEAD:ports/buck-yeh-bux` Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> Co-authored-by: Jonliu1993 <13720414433@163.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
This commit is contained in:
parent
faed44dfa0
commit
67c2bdcaa4
@ -1,15 +0,0 @@
|
||||
diff --git a/src/XException.cpp b/src/XException.cpp
|
||||
index 6a66347..53a0087 100644
|
||||
--- a/src/XException.cpp
|
||||
+++ b/src/XException.cpp
|
||||
@@ -49,8 +49,8 @@ LONG WINAPI usrSEH(_EXCEPTION_POINTERS *pInfo)
|
||||
RUNTIME_ERROR("code 0x{:x}, flags 0x{:x}, extra 0x{:x}, ip 0x{:x}, arg#{:x}",
|
||||
er->ExceptionCode,
|
||||
er->ExceptionFlags,
|
||||
- static_cast<void*>(er->ExceptionRecord),
|
||||
- static_cast<void*>(er->ExceptionAddress),
|
||||
+ (size_t)static_cast<void*>(er->ExceptionRecord),
|
||||
+ (size_t)static_cast<void*>(er->ExceptionAddress),
|
||||
er->NumberParameters);
|
||||
}
|
||||
return EXCEPTION_CONTINUE_SEARCH;
|
@ -1,10 +1,9 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO buck-yeh/bux
|
||||
REF 8788509f0281e9a2af34c0399a45a5c9e66a4664 # v1.6.3
|
||||
SHA512 a7045a93d91e497ca2b60965bb2f098eae714d00feef0d252747178739cdd981f44cb8983278c679761f61e037da05889f22fa161d26fca05af511fc56c1ac8f
|
||||
REF b125e31341660ea76ca51cc5013e52d8d34a1f27 # v1.6.5
|
||||
SHA512 c37fea47076a192161aacacf8694c5b6d487a1c2ebe1fa06acdd9948e42e1b1440d83ebe38f4ae3b86c90cb1aba76f7254cd434ea85e24484a9dacb6944511a9
|
||||
HEAD_REF main
|
||||
PATCHES fix-errorC7595.patch
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
|
@ -1,9 +1,9 @@
|
||||
{
|
||||
"name": "buck-yeh-bux",
|
||||
"version": "1.6.3",
|
||||
"port-version": 1,
|
||||
"version": "1.6.5",
|
||||
"description": "A supplemental C++ library with functionalities not directly supported from Modern C++ standard.",
|
||||
"homepage": "https://github.com/buck-yeh/bux",
|
||||
"license": "MIT",
|
||||
"supports": "!(arm | uwp | osx)",
|
||||
"dependencies": [
|
||||
"fmt",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "1fd8af12a04b806faa041b8631ac34dc8c535b41",
|
||||
"version": "1.6.5",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "54886a840d4c55d27047321af6de1a5a01ed888e",
|
||||
"version": "1.6.3",
|
||||
|
@ -1177,8 +1177,8 @@
|
||||
"port-version": 0
|
||||
},
|
||||
"buck-yeh-bux": {
|
||||
"baseline": "1.6.3",
|
||||
"port-version": 1
|
||||
"baseline": "1.6.5",
|
||||
"port-version": 0
|
||||
},
|
||||
"buck-yeh-bux-mariadb-client": {
|
||||
"baseline": "1.0.1",
|
||||
|
Loading…
Reference in New Issue
Block a user