forked from Lainports/freebsd-ports
New port: devel/google-cloud-cpp: C++ Idiomatic Clients for Google Cloud Platform services
PR: 226400 Submitted by: Anthony <amzo1337@gmail.com>
This commit is contained in:
parent
35ca9f2f90
commit
e6b99d79bb
9 changed files with 488 additions and 0 deletions
|
|
@ -869,6 +869,7 @@
|
|||
SUBDIR += gogland-eap
|
||||
SUBDIR += gogs
|
||||
SUBDIR += golint
|
||||
SUBDIR += google-cloud-cpp
|
||||
SUBDIR += google-gdata
|
||||
SUBDIR += google-perftools
|
||||
SUBDIR += google-styleguide
|
||||
|
|
|
|||
50
devel/google-cloud-cpp/Makefile
Normal file
50
devel/google-cloud-cpp/Makefile
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= google-cloud-cpp
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.11.0.g20190710 # the upstream master branch is mis-versioned: https://github.com/googleapis/google-cloud-cpp/issues/2871
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= https://github.com/googleapis/googleapis/archive/:googleapi \
|
||||
https://github.com/nlohmann/json/releases/download/v3.4.0/:json # should use the package: https://github.com/googleapis/google-cloud-cpp/issues/2874
|
||||
DISTFILES= a8ee1416f4c588f2ab92da72e7c1f588c784d3e6.tar.gz:googleapi \
|
||||
json.hpp:json
|
||||
DIST_SUBDIR= ${PORTNAME}
|
||||
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
||||
|
||||
MAINTAINER= amzo1337@gmail.com
|
||||
COMMENT= C++ Idiomatic Clients for Google Cloud Platform services
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= protobuf>=3.7.1:devel/protobuf \
|
||||
grpc>=1.19.1:devel/grpc
|
||||
LIB_DEPENDS= libcrc32c.so:devel/crc32c \
|
||||
libcurl.so:ftp/curl \
|
||||
libgrpc.so:devel/grpc \
|
||||
libprotobuf.so:devel/protobuf
|
||||
|
||||
USES= cmake compiler:c++11-lang ssl
|
||||
USE_GITHUB= yes
|
||||
GH_TAGNAME= 4dff795ca
|
||||
GH_ACCOUNT= GoogleCloudPlatform
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
CFLAGS+= -I${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build
|
||||
LDFLAGS+= -L${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build
|
||||
|
||||
CMAKE_ON= BUILD_SHARED_LIBS
|
||||
CMAKE_OFF= BUILD_TESTING GOOGLE_CLOUD_CPP_ENABLE_CXX_EXCEPTIONS
|
||||
CMAKE_ARGS= -DGOOGLE_CLOUD_CPP_DEPENDENCY_PROVIDER=package
|
||||
|
||||
post-extract:
|
||||
@${MKDIR} ${BUILD_WRKSRC}/external/nlohmann_json/src/
|
||||
@${CP} ${DISTDIR}/${DIST_SUBDIR}/json.hpp ${BUILD_WRKSRC}/external/nlohmann_json/src/json.hpp
|
||||
@${MKDIR} ${BUILD_WRKSRC}/external/googleapis/src/
|
||||
@${CP} ${DISTDIR}/${DIST_SUBDIR}/a8ee1416f4c588f2ab92da72e7c1f588c784d3e6.tar.gz \
|
||||
${BUILD_WRKSRC}/external/googleapis/src/a8ee1416f4c588f2ab92da72e7c1f588c784d3e6.tar.gz
|
||||
|
||||
post-patch: # workaround for https://github.com/googleapis/google-cloud-cpp/issues/2875, also see files/patch-cmake_external_googleapis.cmake
|
||||
@${REINPLACE_CMD} "s#%%LOCALBASE%%#${LOCALBASE}#" ${WRKSRC}/cmake/external/googleapis.cmake
|
||||
|
||||
.include <bsd.port.mk>
|
||||
7
devel/google-cloud-cpp/distinfo
Normal file
7
devel/google-cloud-cpp/distinfo
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
TIMESTAMP = 1563091031
|
||||
SHA256 (google-cloud-cpp/a8ee1416f4c588f2ab92da72e7c1f588c784d3e6.tar.gz) = 6b8a9b2bcb4476e9a5a9872869996f0d639c8d5df76dd8a893e79201f211b1cf
|
||||
SIZE (google-cloud-cpp/a8ee1416f4c588f2ab92da72e7c1f588c784d3e6.tar.gz) = 1493736
|
||||
SHA256 (google-cloud-cpp/json.hpp) = 63da6d1f22b2a7bb9e4ff7d6b255cf691a161ff49532dcc45d398a53e295835f
|
||||
SIZE (google-cloud-cpp/json.hpp) = 705920
|
||||
SHA256 (google-cloud-cpp/GoogleCloudPlatform-google-cloud-cpp-v0.11.0.g20190710-4dff795ca_GH0.tar.gz) = 00a6355ae09b9f1708e87747835f8cb2e8de8351a0f836ff6954a6809ef81d73
|
||||
SIZE (google-cloud-cpp/GoogleCloudPlatform-google-cloud-cpp-v0.11.0.g20190710-4dff795ca_GH0.tar.gz) = 2230947
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
--- cmake/DownloadNlohmannJson.cmake.orig 2019-07-11 02:46:50 UTC
|
||||
+++ cmake/DownloadNlohmannJson.cmake
|
||||
@@ -37,6 +37,10 @@ function (_download_json_hpp)
|
||||
execute_process(COMMAND "${CMAKE_COMMAND}" -E sleep
|
||||
"${sleep_seconds}")
|
||||
endif ()
|
||||
+ if (EXISTS "${DEST}/json.hpp")
|
||||
+ set(download_error_code 0)
|
||||
+ break()
|
||||
+ endif ()
|
||||
file(DOWNLOAD "${JSON_URL}" "${DEST}/json.hpp" STATUS download_status)
|
||||
list(GET download_status 0 download_error_code)
|
||||
if (download_error_code EQUAL 0)
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
--- cmake/GoogleCloudCppCommon.cmake.orig 2019-07-11 02:46:50 UTC
|
||||
+++ cmake/GoogleCloudCppCommon.cmake
|
||||
@@ -24,7 +24,6 @@ include(CheckCXXCompilerFlag)
|
||||
if (NOT MSVC)
|
||||
check_cxx_compiler_flag(-Wall GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WALL)
|
||||
check_cxx_compiler_flag(-Wextra GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WEXTRA)
|
||||
- check_cxx_compiler_flag(-Werror GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WERROR)
|
||||
else()
|
||||
check_cxx_compiler_flag("/std:c++latest"
|
||||
GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_CPP_LATEST)
|
||||
@@ -118,9 +117,6 @@ function (google_cloud_cpp_add_common_options target)
|
||||
endif ()
|
||||
if (GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WEXTRA)
|
||||
target_compile_options(${target} INTERFACE "-Wextra")
|
||||
- endif ()
|
||||
- if (GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WERROR)
|
||||
- target_compile_options(${target} INTERFACE "-Werror")
|
||||
endif ()
|
||||
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU"
|
||||
AND "${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS 5.0)
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
Workaround for the upstream bug
|
||||
https://github.com/googleapis/google-cloud-cpp/issues/2875 (Installs files into the same directory where build is performed from)
|
||||
suggested by Anthony <amzo1337@gmail.com>.
|
||||
|
||||
Also see post-patch in Makefile.
|
||||
|
||||
--- cmake/external/googleapis.cmake.orig 2019-07-17 17:31:29 UTC
|
||||
+++ cmake/external/googleapis.cmake
|
||||
@@ -109,7 +109,7 @@ if (NOT TARGET googleapis_project)
|
||||
-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}
|
||||
-DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS}
|
||||
-DCMAKE_PREFIX_PATH=${GOOGLE_CLOUD_CPP_PREFIX_PATH}
|
||||
- -DCMAKE_INSTALL_PREFIX=<INSTALL_DIR>
|
||||
+ -DCMAKE_INSTALL_PREFIX=%%LOCALBASE%%
|
||||
-DCMAKE_INSTALL_RPATH=${GOOGLE_CLOUD_CPP_INSTALL_RPATH}
|
||||
${_googleapis_toolchain_flag}
|
||||
${_googleapis_triplet_flag}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
--- google/cloud/storage/CMakeLists.txt.orig 2019-07-11 02:46:50 UTC
|
||||
+++ google/cloud/storage/CMakeLists.txt
|
||||
@@ -227,9 +227,6 @@ target_link_libraries(storage_client
|
||||
Crc32c::crc32c
|
||||
CURL::libcurl
|
||||
Threads::Threads
|
||||
- OpenSSL::SSL
|
||||
- OpenSSL::Crypto
|
||||
- ZLIB::ZLIB
|
||||
PRIVATE storage_common_options)
|
||||
target_include_directories(storage_client
|
||||
PUBLIC $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}>
|
||||
7
devel/google-cloud-cpp/pkg-descr
Normal file
7
devel/google-cloud-cpp/pkg-descr
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
Nsync is a C library that exports various synchronization primitives.
|
||||
The library is intended to be portable, and to be compilable on a system with
|
||||
only a C90 compiler, assuming atomic operations are available from the
|
||||
compiler, operating system, or assembler routines. It is able to use C11 or
|
||||
C++11 atomic operations if they are available.
|
||||
|
||||
WWW: https://github.com/google/nsync
|
||||
361
devel/google-cloud-cpp/pkg-plist
Normal file
361
devel/google-cloud-cpp/pkg-plist
Normal file
|
|
@ -0,0 +1,361 @@
|
|||
include/google/api/annotations.grpc.pb.h
|
||||
include/google/api/annotations.pb.h
|
||||
include/google/api/annotations.proto
|
||||
include/google/api/auth.grpc.pb.h
|
||||
include/google/api/auth.pb.h
|
||||
include/google/api/auth.proto
|
||||
include/google/api/http.grpc.pb.h
|
||||
include/google/api/http.pb.h
|
||||
include/google/api/http.proto
|
||||
include/google/api/resource.grpc.pb.h
|
||||
include/google/api/resource.pb.h
|
||||
include/google/api/resource.proto
|
||||
include/google/bigtable/admin/v2/bigtable_instance_admin.grpc.pb.h
|
||||
include/google/bigtable/admin/v2/bigtable_instance_admin.pb.h
|
||||
include/google/bigtable/admin/v2/bigtable_instance_admin.proto
|
||||
include/google/bigtable/admin/v2/bigtable_table_admin.grpc.pb.h
|
||||
include/google/bigtable/admin/v2/bigtable_table_admin.pb.h
|
||||
include/google/bigtable/admin/v2/bigtable_table_admin.proto
|
||||
include/google/bigtable/admin/v2/common.grpc.pb.h
|
||||
include/google/bigtable/admin/v2/common.pb.h
|
||||
include/google/bigtable/admin/v2/common.proto
|
||||
include/google/bigtable/admin/v2/instance.grpc.pb.h
|
||||
include/google/bigtable/admin/v2/instance.pb.h
|
||||
include/google/bigtable/admin/v2/instance.proto
|
||||
include/google/bigtable/admin/v2/table.grpc.pb.h
|
||||
include/google/bigtable/admin/v2/table.pb.h
|
||||
include/google/bigtable/admin/v2/table.proto
|
||||
include/google/bigtable/v2/bigtable.grpc.pb.h
|
||||
include/google/bigtable/v2/bigtable.pb.h
|
||||
include/google/bigtable/v2/bigtable.proto
|
||||
include/google/bigtable/v2/data.grpc.pb.h
|
||||
include/google/bigtable/v2/data.pb.h
|
||||
include/google/bigtable/v2/data.proto
|
||||
include/google/cloud/bigtable/admin_client.h
|
||||
include/google/cloud/bigtable/app_profile_config.h
|
||||
include/google/cloud/bigtable/async_operation.h
|
||||
include/google/cloud/bigtable/async_row_reader.h
|
||||
include/google/cloud/bigtable/cell.h
|
||||
include/google/cloud/bigtable/client_options.h
|
||||
include/google/cloud/bigtable/cluster_config.h
|
||||
include/google/cloud/bigtable/cluster_list_responses.h
|
||||
include/google/cloud/bigtable/column_family.h
|
||||
include/google/cloud/bigtable/completion_queue.h
|
||||
include/google/cloud/bigtable/data_client.h
|
||||
include/google/cloud/bigtable/expr.h
|
||||
include/google/cloud/bigtable/filters.h
|
||||
include/google/cloud/bigtable/iam_binding.h
|
||||
include/google/cloud/bigtable/iam_policy.h
|
||||
include/google/cloud/bigtable/idempotent_mutation_policy.h
|
||||
include/google/cloud/bigtable/instance_admin.h
|
||||
include/google/cloud/bigtable/instance_admin_client.h
|
||||
include/google/cloud/bigtable/instance_config.h
|
||||
include/google/cloud/bigtable/instance_list_responses.h
|
||||
include/google/cloud/bigtable/instance_update_config.h
|
||||
include/google/cloud/bigtable/internal/async_bulk_apply.h
|
||||
include/google/cloud/bigtable/internal/async_longrunning_op.h
|
||||
include/google/cloud/bigtable/internal/async_poll_op.h
|
||||
include/google/cloud/bigtable/internal/async_read_stream_impl.h
|
||||
include/google/cloud/bigtable/internal/async_retry_multi_page.h
|
||||
include/google/cloud/bigtable/internal/async_retry_op.h
|
||||
include/google/cloud/bigtable/internal/async_retry_unary_rpc.h
|
||||
include/google/cloud/bigtable/internal/async_retry_unary_rpc_and_poll.h
|
||||
include/google/cloud/bigtable/internal/bulk_mutator.h
|
||||
include/google/cloud/bigtable/internal/client_options_defaults.h
|
||||
include/google/cloud/bigtable/internal/common_client.h
|
||||
include/google/cloud/bigtable/internal/completion_queue_impl.h
|
||||
include/google/cloud/bigtable/internal/conjunction.h
|
||||
include/google/cloud/bigtable/internal/google_bytes_traits.h
|
||||
include/google/cloud/bigtable/internal/prefix_range_end.h
|
||||
include/google/cloud/bigtable/internal/readrowsparser.h
|
||||
include/google/cloud/bigtable/internal/rowreaderiterator.h
|
||||
include/google/cloud/bigtable/internal/rpc_policy_parameters.h
|
||||
include/google/cloud/bigtable/internal/rpc_policy_parameters.inc
|
||||
include/google/cloud/bigtable/internal/unary_client_utils.h
|
||||
include/google/cloud/bigtable/metadata_update_policy.h
|
||||
include/google/cloud/bigtable/mutation_batcher.h
|
||||
include/google/cloud/bigtable/mutations.h
|
||||
include/google/cloud/bigtable/polling_policy.h
|
||||
include/google/cloud/bigtable/read_modify_write_rule.h
|
||||
include/google/cloud/bigtable/row.h
|
||||
include/google/cloud/bigtable/row_key.h
|
||||
include/google/cloud/bigtable/row_key_sample.h
|
||||
include/google/cloud/bigtable/row_range.h
|
||||
include/google/cloud/bigtable/row_reader.h
|
||||
include/google/cloud/bigtable/row_set.h
|
||||
include/google/cloud/bigtable/rpc_backoff_policy.h
|
||||
include/google/cloud/bigtable/rpc_retry_policy.h
|
||||
include/google/cloud/bigtable/table.h
|
||||
include/google/cloud/bigtable/table_admin.h
|
||||
include/google/cloud/bigtable/table_config.h
|
||||
include/google/cloud/bigtable/version.h
|
||||
include/google/cloud/bigtable/version_info.h
|
||||
include/google/cloud/firestore/field_path.h
|
||||
include/google/cloud/future.h
|
||||
include/google/cloud/future_generic.h
|
||||
include/google/cloud/future_void.h
|
||||
include/google/cloud/grpc_utils/grpc_error_delegate.h
|
||||
include/google/cloud/grpc_utils/version.h
|
||||
include/google/cloud/grpc_utils/version_info.h
|
||||
include/google/cloud/iam_binding.h
|
||||
include/google/cloud/iam_bindings.h
|
||||
include/google/cloud/iam_policy.h
|
||||
include/google/cloud/internal/backoff_policy.h
|
||||
include/google/cloud/internal/big_endian.h
|
||||
include/google/cloud/internal/build_info.h
|
||||
include/google/cloud/internal/disjunction.h
|
||||
include/google/cloud/internal/filesystem.h
|
||||
include/google/cloud/internal/format_time_point.h
|
||||
include/google/cloud/internal/future_base.h
|
||||
include/google/cloud/internal/future_fwd.h
|
||||
include/google/cloud/internal/future_impl.h
|
||||
include/google/cloud/internal/future_then_impl.h
|
||||
include/google/cloud/internal/future_then_meta.h
|
||||
include/google/cloud/internal/getenv.h
|
||||
include/google/cloud/internal/invoke_result.h
|
||||
include/google/cloud/internal/ios_flags_saver.h
|
||||
include/google/cloud/internal/make_unique.h
|
||||
include/google/cloud/internal/parse_rfc3339.h
|
||||
include/google/cloud/internal/port_platform.h
|
||||
include/google/cloud/internal/random.h
|
||||
include/google/cloud/internal/retry_policy.h
|
||||
include/google/cloud/internal/setenv.h
|
||||
include/google/cloud/internal/throw_delegate.h
|
||||
include/google/cloud/internal/version_info.h
|
||||
include/google/cloud/log.h
|
||||
include/google/cloud/optional.h
|
||||
include/google/cloud/status.h
|
||||
include/google/cloud/status_or.h
|
||||
include/google/cloud/storage/bucket_access_control.h
|
||||
include/google/cloud/storage/bucket_metadata.h
|
||||
include/google/cloud/storage/client.h
|
||||
include/google/cloud/storage/client_options.h
|
||||
include/google/cloud/storage/download_options.h
|
||||
include/google/cloud/storage/hashing_options.h
|
||||
include/google/cloud/storage/hmac_key_metadata.h
|
||||
include/google/cloud/storage/idempotency_policy.h
|
||||
include/google/cloud/storage/internal/access_control_common.h
|
||||
include/google/cloud/storage/internal/binary_data_as_debug_string.h
|
||||
include/google/cloud/storage/internal/bucket_acl_requests.h
|
||||
include/google/cloud/storage/internal/bucket_requests.h
|
||||
include/google/cloud/storage/internal/common_metadata.h
|
||||
include/google/cloud/storage/internal/complex_option.h
|
||||
include/google/cloud/storage/internal/compute_engine_util.h
|
||||
include/google/cloud/storage/internal/curl_client.h
|
||||
include/google/cloud/storage/internal/curl_download_request.h
|
||||
include/google/cloud/storage/internal/curl_handle.h
|
||||
include/google/cloud/storage/internal/curl_handle_factory.h
|
||||
include/google/cloud/storage/internal/curl_request.h
|
||||
include/google/cloud/storage/internal/curl_request_builder.h
|
||||
include/google/cloud/storage/internal/curl_resumable_upload_session.h
|
||||
include/google/cloud/storage/internal/curl_wrappers.h
|
||||
include/google/cloud/storage/internal/default_object_acl_requests.h
|
||||
include/google/cloud/storage/internal/empty_response.h
|
||||
include/google/cloud/storage/internal/generate_message_boundary.h
|
||||
include/google/cloud/storage/internal/generic_object_request.h
|
||||
include/google/cloud/storage/internal/generic_request.h
|
||||
include/google/cloud/storage/internal/hash_validator.h
|
||||
include/google/cloud/storage/internal/hash_validator_impl.h
|
||||
include/google/cloud/storage/internal/hmac_key_requests.h
|
||||
include/google/cloud/storage/internal/http_response.h
|
||||
include/google/cloud/storage/internal/logging_client.h
|
||||
include/google/cloud/storage/internal/logging_resumable_upload_session.h
|
||||
include/google/cloud/storage/internal/metadata_parser.h
|
||||
include/google/cloud/storage/internal/nljson.h
|
||||
include/google/cloud/storage/internal/nlohmann_json.hpp
|
||||
include/google/cloud/storage/internal/notification_requests.h
|
||||
include/google/cloud/storage/internal/object_acl_requests.h
|
||||
include/google/cloud/storage/internal/object_read_source.h
|
||||
include/google/cloud/storage/internal/object_requests.h
|
||||
include/google/cloud/storage/internal/object_streambuf.h
|
||||
include/google/cloud/storage/internal/openssl_util.h
|
||||
include/google/cloud/storage/internal/patch_builder.h
|
||||
include/google/cloud/storage/internal/policy_document_request.h
|
||||
include/google/cloud/storage/internal/range_from_pagination.h
|
||||
include/google/cloud/storage/internal/raw_client.h
|
||||
include/google/cloud/storage/internal/raw_client_wrapper_utils.h
|
||||
include/google/cloud/storage/internal/resumable_upload_session.h
|
||||
include/google/cloud/storage/internal/retry_client.h
|
||||
include/google/cloud/storage/internal/retry_object_read_source.h
|
||||
include/google/cloud/storage/internal/retry_resumable_upload_session.h
|
||||
include/google/cloud/storage/internal/service_account_requests.h
|
||||
include/google/cloud/storage/internal/sha256_hash.h
|
||||
include/google/cloud/storage/internal/sign_blob_requests.h
|
||||
include/google/cloud/storage/internal/signed_url_requests.h
|
||||
include/google/cloud/storage/lifecycle_rule.h
|
||||
include/google/cloud/storage/list_buckets_reader.h
|
||||
include/google/cloud/storage/list_hmac_keys_reader.h
|
||||
include/google/cloud/storage/list_objects_reader.h
|
||||
include/google/cloud/storage/notification_event_type.h
|
||||
include/google/cloud/storage/notification_metadata.h
|
||||
include/google/cloud/storage/notification_payload_format.h
|
||||
include/google/cloud/storage/oauth2/anonymous_credentials.h
|
||||
include/google/cloud/storage/oauth2/authorized_user_credentials.h
|
||||
include/google/cloud/storage/oauth2/compute_engine_credentials.h
|
||||
include/google/cloud/storage/oauth2/credential_constants.h
|
||||
include/google/cloud/storage/oauth2/credentials.h
|
||||
include/google/cloud/storage/oauth2/google_application_default_credentials_file.h
|
||||
include/google/cloud/storage/oauth2/google_credentials.h
|
||||
include/google/cloud/storage/oauth2/refreshing_credentials_wrapper.h
|
||||
include/google/cloud/storage/oauth2/service_account_credentials.h
|
||||
include/google/cloud/storage/object_access_control.h
|
||||
include/google/cloud/storage/object_metadata.h
|
||||
include/google/cloud/storage/object_rewriter.h
|
||||
include/google/cloud/storage/object_stream.h
|
||||
include/google/cloud/storage/override_default_project.h
|
||||
include/google/cloud/storage/policy_document.h
|
||||
include/google/cloud/storage/retry_policy.h
|
||||
include/google/cloud/storage/service_account.h
|
||||
include/google/cloud/storage/signed_url_options.h
|
||||
include/google/cloud/storage/storage_class.h
|
||||
include/google/cloud/storage/upload_options.h
|
||||
include/google/cloud/storage/version.h
|
||||
include/google/cloud/storage/version_info.h
|
||||
include/google/cloud/storage/well_known_headers.h
|
||||
include/google/cloud/storage/well_known_parameters.h
|
||||
include/google/cloud/terminate_handler.h
|
||||
include/google/cloud/version.h
|
||||
include/google/iam/v1/iam_policy.grpc.pb.h
|
||||
include/google/iam/v1/iam_policy.pb.h
|
||||
include/google/iam/v1/iam_policy.proto
|
||||
include/google/iam/v1/policy.grpc.pb.h
|
||||
include/google/iam/v1/policy.pb.h
|
||||
include/google/iam/v1/policy.proto
|
||||
include/google/longrunning/operations.grpc.pb.h
|
||||
include/google/longrunning/operations.pb.h
|
||||
include/google/longrunning/operations.proto
|
||||
include/google/rpc/error_details.grpc.pb.h
|
||||
include/google/rpc/error_details.pb.h
|
||||
include/google/rpc/error_details.proto
|
||||
include/google/rpc/status.grpc.pb.h
|
||||
include/google/rpc/status.pb.h
|
||||
include/google/rpc/status.proto
|
||||
include/google/spanner/admin/database/v1/spanner_database_admin.grpc.pb.h
|
||||
include/google/spanner/admin/database/v1/spanner_database_admin.pb.h
|
||||
include/google/spanner/admin/database/v1/spanner_database_admin.proto
|
||||
include/google/spanner/admin/instance/v1/spanner_instance_admin.grpc.pb.h
|
||||
include/google/spanner/admin/instance/v1/spanner_instance_admin.pb.h
|
||||
include/google/spanner/admin/instance/v1/spanner_instance_admin.proto
|
||||
include/google/spanner/v1/keys.grpc.pb.h
|
||||
include/google/spanner/v1/keys.pb.h
|
||||
include/google/spanner/v1/keys.proto
|
||||
include/google/spanner/v1/mutation.grpc.pb.h
|
||||
include/google/spanner/v1/mutation.pb.h
|
||||
include/google/spanner/v1/mutation.proto
|
||||
include/google/spanner/v1/query_plan.grpc.pb.h
|
||||
include/google/spanner/v1/query_plan.pb.h
|
||||
include/google/spanner/v1/query_plan.proto
|
||||
include/google/spanner/v1/result_set.grpc.pb.h
|
||||
include/google/spanner/v1/result_set.pb.h
|
||||
include/google/spanner/v1/result_set.proto
|
||||
include/google/spanner/v1/spanner.grpc.pb.h
|
||||
include/google/spanner/v1/spanner.pb.h
|
||||
include/google/spanner/v1/spanner.proto
|
||||
include/google/spanner/v1/transaction.grpc.pb.h
|
||||
include/google/spanner/v1/transaction.pb.h
|
||||
include/google/spanner/v1/transaction.proto
|
||||
include/google/spanner/v1/type.grpc.pb.h
|
||||
include/google/spanner/v1/type.pb.h
|
||||
include/google/spanner/v1/type.proto
|
||||
include/google/type/expr.grpc.pb.h
|
||||
include/google/type/expr.pb.h
|
||||
include/google/type/expr.proto
|
||||
lib/cmake/bigtable_client/bigtable-targets-%%CMAKE_BUILD_TYPE%%.cmake
|
||||
lib/cmake/bigtable_client/bigtable-targets.cmake
|
||||
lib/cmake/bigtable_client/bigtable_client-config-version.cmake
|
||||
lib/cmake/bigtable_client/bigtable_client-config.cmake
|
||||
lib/cmake/firestore_client/firestore-targets-%%CMAKE_BUILD_TYPE%%.cmake
|
||||
lib/cmake/firestore_client/firestore-targets.cmake
|
||||
lib/cmake/firestore_client/firestore_client-config-version.cmake
|
||||
lib/cmake/firestore_client/firestore_client-config.cmake
|
||||
lib/cmake/google_cloud_cpp_common/google_cloud_cpp_common-config-version.cmake
|
||||
lib/cmake/google_cloud_cpp_common/google_cloud_cpp_common-config.cmake
|
||||
lib/cmake/google_cloud_cpp_common/google_cloud_cpp_common-targets-%%CMAKE_BUILD_TYPE%%.cmake
|
||||
lib/cmake/google_cloud_cpp_common/google_cloud_cpp_common-targets.cmake
|
||||
lib/cmake/google_cloud_cpp_grpc_utils/FindProtobufTargets.cmake
|
||||
lib/cmake/google_cloud_cpp_grpc_utils/FindgRPC.cmake
|
||||
lib/cmake/google_cloud_cpp_grpc_utils/PkgConfigHelper.cmake
|
||||
lib/cmake/google_cloud_cpp_grpc_utils/google_cloud_cpp_grpc_utils-config-version.cmake
|
||||
lib/cmake/google_cloud_cpp_grpc_utils/google_cloud_cpp_grpc_utils-config.cmake
|
||||
lib/cmake/google_cloud_cpp_grpc_utils/grpc_utils-targets-%%CMAKE_BUILD_TYPE%%.cmake
|
||||
lib/cmake/google_cloud_cpp_grpc_utils/grpc_utils-targets.cmake
|
||||
lib/cmake/googleapis/FindProtobufTargets.cmake
|
||||
lib/cmake/googleapis/FindgRPC.cmake
|
||||
lib/cmake/googleapis/PkgConfigHelper.cmake
|
||||
lib/cmake/googleapis/googleapis-config-version.cmake
|
||||
lib/cmake/googleapis/googleapis-config.cmake
|
||||
lib/cmake/googleapis/googleapis-targets-%%CMAKE_BUILD_TYPE%%.cmake
|
||||
lib/cmake/googleapis/googleapis-targets.cmake
|
||||
lib/cmake/storage_client/storage-targets-%%CMAKE_BUILD_TYPE%%.cmake
|
||||
lib/cmake/storage_client/storage-targets.cmake
|
||||
lib/cmake/storage_client/storage_client-config-version.cmake
|
||||
lib/cmake/storage_client/storage_client-config.cmake
|
||||
lib/libbigtable_client.so
|
||||
lib/libbigtable_client.so.1
|
||||
lib/libbigtable_client.so.1.1.0
|
||||
lib/libfirestore_client.so
|
||||
lib/libfirestore_client.so.0
|
||||
lib/libfirestore_client.so.0.0.1
|
||||
lib/libgoogle_cloud_cpp_common.so
|
||||
lib/libgoogle_cloud_cpp_common.so.0
|
||||
lib/libgoogle_cloud_cpp_common.so.0.10.0
|
||||
lib/libgoogle_cloud_cpp_grpc_utils.so
|
||||
lib/libgoogle_cloud_cpp_grpc_utils.so.0
|
||||
lib/libgoogle_cloud_cpp_grpc_utils.so.0.1.0
|
||||
lib/libgoogleapis_cpp_api_annotations_protos.so
|
||||
lib/libgoogleapis_cpp_api_annotations_protos.so.0
|
||||
lib/libgoogleapis_cpp_api_annotations_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_api_auth_protos.so
|
||||
lib/libgoogleapis_cpp_api_auth_protos.so.0
|
||||
lib/libgoogleapis_cpp_api_auth_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_api_http_protos.so
|
||||
lib/libgoogleapis_cpp_api_http_protos.so.0
|
||||
lib/libgoogleapis_cpp_api_http_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_api_resource_protos.so
|
||||
lib/libgoogleapis_cpp_api_resource_protos.so.0
|
||||
lib/libgoogleapis_cpp_api_resource_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_bigtable_protos.so
|
||||
lib/libgoogleapis_cpp_bigtable_protos.so.0
|
||||
lib/libgoogleapis_cpp_bigtable_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_iam_v1_iam_policy_protos.so
|
||||
lib/libgoogleapis_cpp_iam_v1_iam_policy_protos.so.0
|
||||
lib/libgoogleapis_cpp_iam_v1_iam_policy_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_iam_v1_policy_protos.so
|
||||
lib/libgoogleapis_cpp_iam_v1_policy_protos.so.0
|
||||
lib/libgoogleapis_cpp_iam_v1_policy_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_longrunning_operations_protos.so
|
||||
lib/libgoogleapis_cpp_longrunning_operations_protos.so.0
|
||||
lib/libgoogleapis_cpp_longrunning_operations_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_rpc_error_details_protos.so
|
||||
lib/libgoogleapis_cpp_rpc_error_details_protos.so.0
|
||||
lib/libgoogleapis_cpp_rpc_error_details_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_rpc_status_protos.so
|
||||
lib/libgoogleapis_cpp_rpc_status_protos.so.0
|
||||
lib/libgoogleapis_cpp_rpc_status_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_spanner_protos.so
|
||||
lib/libgoogleapis_cpp_spanner_protos.so.0
|
||||
lib/libgoogleapis_cpp_spanner_protos.so.0.2.0
|
||||
lib/libgoogleapis_cpp_type_expr_protos.so
|
||||
lib/libgoogleapis_cpp_type_expr_protos.so.0
|
||||
lib/libgoogleapis_cpp_type_expr_protos.so.0.2.0
|
||||
lib/libstorage_client.so
|
||||
lib/libstorage_client.so.1
|
||||
lib/libstorage_client.so.1.3.0
|
||||
libdata/pkgconfig/bigtable_client.pc
|
||||
libdata/pkgconfig/firestore_client.pc
|
||||
libdata/pkgconfig/google_cloud_cpp_common.pc
|
||||
libdata/pkgconfig/google_cloud_cpp_grpc_utils.pc
|
||||
libdata/pkgconfig/googleapis.pc
|
||||
libdata/pkgconfig/googleapis_cpp_api_annotations_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_api_auth_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_api_http_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_api_resource_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_bigtable_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_iam_v1_iam_policy_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_iam_v1_policy_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_longrunning_operations_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_rpc_error_details_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_rpc_status_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_spanner_protos.pc
|
||||
libdata/pkgconfig/googleapis_cpp_type_expr_protos.pc
|
||||
libdata/pkgconfig/storage_client.pc
|
||||
Loading…
Add table
Reference in a new issue