From 2969ad361d07133ccb81005f23970cd8ffd57336 Mon Sep 17 00:00:00 2001 From: endingly Date: Fri, 4 Aug 2023 22:16:04 +0800 Subject: [PATCH] [fins] add libfins (#32795) * add libfins * fix version sha value * add keyword `supports` * fix version error * fix version data * add namespae for target * modify version date * modify platform. remove arm and add android * modify version data. * remove and delete patch "add_cmake_support" * modify version data * 1. modify lib version 2. do not need and remove "add_cmake_support.patch" * modify fins port version infomation --- ports/fins/portfile.cmake | 25 +++++++++++++++++++++++++ ports/fins/vcpkg.json | 20 ++++++++++++++++++++ versions/baseline.json | 4 ++++ versions/f-/fins.json | 9 +++++++++ 4 files changed, 58 insertions(+) create mode 100644 ports/fins/portfile.cmake create mode 100644 ports/fins/vcpkg.json create mode 100644 versions/f-/fins.json diff --git a/ports/fins/portfile.cmake b/ports/fins/portfile.cmake new file mode 100644 index 0000000000..dea5315e26 --- /dev/null +++ b/ports/fins/portfile.cmake @@ -0,0 +1,25 @@ +vcpkg_check_linkage(ONLY_STATIC_LIBRARY) + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO lammertb/libfins + REF 5525ef513137507ec3ecab68c698a21b30497bc3 + SHA512 6d5c039cefa55183460b14c226a77e24a93200a288486fca6fd5a3639d78e028a89a7eb25775c802cd78fdb371b0cae05236926612395896f56b23f61f5e5e87 + HEAD_REF master +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" +) + +vcpkg_cmake_install() +vcpkg_copy_pdbs() +vcpkg_cmake_config_fixup() + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") + + + diff --git a/ports/fins/vcpkg.json b/ports/fins/vcpkg.json new file mode 100644 index 0000000000..40e9f40926 --- /dev/null +++ b/ports/fins/vcpkg.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", + "name": "fins", + "version-date": "2023-07-31", + "maintainers": "Lammert Bies", + "description": "LibFINS is an MIT licensed library written in C implementing the FINS/TCP protocol used for communication between Omron PLCs. The library contains all the documented client FINS functions. This open source library is a spin-off of a larger project which also implements FINS/UDP client communication and a FINS server engine.", + "homepage": "https://www.libfins.org", + "documentation": "https://www.libfins.org/api-reference/", + "license": "MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} diff --git a/versions/baseline.json b/versions/baseline.json index cd1f776aed..b66bb24a5f 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -2532,6 +2532,10 @@ "baseline": "1.3.4", "port-version": 0 }, + "fins": { + "baseline": "2023-07-31", + "port-version": 0 + }, "fixed-string": { "baseline": "0.1.1", "port-version": 0 diff --git a/versions/f-/fins.json b/versions/f-/fins.json new file mode 100644 index 0000000000..09eb82bf85 --- /dev/null +++ b/versions/f-/fins.json @@ -0,0 +1,9 @@ +{ + "versions": [ + { + "git-tree": "116698010e51dae8ec84b81e8224e5f84a1a4d97", + "version-date": "2023-07-31", + "port-version": 0 + } + ] +}