[ntf-core] new port (#32855)

This commit is contained in:
Taylor Foxhall 2023-08-31 16:53:07 -04:00 committed by GitHub
parent d517ee7c71
commit 3f6e8e9c09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 92 additions and 0 deletions

View File

@ -0,0 +1,53 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO bloomberg/ntf-core
REF "${VERSION}"
SHA512 57662d2dd105b2781e580623c26cd7bde84fce8374bbd70c18595a5f6934869b7a570f0d3c2e17e115f6c7eb1067541f8d19523639815b285324061f807d3179
HEAD_REF main
)
# ntf-core requires debugger information to for dev tooling purposes, so we just fake it
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS "-DNTF_BUILD_WITH_USAGE_EXAMPLES=0"
"-DNTF_TOOLCHAIN_DEBUGGER_PATH=NOT-FOUND"
)
vcpkg_cmake_build()
vcpkg_cmake_install()
function(fix_pkgconfig_ufid lib_dir ufid pc_name)
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/${lib_dir}/pkgconfig/${pc_name}.pc" "/${ufid}" "")
if ("${ufid}" MATCHES opt)
set(build_mode "release")
else()
set(build_mode "debug")
endif()
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/${lib_dir}/cmake/${pc_name}Targets-${build_mode}.cmake" "/${ufid}" "")
endfunction()
function(fix_install_dir lib_dir ufid)
message(STATUS "Fixing ufid layout for ${CURRENT_PACKAGES_DIR}/${lib_dir}/${ufid}")
file(RENAME "${CURRENT_PACKAGES_DIR}/${lib_dir}/${ufid}" "${CURRENT_PACKAGES_DIR}/tmp")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/${lib_dir}")
file(RENAME "${CURRENT_PACKAGES_DIR}/tmp" "${CURRENT_PACKAGES_DIR}/${lib_dir}")
fix_pkgconfig_ufid("${lib_dir}" "${ufid}" "nts")
fix_pkgconfig_ufid("${lib_dir}" "${ufid}" "ntc")
endfunction()
fix_install_dir("lib" "opt_exc_mt")
fix_install_dir("debug/lib" "dbg_exc_mt")
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake")
# Handle copyright
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
vcpkg_fixup_pkgconfig()
# Usage
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")

9
ports/ntf-core/usage Normal file
View File

@ -0,0 +1,9 @@
The package ntf-core provides the CMake targets:
# Blocking and non-blocking sockets for network programming
find_package(nts REQUIRED)
target_link_libraries(main PRIVATE nts)
# Asynchronous sockets, timers, event loops, and thread pools for network programming
find_package(ntc REQUIRED)
target_link_libraries(main PRIVATE ntc)

17
ports/ntf-core/vcpkg.json Normal file
View File

@ -0,0 +1,17 @@
{
"name": "ntf-core",
"version": "2.1.0",
"description": "The Network Transport Framework: Core Libraries",
"license": "Apache-2.0",
"dependencies": [
"bde",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
]
}

View File

@ -5808,6 +5808,10 @@
"baseline": "2019-08-10",
"port-version": 3
},
"ntf-core": {
"baseline": "2.1.0",
"port-version": 0
},
"nu-book-zxing-cpp": {
"baseline": "2.1.0",
"port-version": 0

View File

@ -0,0 +1,9 @@
{
"versions": [
{
"version": "2.1.0",
"port-version": 0,
"git-tree": "eabeb2b30205bef45e72e4a069f21d71797f3f5d"
}
]
}