diff options
| author | Niall Douglas <s_github@nedprod.com> | 2021-04-23 21:27:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-23 13:27:19 -0700 |
| commit | 03d35b030343934015900997cf452c8d71393246 (patch) | |
| tree | c77bdd2d1aabab584501170df8eafc499adbe292 /ports | |
| parent | 9cdfdb60412d4c6c03478d5b1cda3150a04fd81a (diff) | |
| download | vcpkg-03d35b030343934015900997cf452c8d71393246.tar.gz vcpkg-03d35b030343934015900997cf452c8d71393246.zip | |
[Outcome] update to v2.2.0 release. (#17362)
* Outcome v2.2.0 release.
* LLFIO matching updated Outcome and its dependencies at https://github.com/microsoft/vcpkg/pull/17362.
Also update usage docs, because a user complained about their incompleteness.
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/llfio/CONTROL | 2 | ||||
| -rw-r--r-- | ports/llfio/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/llfio/usage-error-code-dynamic | 1 | ||||
| -rw-r--r-- | ports/llfio/usage-error-code-static | 1 | ||||
| -rw-r--r-- | ports/llfio/usage-status-code-dynamic | 1 | ||||
| -rw-r--r-- | ports/llfio/usage-status-code-static | 1 | ||||
| -rw-r--r-- | ports/ned14-internal-quickcpplib/CONTROL | 2 | ||||
| -rw-r--r-- | ports/ned14-internal-quickcpplib/sha_manifest.cmake | 4 | ||||
| -rw-r--r-- | ports/outcome/CONTROL | 2 | ||||
| -rw-r--r-- | ports/outcome/portfile.cmake | 4 |
10 files changed, 13 insertions, 9 deletions
diff --git a/ports/llfio/CONTROL b/ports/llfio/CONTROL index ef0cffc23..4779cf045 100644 --- a/ports/llfio/CONTROL +++ b/ports/llfio/CONTROL @@ -1,5 +1,5 @@ Source: llfio -Version: 2.0-a74411ed +Version: 2.0-20210420 Homepage: https://github.com/ned14/llfio Description: P1031 low level file i/o and filesystem library for the C++ standard Build-Depends: outcome diff --git a/ports/llfio/portfile.cmake b/ports/llfio/portfile.cmake index 401f0b3f3..03844f75e 100644 --- a/ports/llfio/portfile.cmake +++ b/ports/llfio/portfile.cmake @@ -6,8 +6,8 @@ LLFIO depends on Outcome which depends on QuickCppLib which uses the vcpkg versi vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO ned14/llfio - REF a74411eddb6401ab884c5f92cccc24b9a64a9e6f - SHA512 e0f8b030ac995c24135aae89450f05ad75e5fed10caec254b327f1fc0d4c23eaeb53b7859e5e5b4731ffeace9fdfc75cd04a66025243e7f35c7dea37dc0d1b6c + REF 565f27555d13ce2a37346d838f32e03e1972aac1 + SHA512 386007d03c3923e79bb1b80b1b750ae738bbc22aa5124c606cc5e7818f57a4b819bb920257c9aca39765a4a8b93d2528b4a956c53b96bd8db3b8d4a54a851e41 HEAD_REF develop ) diff --git a/ports/llfio/usage-error-code-dynamic b/ports/llfio/usage-error-code-dynamic index ed8ab0310..21b2aff44 100644 --- a/ports/llfio/usage-error-code-dynamic +++ b/ports/llfio/usage-error-code-dynamic @@ -3,6 +3,7 @@ The package llfio provides two CMake targets: find_package(llfio CONFIG REQUIRED)
- If you want the header-only form of LLFIO:
+ find_package(Threads REQUIRED)
target_link_libraries(main PUBLIC llfio::hl)
- If you want the shared library form of LLFIO with shared NT kernel error code category:
diff --git a/ports/llfio/usage-error-code-static b/ports/llfio/usage-error-code-static index 5ddc1c5b4..935e91039 100644 --- a/ports/llfio/usage-error-code-static +++ b/ports/llfio/usage-error-code-static @@ -3,6 +3,7 @@ The package llfio provides two CMake targets: find_package(llfio CONFIG REQUIRED)
- If you want the header-only form of LLFIO:
+ find_package(Threads REQUIRED)
target_link_libraries(main PUBLIC llfio::hl)
- If you want the static library form of LLFIO with static NT kernel error code category:
diff --git a/ports/llfio/usage-status-code-dynamic b/ports/llfio/usage-status-code-dynamic index a940705d7..7d1b8fb0c 100644 --- a/ports/llfio/usage-status-code-dynamic +++ b/ports/llfio/usage-status-code-dynamic @@ -3,6 +3,7 @@ The package llfio provides two CMake targets: find_package(llfio CONFIG REQUIRED)
- If you want the header-only form of LLFIO:
+ find_package(Threads REQUIRED)
target_link_libraries(main PUBLIC llfio::hl)
- If you want the shared library form of LLFIO:
diff --git a/ports/llfio/usage-status-code-static b/ports/llfio/usage-status-code-static index 6bedd7114..b987f6f6e 100644 --- a/ports/llfio/usage-status-code-static +++ b/ports/llfio/usage-status-code-static @@ -3,6 +3,7 @@ The package llfio provides two CMake targets: find_package(llfio CONFIG REQUIRED)
- If you want the header-only form of LLFIO:
+ find_package(Threads REQUIRED)
target_link_libraries(main PUBLIC llfio::hl)
- If you want the static library form of LLFIO:
diff --git a/ports/ned14-internal-quickcpplib/CONTROL b/ports/ned14-internal-quickcpplib/CONTROL index ee47c924e..907c6584a 100644 --- a/ports/ned14-internal-quickcpplib/CONTROL +++ b/ports/ned14-internal-quickcpplib/CONTROL @@ -1,5 +1,5 @@ Source: ned14-internal-quickcpplib -Version: 0.0.0-24d92c71 +Version: 0.0.0-7cb75d4e Homepage: https://github.com/ned14/quickcpplib Description: NOT FOR EXTERNAL CONSUMPTION, a set of internal scripts used by ned14's libraries. Build-Depends: byte-lite, gsl-lite diff --git a/ports/ned14-internal-quickcpplib/sha_manifest.cmake b/ports/ned14-internal-quickcpplib/sha_manifest.cmake index 72a1188df..383b8b853 100644 --- a/ports/ned14-internal-quickcpplib/sha_manifest.cmake +++ b/ports/ned14-internal-quickcpplib/sha_manifest.cmake @@ -1,5 +1,5 @@ -set(QUICKCPPLIB_REF 24d92c71ef5d2200f7e42bc47e6dd59ad6d99fe3)
-set(QUICKCPPLIB_SHA512 9e39237833dea8288fbc5fda4189d971dff76284e3f352c7a0762e71a4bf311f4550fefd0f8926b6d971ca1c62acc3d055af233912de0adb0c6821995b6ce7e7)
+set(QUICKCPPLIB_REF 7cb75d4e190fec886a655fd50d3fe80d933e0efb)
+set(QUICKCPPLIB_SHA512 891b1620485119545f28528d3407d5d896e0da7530224a684cd7201581ea45871761bef8b9e3914fd2a104ecac3d35c50a049893ef32b1ef95d871e63371d6f3)
set(OPTIONAL_REF 2b43315458a99fc5de1da6e7bc0ddd364b26d643)
set(OPTIONAL_SHA512 1952386cd3c7b963861f9634055e1baa4181d398d6f1b068a8a3f411368432bdcd42e47aadfa856584ed9a7c724a1c83369243ccb653e650af5c9155b42a84f4)
diff --git a/ports/outcome/CONTROL b/ports/outcome/CONTROL index 947330ee0..08e902468 100644 --- a/ports/outcome/CONTROL +++ b/ports/outcome/CONTROL @@ -1,5 +1,5 @@ Source: outcome -Version: 2.2.0-b9e664fb +Version: 2.2.0-release Homepage: https://github.com/ned14/outcome Description: Provides very lightweight outcome<T> and result<T> (non-Boost edition) Build-Depends: ned14-internal-quickcpplib, status-code diff --git a/ports/outcome/portfile.cmake b/ports/outcome/portfile.cmake index 77275f1d5..79dc21b8e 100644 --- a/ports/outcome/portfile.cmake +++ b/ports/outcome/portfile.cmake @@ -22,8 +22,8 @@ Outcome depends on QuickCppLib which uses the vcpkg versions of gsl-lite and byt vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO ned14/outcome - REF all_tests_passed_b9e664fbf87a4122731f7f19590abad24f1448b8 - SHA512 50666de7c6fed8260780a3bbd97eb8c8a27cf02541f15a19c316ddef30eafce155817ea8d77efee0180dbd07ad5da06a888275c324a554e25d5ce6bb80666071 + REF v2.2.0 + SHA512 2391667304c0160b7c753df157c948fa7d7f362c9f7f238fc53b0dcbdabe23f6d481909bb8e267c749af8c5c1a1c5083e91c12365fe1beb9bc70e6287f526879 HEAD_REF develop PATCHES outcome-prune-sources.patch |
