mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-18 16:53:02 +08:00
[daw-json-link,daw-header-libraries,daw-utf-range]Update many ports (#19755)
* update many ports * update version * Update ports/daw-header-libraries/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update ports/daw-json-link/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update ports/daw-utf-range/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update ports/daw-json-link/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update ports/daw-json-link/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update ports/daw-utf-range/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * update version Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
This commit is contained in:
parent
cda8ba09f3
commit
116ce79d70
@ -2,12 +2,12 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO beached/header_libraries
|
||||
REF b44178fed16111944d1338999d88b129797608ce
|
||||
SHA512 0b13bec450ba68e2b2ac2e76c9c529fa84a95df092b104660c88e9cfda91df9e5b70f0f7f6bcbb4f7ea05c1a5613734ceff8d84929b37b115c2bc86c232d9261
|
||||
REF bd372e81e04e256a6ba88217c4b99a3601fb5ef7 #v1.29.7
|
||||
SHA512 7aad017e70e79c3244011cbcb719afb385a639e1e4d37955be074bd1d2f501052dcae9347d094a8ef970f3762ebdfe33c90318b2e6891f4b354e823acfee7188
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(SOURCE_PATH ${SOURCE_PATH})
|
||||
vcpkg_cmake_configure(SOURCE_PATH "${SOURCE_PATH}")
|
||||
|
||||
vcpkg_cmake_install()
|
||||
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT})
|
||||
@ -15,4 +15,4 @@ vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT})
|
||||
# remove empty lib and debug/lib directories (and duplicate files from debug/include)
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug" "${CURRENT_PACKAGES_DIR}/lib")
|
||||
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
||||
file(INSTALL "${SOURCE_PATH}/LICENSE.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "daw-header-libraries",
|
||||
"version-semver": "1.21.1",
|
||||
"version-semver": "1.29.7",
|
||||
"description": "Set of header-only algorithms used in daw-utf8-range and daw-json-link.",
|
||||
"homepage": "https://github.com/beached/header_libraries",
|
||||
"dependencies": [
|
||||
|
@ -2,15 +2,15 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO beached/daw_json_link
|
||||
REF d8cb3a25a545b27b6ab5e68f4480b92ad0dc78fe
|
||||
SHA512 19f486c6782f6134db0f7c8a1a4031b69aeae7f64846f186bccfa37927c8a688545fe5825de841e5ec5408267922b0334db3727d00fcb96b1a36eee81a05eae9
|
||||
REF 828565f48bd077e776fcef322457186d8f01e7eb #v2.10.2
|
||||
SHA512 8c870d778c9abb295d323ae913d9e2bb0255f176c7e4f1d8cdf424af9bbe4c5eb650436065bb47e3e8745ff1c12234959526c8dcdf2c169ab55af4b150e6b477
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
OPTIONS
|
||||
-DDAW_USE_PACKAGE_MANAGEMENT=ON
|
||||
-DDAW_USE_PACKAGE_MANAGEMENT=ON
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
@ -21,13 +21,13 @@ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug" "${CURRENT_PACKAGES_DIR}/lib
|
||||
|
||||
# Append the json-link and dragonbox license information into a single
|
||||
# copyright file (they are both Boost v1.0 but it is good to be clear).
|
||||
file(APPEND ${SOURCE_PATH}/copyright [=[+----------------------------------------------------------------------------+
|
||||
file(APPEND "${SOURCE_PATH}/copyright" [=[+----------------------------------------------------------------------------+
|
||||
| json-link copywrite |
|
||||
+----------------------------------------------------------------------------+
|
||||
]=])
|
||||
file(READ ${SOURCE_PATH}/LICENSE json_link_copywrite)
|
||||
file(APPEND ${SOURCE_PATH}/copyright ${json_link_copywrite})
|
||||
file(APPEND ${SOURCE_PATH}/copyright [=[
|
||||
file(READ "${SOURCE_PATH}/LICENSE" json_link_copywrite)
|
||||
file(APPEND "${SOURCE_PATH}/copyright" ${json_link_copywrite})
|
||||
file(APPEND "${SOURCE_PATH}/copyright" [=[
|
||||
|
||||
|
||||
+----------------------------------------------------------------------------+
|
||||
@ -35,6 +35,6 @@ file(APPEND ${SOURCE_PATH}/copyright [=[
|
||||
+----------------------------------------------------------------------------+
|
||||
]=])
|
||||
|
||||
file(READ ${SOURCE_PATH}/LICENSE_Dragonbox dragonbox_copywrite)
|
||||
file(APPEND ${SOURCE_PATH}/copyright ${dragonbox_copywrite})
|
||||
file(INSTALL ${SOURCE_PATH}/copyright DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
||||
file(READ "${SOURCE_PATH}/LICENSE_Dragonbox" dragonbox_copywrite)
|
||||
file(APPEND "${SOURCE_PATH}/copyright" ${dragonbox_copywrite})
|
||||
file(INSTALL "${SOURCE_PATH}/copyright" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "daw-json-link",
|
||||
"version-semver": "2.9.11",
|
||||
"version-semver": "2.10.2",
|
||||
"description": "Perhaps the fastest JSON deserializer/serializer posssible or at least close to it.",
|
||||
"homepage": "https://github.com/beached/daw_json_link",
|
||||
"dependencies": [
|
||||
|
@ -2,16 +2,15 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO beached/utf_range
|
||||
REF b20d4037db30f69ef73daa4428a631f95e0bbb10
|
||||
SHA512 4f9d4b4831c4bd6dc560830077965ae5b3351dc7695d0523262bc6229c8d7623e03338be772337f89084038d7039b4a0b41ef8de2ef98eb880f85ca5e01d5838
|
||||
REF cd45b91a1530a68ce019b876a32b1694b4031613 #v2.2.0
|
||||
SHA512 21943b488b4efb8696bfe95f80c8043beed8f5f3cc9a34cfb95d34186d6a0ac2354943ebfd767bd6df42837c29e3c467a107d2f8556a7f719833d43f566afa40
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH
|
||||
${SOURCE_PATH}
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
OPTIONS
|
||||
-DDAW_USE_PACKAGE_MANAGEMENT=ON
|
||||
-DDAW_USE_PACKAGE_MANAGEMENT=ON
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
@ -20,4 +19,4 @@ vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT})
|
||||
# remove empty lib and debug/lib directories (and duplicate files from debug/include)
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug" "${CURRENT_PACKAGES_DIR}/lib")
|
||||
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
||||
file(INSTALL "${SOURCE_PATH}/LICENSE.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "daw-utf-range",
|
||||
"version-semver": "2.1.0",
|
||||
"version-semver": "2.2.0",
|
||||
"description": "Header-only utf8 string range used by daw-json-link. Includes a constexpr/noexcept modified version of utfcpp.",
|
||||
"homepage": "https://github.com/beached/header_libraries",
|
||||
"dependencies": [
|
||||
|
@ -1641,15 +1641,15 @@
|
||||
"port-version": 1
|
||||
},
|
||||
"daw-header-libraries": {
|
||||
"baseline": "1.21.1",
|
||||
"baseline": "1.29.7",
|
||||
"port-version": 0
|
||||
},
|
||||
"daw-json-link": {
|
||||
"baseline": "2.9.11",
|
||||
"baseline": "2.10.2",
|
||||
"port-version": 0
|
||||
},
|
||||
"daw-utf-range": {
|
||||
"baseline": "2.1.0",
|
||||
"baseline": "2.2.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"dbg-macro": {
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "29ed87ad6aee595ac4a0972c09a1ddf34d13a857",
|
||||
"version-semver": "1.29.7",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "6687948f2f2f4c3ba578a8ac41624c58a541f1a2",
|
||||
"version-semver": "1.21.1",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "1c7cf1d126f7f7c1bb3759ff5bcf30c585b90d94",
|
||||
"version-semver": "2.10.2",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "04d0df53fc3b69309aa10f53cc92f0933e8139b8",
|
||||
"version-semver": "2.9.11",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "aae578a84f804d65b63483335d1b74325906cb01",
|
||||
"version-semver": "2.2.0",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "e1c08fdf12013384e9a86e5233245321fea58793",
|
||||
"version-semver": "2.1.0",
|
||||
|
Loading…
Reference in New Issue
Block a user