From 139700ba657d4f01bc860a93a56d4ae8706b9443 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 04:10:17 +0300 Subject: [PATCH 01/22] [commandline] Add new port --- ports/commandline/add-install.patch | 9 +++++++++ ports/commandline/portfile.cmake | 26 ++++++++++++++++++++++++++ ports/commandline/vcpkg.json | 8 ++++++++ 3 files changed, 43 insertions(+) create mode 100644 ports/commandline/add-install.patch create mode 100644 ports/commandline/portfile.cmake create mode 100644 ports/commandline/vcpkg.json diff --git a/ports/commandline/add-install.patch b/ports/commandline/add-install.patch new file mode 100644 index 00000000000000..03c3f804dfaeb7 --- /dev/null +++ b/ports/commandline/add-install.patch @@ -0,0 +1,9 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index b4db57c..7ace55c 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -22,3 +22,4 @@ if(BUILD_EXAMPLES) + target_link_libraries(test commandline) + endif() + ++install(TARGETS commandline) diff --git a/ports/commandline/portfile.cmake b/ports/commandline/portfile.cmake new file mode 100644 index 00000000000000..fc8546375d2b8b --- /dev/null +++ b/ports/commandline/portfile.cmake @@ -0,0 +1,26 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO lionkor/commandline + REF 4a8000d6b767263a79c589fcc74099a4454e07a9 + SHA512 81ee2716b7048e51d26f75033be7a6d3a1aec9bfef833ad067112b26144023dfad8f5f8d145b4162dba2de3ad09de223dbe9143cf9e2f5f5102374d3412aebf7 + HEAD_REF master + PATCHES + add-install.patch +) + +vcpkg_configure_cmake( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + -DBUILD_EXAMPLES=OFF +) +vcpkg_build_cmake() +vcpkg_install_cmake() +vcpkg_copy_pdbs() + +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) + +# Handle header +file(INSTALL "${SOURCE_PATH}/commandline.h" DESTINATION ${CURRENT_PACKAGES_DIR}/include) + +# Handle copyright +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file diff --git a/ports/commandline/vcpkg.json b/ports/commandline/vcpkg.json new file mode 100644 index 00000000000000..93c33931f3f251 --- /dev/null +++ b/ports/commandline/vcpkg.json @@ -0,0 +1,8 @@ +{ + "name": "commandline", + "version-semver": "1.0.0", + "description": "A C++ commandline for use in servers and chat software. Provides very simple asynchronous input/output.", + "homepage": "https://github.com/lionkor/commandline/", + "license": "MIT", + "supports": "static" +} From 5402959d52c17397608d3727e654f3f53859ba10 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 04:16:38 +0300 Subject: [PATCH 02/22] Fix formating --- ports/commandline/vcpkg.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ports/commandline/vcpkg.json b/ports/commandline/vcpkg.json index 93c33931f3f251..52b5dd8f84fa69 100644 --- a/ports/commandline/vcpkg.json +++ b/ports/commandline/vcpkg.json @@ -1,8 +1,8 @@ -{ - "name": "commandline", - "version-semver": "1.0.0", - "description": "A C++ commandline for use in servers and chat software. Provides very simple asynchronous input/output.", - "homepage": "https://github.com/lionkor/commandline/", - "license": "MIT", - "supports": "static" -} +{ + "name": "commandline", + "version-semver": "1.0.0", + "description": "A C++ commandline for use in servers and chat software. Provides very simple asynchronous input/output.", + "homepage": "https://github.com/lionkor/commandline/", + "license": "MIT", + "supports": "static" +} From cb5e0f7157f5178b460617ede6714459b44547c8 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 04:17:59 +0300 Subject: [PATCH 03/22] Fix deps --- ports/commandline/portfile.cmake | 6 +++--- ports/commandline/vcpkg.json | 12 +++++++++++- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/ports/commandline/portfile.cmake b/ports/commandline/portfile.cmake index fc8546375d2b8b..b2aeeeaae83dc2 100644 --- a/ports/commandline/portfile.cmake +++ b/ports/commandline/portfile.cmake @@ -8,13 +8,13 @@ vcpkg_from_github( add-install.patch ) -vcpkg_configure_cmake( +vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DBUILD_EXAMPLES=OFF ) -vcpkg_build_cmake() -vcpkg_install_cmake() +vcpkg_cmake_build() +vcpkg_cmake_install() vcpkg_copy_pdbs() file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/commandline/vcpkg.json b/ports/commandline/vcpkg.json index 52b5dd8f84fa69..dff6324f3a4b40 100644 --- a/ports/commandline/vcpkg.json +++ b/ports/commandline/vcpkg.json @@ -4,5 +4,15 @@ "description": "A C++ commandline for use in servers and chat software. Provides very simple asynchronous input/output.", "homepage": "https://github.com/lionkor/commandline/", "license": "MIT", - "supports": "static" + "supports": "static", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] } From d3940047fa3d9c078ad5e5c53affba85b5ece84c Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 04:19:57 +0300 Subject: [PATCH 04/22] Update versions --- versions/baseline.json | 4 ++++ versions/c-/commandline.json | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 versions/c-/commandline.json diff --git a/versions/baseline.json b/versions/baseline.json index d87a108b82ff86..c82f668c461103 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -1472,6 +1472,10 @@ "baseline": "3.7", "port-version": 0 }, + "commandline": { + "baseline": "1.0.0", + "port-version": 0 + }, "comms": { "baseline": "3.4.0", "port-version": 1 diff --git a/versions/c-/commandline.json b/versions/c-/commandline.json new file mode 100644 index 00000000000000..59ffa20d5a4853 --- /dev/null +++ b/versions/c-/commandline.json @@ -0,0 +1,9 @@ +{ + "versions": [ + { + "git-tree": "58aa6f7b74d8b1a876f3a906b65a7f0b2421022c", + "version-semver": "1.0.0", + "port-version": 0 + } + ] +} From 90105357fde6bda45bc1179bc52b774a257cb031 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 04:30:51 +0300 Subject: [PATCH 05/22] Remove redudant build --- ports/commandline/portfile.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/ports/commandline/portfile.cmake b/ports/commandline/portfile.cmake index b2aeeeaae83dc2..10409c3e4c0ae8 100644 --- a/ports/commandline/portfile.cmake +++ b/ports/commandline/portfile.cmake @@ -13,7 +13,6 @@ vcpkg_cmake_configure( OPTIONS -DBUILD_EXAMPLES=OFF ) -vcpkg_cmake_build() vcpkg_cmake_install() vcpkg_copy_pdbs() From 417b76ba982c3d00a984a88623d4d9b01b992dee Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 04:32:27 +0300 Subject: [PATCH 06/22] Update commandline.json --- versions/c-/commandline.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/c-/commandline.json b/versions/c-/commandline.json index 59ffa20d5a4853..ba1c4d685e6ea0 100644 --- a/versions/c-/commandline.json +++ b/versions/c-/commandline.json @@ -1,7 +1,7 @@ { "versions": [ { - "git-tree": "58aa6f7b74d8b1a876f3a906b65a7f0b2421022c", + "git-tree": "0a624b93bb7e086e520b067dfa82a6c50916c2b4", "version-semver": "1.0.0", "port-version": 0 } From 26529e39afeb8b113caeae09e6501f2787365e9f Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 04:34:52 +0300 Subject: [PATCH 07/22] Update portfile.cmake --- ports/commandline/portfile.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/commandline/portfile.cmake b/ports/commandline/portfile.cmake index 10409c3e4c0ae8..202d88a60d82cf 100644 --- a/ports/commandline/portfile.cmake +++ b/ports/commandline/portfile.cmake @@ -22,4 +22,4 @@ file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share file(INSTALL "${SOURCE_PATH}/commandline.h" DESTINATION ${CURRENT_PACKAGES_DIR}/include) # Handle copyright -file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) From f0897921dc6fce21277d3c2351345f3df7feece1 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 04:35:56 +0300 Subject: [PATCH 08/22] Update commandline.json --- versions/c-/commandline.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/c-/commandline.json b/versions/c-/commandline.json index ba1c4d685e6ea0..376ffef2bdcde4 100644 --- a/versions/c-/commandline.json +++ b/versions/c-/commandline.json @@ -1,7 +1,7 @@ { "versions": [ { - "git-tree": "0a624b93bb7e086e520b067dfa82a6c50916c2b4", + "git-tree": "d768b284ac7cdf5d13b7f32a24217bfff2632332", "version-semver": "1.0.0", "port-version": 0 } From 5b0947ba2c4f992543a88bca1b8fcd727bf57f87 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 05:43:23 +0300 Subject: [PATCH 09/22] Ban osx --- ports/commandline/vcpkg.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/commandline/vcpkg.json b/ports/commandline/vcpkg.json index dff6324f3a4b40..2c14624096b6a4 100644 --- a/ports/commandline/vcpkg.json +++ b/ports/commandline/vcpkg.json @@ -4,7 +4,7 @@ "description": "A C++ commandline for use in servers and chat software. Provides very simple asynchronous input/output.", "homepage": "https://github.com/lionkor/commandline/", "license": "MIT", - "supports": "static", + "supports": "!osx & static", "dependencies": [ { "name": "vcpkg-cmake", From 4dcdd3af5bc3521a39a6f463256490d74338d591 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 05:44:36 +0300 Subject: [PATCH 10/22] Update commandline.json --- versions/c-/commandline.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/c-/commandline.json b/versions/c-/commandline.json index 376ffef2bdcde4..840bebe91ff547 100644 --- a/versions/c-/commandline.json +++ b/versions/c-/commandline.json @@ -1,7 +1,7 @@ { "versions": [ { - "git-tree": "d768b284ac7cdf5d13b7f32a24217bfff2632332", + "git-tree": "18e1e8483a0a5b81a25fd0efcc87403dcbf64432", "version-semver": "1.0.0", "port-version": 0 } From 67d921e6d68246f60806f0ff2d7d2d67d9eda4bc Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 09:18:55 +0300 Subject: [PATCH 11/22] Update ports/commandline/add-install.patch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> --- ports/commandline/add-install.patch | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ports/commandline/add-install.patch b/ports/commandline/add-install.patch index 03c3f804dfaeb7..412068cb185b33 100644 --- a/ports/commandline/add-install.patch +++ b/ports/commandline/add-install.patch @@ -6,4 +6,9 @@ index b4db57c..7ace55c 100644 target_link_libraries(test commandline) endif() -+install(TARGETS commandline) ++install( ++ TARGETS commandline ++ RUNTIME DESTINATION bin ++ LIBRARY DESTINATION lib ++ ARCHIVE DESTINATION lib ++) From 966f2730d441f1a01140032df8e03ed709d5bea3 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 09:19:07 +0300 Subject: [PATCH 12/22] Update ports/commandline/portfile.cmake MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> --- ports/commandline/portfile.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/ports/commandline/portfile.cmake b/ports/commandline/portfile.cmake index 202d88a60d82cf..bdf11a20718022 100644 --- a/ports/commandline/portfile.cmake +++ b/ports/commandline/portfile.cmake @@ -16,7 +16,6 @@ vcpkg_cmake_configure( vcpkg_cmake_install() vcpkg_copy_pdbs() -file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) # Handle header file(INSTALL "${SOURCE_PATH}/commandline.h" DESTINATION ${CURRENT_PACKAGES_DIR}/include) From c31ce8ed8081d24ccf60be9d29ae4d7de7031345 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 09:38:50 +0300 Subject: [PATCH 13/22] Fixes --- ports/commandline/add-install.patch | 10 +++------- ports/commandline/portfile.cmake | 6 +++--- ports/commandline/vcpkg.json | 2 +- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/ports/commandline/add-install.patch b/ports/commandline/add-install.patch index 412068cb185b33..5b794737336107 100644 --- a/ports/commandline/add-install.patch +++ b/ports/commandline/add-install.patch @@ -2,13 +2,9 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt index b4db57c..7ace55c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -22,3 +22,4 @@ if(BUILD_EXAMPLES) +@@ -22,3 +22,5 @@ if(BUILD_EXAMPLES) target_link_libraries(test commandline) endif() -+install( -+ TARGETS commandline -+ RUNTIME DESTINATION bin -+ LIBRARY DESTINATION lib -+ ARCHIVE DESTINATION lib -+) ++set_target_properties(commandline PROPERTIES PUBLIC_HEADER "commandline.h") ++install(TARGETS commandline RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib PUBLIC_HEADER DESTINATION include) diff --git a/ports/commandline/portfile.cmake b/ports/commandline/portfile.cmake index bdf11a20718022..cecb25de34f0ee 100644 --- a/ports/commandline/portfile.cmake +++ b/ports/commandline/portfile.cmake @@ -1,3 +1,5 @@ +vcpkg_check_linkage(ONLY_STATIC_LIBRARY) + vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO lionkor/commandline @@ -16,9 +18,7 @@ vcpkg_cmake_configure( vcpkg_cmake_install() vcpkg_copy_pdbs() - -# Handle header -file(INSTALL "${SOURCE_PATH}/commandline.h" DESTINATION ${CURRENT_PACKAGES_DIR}/include) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") # Handle copyright file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/commandline/vcpkg.json b/ports/commandline/vcpkg.json index 2c14624096b6a4..bbd0b2fc895eb2 100644 --- a/ports/commandline/vcpkg.json +++ b/ports/commandline/vcpkg.json @@ -4,7 +4,7 @@ "description": "A C++ commandline for use in servers and chat software. Provides very simple asynchronous input/output.", "homepage": "https://github.com/lionkor/commandline/", "license": "MIT", - "supports": "!osx & static", + "supports": "!osx", "dependencies": [ { "name": "vcpkg-cmake", From 28cfc9f0ec34463cde16d04aadb39ae2cb0df05a Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Thu, 10 Mar 2022 09:39:59 +0300 Subject: [PATCH 14/22] Update commandline.json --- versions/c-/commandline.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/c-/commandline.json b/versions/c-/commandline.json index 840bebe91ff547..53ca4d01586f5a 100644 --- a/versions/c-/commandline.json +++ b/versions/c-/commandline.json @@ -1,7 +1,7 @@ { "versions": [ { - "git-tree": "18e1e8483a0a5b81a25fd0efcc87403dcbf64432", + "git-tree": "9f58c58a32cd475edc281b14a9908c157e936767", "version-semver": "1.0.0", "port-version": 0 } From d2afeabd7370f5573c84b0611aa5823c8b7ff3e9 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Fri, 11 Mar 2022 04:36:05 +0300 Subject: [PATCH 15/22] Rename commandline.json to lionkor-commandline.json --- versions/c-/{commandline.json => lionkor-commandline.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename versions/c-/{commandline.json => lionkor-commandline.json} (100%) diff --git a/versions/c-/commandline.json b/versions/c-/lionkor-commandline.json similarity index 100% rename from versions/c-/commandline.json rename to versions/c-/lionkor-commandline.json From 3b7966185e132105637968e6d38057d27af9821c Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Fri, 11 Mar 2022 04:36:26 +0300 Subject: [PATCH 16/22] Update baseline.json --- versions/baseline.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/baseline.json b/versions/baseline.json index c82f668c461103..b64a7dbe7d326a 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -1472,7 +1472,7 @@ "baseline": "3.7", "port-version": 0 }, - "commandline": { + "lionkor-commandline": { "baseline": "1.0.0", "port-version": 0 }, From 07bacc86588496f990e334a82908f7827a93d5a3 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Fri, 11 Mar 2022 04:36:42 +0300 Subject: [PATCH 17/22] Update vcpkg.json --- ports/commandline/vcpkg.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/commandline/vcpkg.json b/ports/commandline/vcpkg.json index bbd0b2fc895eb2..0aaffc9833b4db 100644 --- a/ports/commandline/vcpkg.json +++ b/ports/commandline/vcpkg.json @@ -1,5 +1,5 @@ { - "name": "commandline", + "name": "lionkor-commandline", "version-semver": "1.0.0", "description": "A C++ commandline for use in servers and chat software. Provides very simple asynchronous input/output.", "homepage": "https://github.com/lionkor/commandline/", From 77dc1dfcee858c02be3eafdc73b233127c431a69 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Fri, 11 Mar 2022 04:37:03 +0300 Subject: [PATCH 18/22] Rename ports/commandline/vcpkg.json to ports/lionkor-commandline/vcpkg.json --- ports/{commandline => lionkor-commandline}/vcpkg.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename ports/{commandline => lionkor-commandline}/vcpkg.json (100%) diff --git a/ports/commandline/vcpkg.json b/ports/lionkor-commandline/vcpkg.json similarity index 100% rename from ports/commandline/vcpkg.json rename to ports/lionkor-commandline/vcpkg.json From 9a1d12e98250a5ba21f17a8cd188d0a1e12150ee Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Fri, 11 Mar 2022 04:37:41 +0300 Subject: [PATCH 19/22] Rename ports/commandline/portfile.cmake to ports/lionkor-commandline/portfile.cmake --- ports/{commandline => lionkor-commandline}/portfile.cmake | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename ports/{commandline => lionkor-commandline}/portfile.cmake (100%) diff --git a/ports/commandline/portfile.cmake b/ports/lionkor-commandline/portfile.cmake similarity index 100% rename from ports/commandline/portfile.cmake rename to ports/lionkor-commandline/portfile.cmake From 81a29a5522dfff4f1da166ced9074a81a53dfcd0 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Fri, 11 Mar 2022 04:38:26 +0300 Subject: [PATCH 20/22] Rename ports/commandline/add-install.patch to ports/lionkor-commandline/add-install.patch --- ports/{commandline => lionkor-commandline}/add-install.patch | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename ports/{commandline => lionkor-commandline}/add-install.patch (100%) diff --git a/ports/commandline/add-install.patch b/ports/lionkor-commandline/add-install.patch similarity index 100% rename from ports/commandline/add-install.patch rename to ports/lionkor-commandline/add-install.patch From 7e73ee91e7de4de3651f9ff3b640c2bd3d5074f2 Mon Sep 17 00:00:00 2001 From: Leonid Pospelov Date: Fri, 11 Mar 2022 04:59:52 +0300 Subject: [PATCH 21/22] Update baseline.json --- versions/baseline.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/versions/baseline.json b/versions/baseline.json index b64a7dbe7d326a..3f24ae2eb46f18 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -1472,10 +1472,6 @@ "baseline": "3.7", "port-version": 0 }, - "lionkor-commandline": { - "baseline": "1.0.0", - "port-version": 0 - }, "comms": { "baseline": "3.4.0", "port-version": 1 @@ -4192,6 +4188,10 @@ "baseline": "4754bee2d8eb3", "port-version": 2 }, + "lionkor-commandline": { + "baseline": "1.0.0", + "port-version": 0 + }, "live555": { "baseline": "2021-12-18", "port-version": 0 From 39b983405238276c59302addb0896567d5a7cf0a Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Fri, 11 Mar 2022 00:56:20 -0800 Subject: [PATCH 22/22] version --- versions/{c- => l-}/lionkor-commandline.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename versions/{c- => l-}/lionkor-commandline.json (60%) diff --git a/versions/c-/lionkor-commandline.json b/versions/l-/lionkor-commandline.json similarity index 60% rename from versions/c-/lionkor-commandline.json rename to versions/l-/lionkor-commandline.json index 53ca4d01586f5a..d5d8277faa1e43 100644 --- a/versions/c-/lionkor-commandline.json +++ b/versions/l-/lionkor-commandline.json @@ -1,7 +1,7 @@ { "versions": [ { - "git-tree": "9f58c58a32cd475edc281b14a9908c157e936767", + "git-tree": "857618e8e62e8395973a0c48c61c837877b65fac", "version-semver": "1.0.0", "port-version": 0 }