diff options
| author | Luca Schlecker <luca.schlecker@hotmail.com> | 2021-08-28 01:55:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-27 16:55:40 -0700 |
| commit | b590d6abb149230be172b9c7a1148e720dab78af (patch) | |
| tree | fa98a9d3d9442772084558537f9cfca7bab79680 | |
| parent | 3582b8a4f0a4b8b145ac3359e98b47624a15f8f5 (diff) | |
| download | vcpkg-b590d6abb149230be172b9c7a1148e720dab78af.tar.gz vcpkg-b590d6abb149230be172b9c7a1148e720dab78af.zip | |
[crow] fix sha-512 sum (#19637)
Signed-off-by: Luca Schlecker <luca.schlecker@hotmail.com>
| -rw-r--r-- | ports/crow/portfile.cmake | 7 | ||||
| -rw-r--r-- | ports/crow/vcpkg.json | 1 | ||||
| -rw-r--r-- | versions/baseline.json | 2 | ||||
| -rw-r--r-- | versions/c-/crow.json | 5 |
4 files changed, 11 insertions, 4 deletions
diff --git a/ports/crow/portfile.cmake b/ports/crow/portfile.cmake index dd8f45f36..ea9d0f80b 100644 --- a/ports/crow/portfile.cmake +++ b/ports/crow/portfile.cmake @@ -2,9 +2,10 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO CrowCpp/crow REF 7e47d4c7ee548c5fd954efd82cfeed330a7823ea #0.3+2 - SHA512 804bafe6085270470487ea304f9b1aa812f9ee29df67569fd7133ea70bc73b61dca23d6955c1fd9cf1fa7c8909d34b447437ff05844ac2ad5bb01318357dc2c0 + SHA512 47822ccdfb259a65bde8fed0c29bb8e58bc2f29896ff186c03098eb897985307e7477aa03808a42db01df245054411f05f95c6d9ae6477d75dd94399af3bb130 + FILE_DISAMBIGUATOR 1 HEAD_REF master ) -file(INSTALL ${SOURCE_PATH}/include/ DESTINATION ${CURRENT_PACKAGES_DIR}/include) -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(INSTALL "${SOURCE_PATH}/include/" DESTINATION "${CURRENT_PACKAGES_DIR}/include") +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/crow/vcpkg.json b/ports/crow/vcpkg.json index 0cf1b42f1..0e75a7943 100644 --- a/ports/crow/vcpkg.json +++ b/ports/crow/vcpkg.json @@ -1,6 +1,7 @@ { "name": "crow", "version": "0.3.2", + "port-version": 1, "description": "Very fast and easy to use C++ micro web framework", "homepage": "https://github.com/CrowCpp/crow" } diff --git a/versions/baseline.json b/versions/baseline.json index 50aab092c..69c5da02e 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -1538,7 +1538,7 @@ }, "crow": { "baseline": "0.3.2", - "port-version": 0 + "port-version": 1 }, "cryptopp": { "baseline": "8.5.0", diff --git a/versions/c-/crow.json b/versions/c-/crow.json index 6bc84a213..1a27e804d 100644 --- a/versions/c-/crow.json +++ b/versions/c-/crow.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "d2719e110ecca722270c61d66f274dee1a1eb1e4", + "version": "0.3.2", + "port-version": 1 + }, + { "git-tree": "c0d5207375bcbf798d3478eef7e00ae5206e4b04", "version": "0.3.2", "port-version": 0 |
