From c7d09309c14d20cfdb6c9333c99eba570ad2b3f0 Mon Sep 17 00:00:00 2001 From: Carlos O'Ryan Date: Mon, 28 Oct 2019 14:19:54 -0400 Subject: [google-cloud-cpp-common] initial port (#8735) * [google-cloud-cpp-common] initial port Add a new port for the Google Cloud C++ common components. * No need to build the tests. * Forgot to disable the tests when I removed the gtest dep. --- ports/google-cloud-cpp-common/CONTROL | 5 +++++ ports/google-cloud-cpp-common/portfile.cmake | 29 ++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 ports/google-cloud-cpp-common/CONTROL create mode 100644 ports/google-cloud-cpp-common/portfile.cmake (limited to 'ports/google-cloud-cpp-common') diff --git a/ports/google-cloud-cpp-common/CONTROL b/ports/google-cloud-cpp-common/CONTROL new file mode 100644 index 000000000..945493770 --- /dev/null +++ b/ports/google-cloud-cpp-common/CONTROL @@ -0,0 +1,5 @@ +Source: google-cloud-cpp-common +Version: 0.15.0 +Build-Depends: grpc, googleapis +Description: Base C++ Libraries for Google Cloud Platform APIs +Homepage: https://github.com/googleapis/google-cloud-cpp-common diff --git a/ports/google-cloud-cpp-common/portfile.cmake b/ports/google-cloud-cpp-common/portfile.cmake new file mode 100644 index 000000000..c48f74b80 --- /dev/null +++ b/ports/google-cloud-cpp-common/portfile.cmake @@ -0,0 +1,29 @@ +include(vcpkg_common_functions) + +vcpkg_check_linkage(ONLY_STATIC_LIBRARY) + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO googleapis/google-cloud-cpp-common + REF v0.15.0 + SHA512 0a723f714f63fbaa1900e4725b051445de614ed8a4700a6ad27037f9b63e56a7e9c5b4490e42044f077496074a8e0c3e7971bbcd601527c9f9fa20f088a19fa3 + HEAD_REF master) + +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} PREFER_NINJA DISABLE_PARALLEL_CONFIGURE OPTIONS + -DGOOGLE_CLOUD_CPP_ENABLE_MACOS_OPENSSL_CHECK=OFF + -DBUILD_TESTING=OFF + -DGOOGLE_CLOUD_CPP_TESTING_UTIL_ENABLE_INSTALL=OFF) + +vcpkg_install_cmake(ADD_BIN_TO_PATH) + +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake TARGET_PATH share) + +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) +file( + INSTALL ${SOURCE_PATH}/LICENSE + DESTINATION ${CURRENT_PACKAGES_DIR}/share/google-cloud-cpp-common + RENAME copyright) + +vcpkg_copy_pdbs() -- cgit v1.2.3 From 0887012a3f399079b9ca8fc1378ec7b3cd005e4e Mon Sep 17 00:00:00 2001 From: Carlos O'Ryan Date: Tue, 19 Nov 2019 18:57:48 -0500 Subject: [google-cloud-cpp*]Upgrade to latest release (#8986) --- ports/google-cloud-cpp-common/CONTROL | 2 +- ports/google-cloud-cpp-common/portfile.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'ports/google-cloud-cpp-common') diff --git a/ports/google-cloud-cpp-common/CONTROL b/ports/google-cloud-cpp-common/CONTROL index 945493770..541fa6762 100644 --- a/ports/google-cloud-cpp-common/CONTROL +++ b/ports/google-cloud-cpp-common/CONTROL @@ -1,5 +1,5 @@ Source: google-cloud-cpp-common -Version: 0.15.0 +Version: 0.16.0 Build-Depends: grpc, googleapis Description: Base C++ Libraries for Google Cloud Platform APIs Homepage: https://github.com/googleapis/google-cloud-cpp-common diff --git a/ports/google-cloud-cpp-common/portfile.cmake b/ports/google-cloud-cpp-common/portfile.cmake index c48f74b80..e333c069e 100644 --- a/ports/google-cloud-cpp-common/portfile.cmake +++ b/ports/google-cloud-cpp-common/portfile.cmake @@ -5,8 +5,8 @@ vcpkg_check_linkage(ONLY_STATIC_LIBRARY) vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO googleapis/google-cloud-cpp-common - REF v0.15.0 - SHA512 0a723f714f63fbaa1900e4725b051445de614ed8a4700a6ad27037f9b63e56a7e9c5b4490e42044f077496074a8e0c3e7971bbcd601527c9f9fa20f088a19fa3 + REF v0.16.0 + SHA512 2325e4aa28cd883091a562f3de0390bb0139446920183487ed2fbc1e404c90ec6f5e42d5b6f59e1de65be66b61954bc4f66b3f441ad6ec89cd4591ce8ea3321d HEAD_REF master) vcpkg_configure_cmake( -- cgit v1.2.3