Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[modern-cpp-kafka] New port #32903

Merged
merged 6 commits into from
Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions ports/modern-cpp-kafka/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)

project(modern-cpp-kafka LANGUAGES CXX)

include(GNUInstallDirs)

find_package(RdKafka CONFIG REQUIRED)

add_library(modern-cpp-kafka INTERFACE)
target_include_directories(modern-cpp-kafka INTERFACE $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/modern-cpp-kafka>)
target_link_libraries(modern-cpp-kafka INTERFACE RdKafka::rdkafka)
xiaozhuai marked this conversation as resolved.
Show resolved Hide resolved

install(TARGETS modern-cpp-kafka EXPORT unofficial-modern-cpp-kafka)

install(
EXPORT unofficial-modern-cpp-kafka
FILE unofficial-modern-cpp-kafka-config.cmake
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/unofficial-modern-cpp-kafka"
NAMESPACE unofficial::modern-cpp-kafka::
)

install(
DIRECTORY "${CMAKE_SOURCE_DIR}/include/kafka"
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/modern-cpp-kafka"
)
30 changes: 30 additions & 0 deletions ports/modern-cpp-kafka/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO morganstanley/modern-cpp-kafka
REF "v${VERSION}"
SHA512 5071ba4aeb80d94fd078df054e3a36249e2e433bda2af4c26686cd5b0615d622cfd964c7193d075cc549a572cfa5b11bc4bbab9e00de7c80ea2bbf4a9d797201
HEAD_REF main
)

set(VCPKG_BUILD_TYPE release) # header-only port

file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")

vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
)

vcpkg_cmake_install()
vcpkg_cmake_config_fixup()

file(READ "${CURRENT_PACKAGES_DIR}/share/unofficial-modern-cpp-kafka/unofficial-modern-cpp-kafka-config.cmake" cmake_config)
file(WRITE "${CURRENT_PACKAGES_DIR}/share/unofficial-modern-cpp-kafka/unofficial-modern-cpp-kafka-config.cmake"
"include(CMakeFindDependencyMacro)
find_dependency(RdKafka CONFIG)
${cmake_config}
")

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
4 changes: 4 additions & 0 deletions ports/modern-cpp-kafka/usage
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
modern-cpp-kafka provides CMake targets:

find_package(unofficial-modern-cpp-kafka CONFIG REQUIRED)
target_link_libraries(main PRIVATE unofficial::modern-cpp-kafka::modern-cpp-kafka)
18 changes: 18 additions & 0 deletions ports/modern-cpp-kafka/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "modern-cpp-kafka",
"version-string": "2023.03.07",
"description": "A C++ API for Kafka clients (i.e. KafkaProducer, KafkaConsumer, AdminClient)",
"homepage": "https://github.com/morganstanley/modern-cpp-kafka",
"license": "Apache-2.0",
"dependencies": [
"librdkafka",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -5400,6 +5400,10 @@
"baseline": "1.1.0",
"port-version": 5
},
"modern-cpp-kafka": {
"baseline": "2023.03.07",
"port-version": 0
},
"modp-base64": {
"baseline": "2020-09-26",
"port-version": 2
Expand Down
9 changes: 9 additions & 0 deletions versions/m-/modern-cpp-kafka.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "62e67194439499455176358e538c574f5847f627",
"version-string": "2023.03.07",
"port-version": 0
}
]
}