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

[etcd-cpp-apiv3] Add etcd-cpp-apiv3 ports. #29363

Merged
merged 9 commits into from
Feb 8, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
31 changes: 31 additions & 0 deletions ports/etcd-cpp-apiv3/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO etcd-cpp-apiv3/etcd-cpp-apiv3
REF 9e1e60af2ee99eafb4ea9b8d275870776b7d8507
SHA512 07e7922c96b0b9cb6502820d9dac96c60390e5d3c4d94e9eed7e847a3d1197e79dbfd4259cd1510ca02d669713a976bb027ba5decc2a44ca8e851109f2ef9c15
HEAD_REF v0.2.12
)

vcpkg_cmake_configure(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DBUILD_ETCD_TESTS=OFF
)
set(VCPKG_POLICY_DLLS_WITHOUT_LIBS enabled)
set(VCPKG_POLICY_DLLS_WITHOUT_EXPORTS enabled)

vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/etcd-cpp-api)

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")

vcpkg_copy_pdbs()

# Handle copyright
file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/etcd-cpp-apiv3" RENAME copyright)

# Adding usage text
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")

11 changes: 11 additions & 0 deletions ports/etcd-cpp-apiv3/usage
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
The package etcd-cpp-apiv3 is compatible with built-in CMake targets:

find_package(etcd-cpp-api CONFIG REQUIRED)
target_link_libraries(main PRIVATE etcd-cpp-api)

In cases where you only need the synchronous runtime and want to avoid the initialization
of builtin thread pool, use:

find_package(etcd-cpp-api CONFIG REQUIRED)
target_link_libraries(main PRIVATE etcd-cpp-api-core)

25 changes: 25 additions & 0 deletions ports/etcd-cpp-apiv3/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "etcd-cpp-apiv3",
"version": "0.2.12",
"description": "The etcd-cpp-apiv3 is a C++ API for etcd's v3 client API, i.e., ETCDCTL_API=3.",
"homepage": "https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3",
"license": "BSD-3-Clause",
"dependencies": [
"boost-asio",
"boost-random",
"boost-system",
"boost-thread",
"cpprestsdk",
"grpc",
"openssl",
"protobuf",
{
"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 @@ -2220,6 +2220,10 @@
"baseline": "ca7cb332011ec37",
"port-version": 1
},
"etcd-cpp-apiv3": {
"baseline": "0.2.12",
"port-version": 0
},
"etl": {
"baseline": "20.35.4",
"port-version": 0
Expand Down
9 changes: 9 additions & 0 deletions versions/e-/etcd-cpp-apiv3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "86cc86be00d148aaf3c011e1c248ea16e7e6d2fc",
"version": "0.2.12",
"port-version": 0
}
]
}