diff --git a/biology/ncbi-blast+/Makefile b/biology/ncbi-blast+/Makefile index c044de67416a..3934ba6d1853 100644 --- a/biology/ncbi-blast+/Makefile +++ b/biology/ncbi-blast+/Makefile @@ -1,76 +1,76 @@ PORTNAME= ncbi-blast+ DISTVERSION= 2.12.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= biology perl5 python MASTER_SITES= https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/ \ https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/${PORTVERSION}/ DISTNAME= ncbi-blast-${PORTVERSION}+-src MAINTAINER= jwb@FreeBSD.org COMMENT= NCBI implementation of Basic Local Alignment Search Tool WWW= http://blast.ncbi.nlm.nih.gov LICENSE= PD LICENSE_FILE= ${WRKSRC}/scripts/projects/blast/LICENSE LIB_DEPENDS= libpcre.so:devel/pcre \ liblmdb.so:databases/lmdb \ liblzo2.so:archivers/lzo2 \ libgnutls.so:security/gnutls \ libtspi.so:security/trousers \ libgmp.so:math/gmp \ libidn2.so:dns/libidn2 \ libnettle.so:security/nettle \ libhogweed.so:security/nettle \ libtasn1.so:security/libtasn1 \ libp11-kit.so:security/p11-kit \ libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error \ libsqlite3.so:databases/sqlite3 \ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 \ libgrpc.so:devel/grpc RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-JSON>=0:converters/p5-JSON USES= compiler:c++14-lang gmake localbase:ldflags shebangfix perl5 python:3.6+ USE_LDCONFIG= yes SHEBANG_FILES= src/app/blast/legacy_blast.pl \ src/app/blast/update_blastdb.pl \ src/app/blast/cleanup-blastdb-volumes.py \ src/app/blast/get_species_taxids.sh \ src/app/winmasker/windowmasker_2.2.22_adapter.py GNU_CONFIGURE= yes # configure chooses /usr/local/bin/ar with no flags # FreeBSD boost port flagged by configure as untested version # --libdir=${PREFIX}/lib/ncbi-tools++ doesn't respect DESTDIR, so do # a postinstall mv. CONFIGURE_ARGS= AR="ar cr" --without-boost --libdir=${PREFIX}/lib/ncbi-tools++ CONFLICTS_INSTALL= ncbi-cxx-toolkit WRKSRC_SUBDIR= c++ .if !exists(/usr/include/omp.h) CONFIGURE_ARGS+= --without-openmp .endif .include .if ${CHOSEN_COMPILER_TYPE} == gcc # In case of problems: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220822 LDFLAGS+= -latomic # Only exists in gcc libs .endif post-install: @${RM} ${STAGEDIR}${PREFIX}/include/ncbi-tools++/*/*/.cvsignore.extra @${RM} -rf ${STAGEDIR}${PREFIX}/lib/X11 @${RM} ${STAGEDIR}${PREFIX}/include/ncbi-tools++/common/config/ncbiconf_msvc_site.h.in @${RM} ${STAGEDIR}${PREFIX}/include/ncbi-tools++/common/ncbi_build_ver.h.in @${RM} ${STAGEDIR}${PREFIX}/include/ncbi-tools++/common/ncbi_revision.h.in @${RMDIR} ${STAGEDIR}${PREFIX}/lib/debug ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ncbi-tools++/*.so .include diff --git a/databases/arrow/Makefile b/databases/arrow/Makefile index b5cc39493363..a5ca93052d42 100644 --- a/databases/arrow/Makefile +++ b/databases/arrow/Makefile @@ -1,238 +1,247 @@ PORTNAME= arrow DISTVERSION= 8.0.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= databases MASTER_SITES= APACHE/${PORTNAME}/${PORTNAME}-${DISTVERSION} \ https://github.com/apache/orc/archive/rel/:orc DISTNAME= apache-${PORTNAME}-${DISTVERSION} DISTFILES= apache-${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} release-1.6.6${EXTRACT_SUFX}:orc EXTRACT_ONLY= apache-${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= yuri@FreeBSD.org COMMENT= Columnar in-memory analytics layer for big data WWW= https://arrow.apache.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/../LICENSE.txt LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lang localbase pkgconfig python:build USE_LDCONFIG= yes WRKSRC_SUBDIR= cpp CMAKE_ARGS= -DARROW_SIMD_LEVEL=NONE -DARROW_RUNTIME_SIMD_LEVEL=NONE CMAKE_OFF= ARROW_BUILD_STATIC ARROW_WITH_BACKTRACE ARROW_BUILD_TESTS ARROW_BUILD_BENCHMARKS OPTIONS_GROUP= COMPRESSION COMPONENTS # components are listed in cpp/cmake_modules/DefineOptions.cmake OPTIONS_GROUP_COMPRESSION= BROTLI BZ2 LZ4 SNAPPY ZLIB ZSTD OPTIONS_GROUP_COMPONENTS= COMPUTE CSV DATASET FILESYSTEM FLIGHT GANDIVA HDFS HIVESERVER2 IPC JSON MIMALLOC PARQUET ORC PLASMA PYTHON S3 SKYHOOK SUBSTRAIT BUILD_UTILITIES TESTING OPTIONS_SUB= yes COMPRESSION_DESC= Compression support: COMPONENTS_DESC= Build components: ## Compression options BROTLI_CMAKE_BOOL= ARROW_WITH_BROTLI BROTLI_LIB_DEPENDS= libbrotlicommon.so:archivers/brotli BZ2_DESC= bz2 compression support BZ2_CMAKE_BOOL= ARROW_WITH_BZ2 LZ4_CMAKE_BOOL= ARROW_WITH_LZ4 LZ4_LIB_DEPENDS= liblz4.so:archivers/liblz4 SNAPPY_CMAKE_BOOL= ARROW_WITH_SNAPPY SNAPPY_LIB_DEPENDS= libsnappy.so:archivers/snappy ZLIB_CMAKE_BOOL= ARROW_WITH_ZLIB ZSTD_DESC= zstd compression support ZSTD_CMAKE_BOOL= ARROW_WITH_ZSTD ZSTD_LIB_DEPENDS= libzstd.so:archivers/zstd ## Component options COMPUTE_DESC= Arrow Compute Modules COMPUTE_CMAKE_BOOL= ARROW_COMPUTE COMPUTE_LIB_DEPENDS= libre2.so:devel/re2 \ libutf8proc.so:textproc/utf8proc CSV_DESC= Arrow CSV Parser Module CSV_CMAKE_BOOL= ARROW_CSV DATASET_DESC= Arrow Dataset Modules DATASET_CMAKE_BOOL= ARROW_DATASET DATASET_IMPLIES= COMPUTE FILESYSTEM FILESYSTEM_DESC= Arrow Filesystem Layer FILESYSTEM_CMAKE_BOOL= ARROW_FILESYSTEM FLIGHT_DESC= Arrow Flight RPC System FLIGHT_USES= ssl FLIGHT_CMAKE_BOOL= ARROW_FLIGHT FLIGHT_LIB_DEPENDS= libgflags.so:devel/gflags \ libprotobuf.so:devel/protobuf \ libabsl_base.so:devel/abseil \ libcares.so:dns/c-ares \ libgrpc.so:devel/grpc \ libre2.so:devel/re2 FLIGHT_IMPLIES= IPC -FLIGHT_BROKEN= configure breaks: Could not find a package configuration file provided by "re2" +#FLIGHT_BROKEN= configure breaks: Could not find a package configuration file provided by "re2" GANDIVA_DESC= Gandiva libraries GANDIVA_USES= ssl GANDIVA_CMAKE_BOOL= ARROW_GANDIVA GANDIVA_BUILD_DEPENDS= ${LOCALBASE}/bin/clang12:devel/llvm12 # explicitly requires llvm-12 GANDIVA_LIB_DEPENDS= libgrpc.so:devel/grpc \ libprotobuf.so:devel/protobuf \ libre2.so:devel/re2 \ libutf8proc.so:textproc/utf8proc +#GANDIVA_BROKEN= llvm12 stage error (ln: /wrkdirs/usr/ports/devel/llvm12/work/stage/usr/local/llvm12/bin/clang: No such file or directory) HDFS_DESC= Arrow HDFS bridge HDFS_CMAKE_BOOL= ARROW_HDFS HIVESERVER2_DESC= HiveServer2 client and Arrow adapter HIVESERVER2_USES= python:build HIVESERVER2_VARS= BINARY_ALIAS=python=${PYTHON_CMD} HIVESERVER2_BUILD_DEPENDS= thrift:devel/thrift HIVESERVER2_CMAKE_BOOL= ARROW_HIVESERVER2 HIVESERVER2_BROKEN= Pending conflict fix in thrift ports in bug#255538 IPC_DESC= Arrow IPC extensions IPC_CMAKE_BOOL= ARROW_IPC JSON_DESC= JSON support JSON_CMAKE_BOOL= ARROW_JSON JSON_BUILD_DEPENDS= ${LOCALBASE}/include/rapidjson/rapidjson.h:devel/rapidjson MIMALLOC_DESC= Arrow mimalloc-based allocato MIMALLOC_CMAKE_BOOL= ARROW_MIMALLOC MIMALLOC_LIB_DEPENDS= libmimalloc.so:devel/mimalloc MIMALLOC_BROKEN= Pending paths fix in bug#255537 PARQUET_DESC= Parquet libraries PARQUET_CMAKE_BOOL= ARROW_PARQUET PARQUET_REQUIRE_ENCRYPTION PARQUET_USES= ssl PARQUET_LIB_DEPENDS= libthrift.so:devel/thrift-cpp PARQUET_IMPLIES= COMPUTE ORC_DESC= Arrow ORC adapter ORC_CMAKE_BOOL= ARROW_ORC ORC_LIB_DEPENDS= libprotobuf.so:devel/protobuf ORC_CONFIGURE_ENV= ARROW_ORC_URL=file://${DISTDIR}/${DIST_SUBDIR}/release-1.6.6${EXTRACT_SUFX} ORC_IMPLIES= LZ4 SNAPPY ZLIB ZSTD # cpp/CMakeLists.txt ORC_BROKEN= fatal error: 'orc/OrcFile.hh' file not found: https://issues.apache.org/jira/browse/ARROW-12624 PLASMA_DESC= Plasma object store PLASMA_CMAKE_BOOL= ARROW_PLASMA PLASMA_LIB_DEPENDS= libaws-c-auth.so:security/aws-c-auth \ libaws-c-compression.so:devel/aws-c-compression \ libaws-c-http.so:devel/aws-c-http \ libaws-c-mqtt.so:devel/aws-c-mqtt \ libaws-c-s3.so:devel/aws-c-s3 \ libaws-c-sdkutils.so:devel/aws-c-sdkutils \ libaws-crt-cpp.so:devel/aws-crt-cpp \ libgflags.so:devel/gflags +#PLASMA_BROKEN= PLIST issue (Error: Orphaned: bin/ONplasma-store-server, Error: Missing: bin/plasma-store-server) BUILD_UTILITIES_DESC= build Arrow commandline utilities BUILD_UTILITIES_CMAKE_BOOL= ARROW_BUILD_UTILITIES PYTHON_DESC= Build python extension support PYTHON_CMAKE_BOOL= ARROW_PYTHON PYTHON_USES= python:3.7+ PYTHON_BUILD_DEPENDS= ${PYNUMPY} # see https://issues.apache.org/jira/browse/ARROW-16820 PYTHON_CMAKE_ON= -DPython3_EXECUTABLE=${PYTHON_CMD} PYTHON_LIB_DEPENDS= libutf8proc.so:textproc/utf8proc PYTHON_RUN_DEPENDS= ${PYNUMPY} PYTHON_IMPLIES= COMPUTE CSV DATASET FILESYSTEM HDFS JSON PYTHON_VARS= PLIST_SUB+=PYTHON_SUFFIX=${PYTHON_SUFFIX} S3_DESC= S3 support S3_CMAKE_BOOL= ARROW_S3 S3_USES= ssl S3_LIB_DEPENDS= \ libaws-c-cal.so:security/aws-c-cal \ libaws-c-common.so:devel/aws-c-common \ libaws-c-event-stream.so:devel/aws-c-event-stream \ libaws-c-io.so:devel/aws-c-io \ libaws-checksums.so:devel/aws-checksums \ libaws-cpp-sdk-s3.so:devel/aws-sdk-cpp \ libs2n.so:security/s2n-tls S3_IMPLIES= ZLIB SKYHOOK_DESC= Build the Skyhook libraries SKYHOOK_CMAKE_BOOL= ARROW_SKYHOOK SKYHOOK_BROKEN= could NOT find librados SUBSTRAIT_DESC= Build the Arrow Substrait Consumer Module SUBSTRAIT_CMAKE_BOOL= ARROW_SUBSTRAIT SUBSTRAIT_BROKEN= needs investigation TESTING_DESC= Arrow testing libraries TESTING_CMAKE_BOOL= ARROW_TESTING TESTING_LIB_DEPENDS= libgtest.so:devel/googletest .for opt in ${OPTIONS_GROUP_COMPRESSION} ${OPTIONS_GROUP_COMPONENTS} . if "${${opt}_BROKEN}" == "" OPTIONS_DEFAULT+= ${opt} . endif .endfor .include pre-configure-PYTHON-on: @${REINPLACE_CMD} -e ' \ s|arrow_python|arrow_python${PYTHON_SUFFIX}|g; \ s|arrow-python|arrow-python${PYTHON_SUFFIX}|g \ ' \ ${WRKSRC}/../ci/appveyor-cpp-build.bat \ ${WRKSRC}/../cpp/cmake_modules/FindArrowPython.cmake \ ${WRKSRC}/../cpp/cmake_modules/FindArrowPythonFlight.cmake \ ${WRKSRC}/../cpp/src/arrow/python/arrow-python-flight.pc.in \ ${WRKSRC}/../cpp/src/arrow/python/arrow-python.pc.in \ ${WRKSRC}/../cpp/src/arrow/python/ArrowPythonConfig.cmake.in \ ${WRKSRC}/../cpp/src/arrow/python/ArrowPythonFlightConfig.cmake.in \ ${WRKSRC}/../cpp/src/arrow/python/CMakeLists.txt \ ${WRKSRC}/../dev/release/rat_exclude_files.txt \ ${WRKSRC}/../dev/release/verify-apt.sh \ ${WRKSRC}/../dev/release/verify-yum.sh \ ${WRKSRC}/../dev/tasks/conda-recipes/arrow-cpp/meta.yaml \ ${WRKSRC}/../dev/tasks/tasks.yml \ ${WRKSRC}/../docs/source/developers/python.rst \ ${WRKSRC}/../python/cmake_modules/FindArrowPython.cmake \ ${WRKSRC}/../python/cmake_modules/FindArrowPythonFlight.cmake \ ${WRKSRC}/../python/CMakeLists.txt \ ${WRKSRC}/../python/pyarrow/__init__.py \ ${WRKSRC}/../python/pyarrow/plasma.py \ ${WRKSRC}/../python/setup.py @${MV} ${WRKSRC}/src/arrow/python/arrow-python.pc.in ${WRKSRC}/src/arrow/python/arrow-python${PYTHON_SUFFIX}.pc.in @${MV} ${WRKSRC}/src/arrow/python/arrow-python-flight.pc.in ${WRKSRC}/src/arrow/python/arrow-python${PYTHON_SUFFIX}-flight.pc.in +post-install-PLASMA-on: + -${MV} ${STAGEDIR}${PREFIX}/bin/ONplasma-store-server ${STAGEDIR}${PREFIX}/bin/plasma-store-server + .include .if ${PORT_OPTIONS:MCOMPUTE} || ${PORT_OPTIONS:MFLIGHT} || ${PORT_OPTIONS:MGANDIVA} PLIST_FILES+= lib/cmake/arrow/Findre2Alt.cmake .endif +.if ${PORT_OPTIONS:MFLIGHT} || ${PORT_OPTIONS:MGANDIVA} +PLIST_FILES+= lib/cmake/arrow/FindgRPCAlt.cmake +.endif + .if ${PORT_OPTIONS:MPYTHON} == "PYTHON" && ${PORT_OPTIONS:MFLIGHT} == "FLIGHT" PLIST_SUB+= PYTHONFLIGHT="" .else PLIST_SUB+= PYTHONFLIGHT="@comment " .endif .if ${PORT_OPTIONS:MTESTING} && ${PORT_OPTIONS:MFLIGHT} == "FLIGHT" PLIST_SUB+= TESTINGFLIGHT="" .else PLIST_SUB+= TESTINGFLIGHT="@comment " .endif do-test: # tests fail to compile: https://issues.apache.org/jira/browse/ARROW-12625 @cd ${BUILD_WRKSRC} && \ ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DARROW_BUILD_TESTS:BOOL=ON ${CMAKE_SOURCE_PATH} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test .include diff --git a/databases/arrow/pkg-plist b/databases/arrow/pkg-plist index aa0ea34ded4f..2ef45cf28eaf 100644 --- a/databases/arrow/pkg-plist +++ b/databases/arrow/pkg-plist @@ -1,577 +1,585 @@ %%PLASMA%%bin/plasma-store-server include/arrow/api.h include/arrow/array.h include/arrow/array/array_base.h include/arrow/array/array_binary.h include/arrow/array/array_decimal.h include/arrow/array/array_dict.h include/arrow/array/array_nested.h include/arrow/array/array_primitive.h include/arrow/array/builder_adaptive.h include/arrow/array/builder_base.h include/arrow/array/builder_binary.h include/arrow/array/builder_decimal.h include/arrow/array/builder_dict.h include/arrow/array/builder_nested.h include/arrow/array/builder_primitive.h include/arrow/array/builder_time.h include/arrow/array/builder_union.h include/arrow/array/concatenate.h include/arrow/array/data.h include/arrow/array/diff.h include/arrow/array/util.h include/arrow/array/validate.h include/arrow/buffer.h include/arrow/buffer_builder.h include/arrow/builder.h include/arrow/c/abi.h include/arrow/c/bridge.h include/arrow/c/helpers.h include/arrow/chunk_resolver.h include/arrow/chunked_array.h include/arrow/compare.h %%COMPUTE%%include/arrow/compute/api.h %%COMPUTE%%include/arrow/compute/api_aggregate.h %%COMPUTE%%include/arrow/compute/api_scalar.h %%COMPUTE%%include/arrow/compute/api_vector.h %%COMPUTE%%include/arrow/compute/cast.h %%COMPUTE%%include/arrow/compute/exec.h %%COMPUTE%%include/arrow/compute/exec/bloom_filter.h %%COMPUTE%%include/arrow/compute/exec/exec_plan.h %%COMPUTE%%include/arrow/compute/exec/expression.h %%COMPUTE%%include/arrow/compute/exec/hash_join.h %%COMPUTE%%include/arrow/compute/exec/hash_join_dict.h %%COMPUTE%%include/arrow/compute/exec/ir_consumer.h %%COMPUTE%%include/arrow/compute/exec/key_compare.h %%COMPUTE%%include/arrow/compute/exec/key_encode.h %%COMPUTE%%include/arrow/compute/exec/key_hash.h %%COMPUTE%%include/arrow/compute/exec/key_map.h %%COMPUTE%%include/arrow/compute/exec/options.h %%COMPUTE%%include/arrow/compute/exec/order_by_impl.h %%COMPUTE%%include/arrow/compute/exec/partition_util.h %%COMPUTE%%include/arrow/compute/exec/schema_util.h %%COMPUTE%%include/arrow/compute/exec/task_util.h %%COMPUTE%%include/arrow/compute/exec/test_util.h %%COMPUTE%%include/arrow/compute/exec/tpch_node.h %%COMPUTE%%include/arrow/compute/exec/util.h %%COMPUTE%%include/arrow/compute/function.h %%COMPUTE%%include/arrow/compute/kernel.h %%COMPUTE%%include/arrow/compute/light_array.h %%COMPUTE%%include/arrow/compute/registry.h %%COMPUTE%%include/arrow/compute/type_fwd.h include/arrow/config.h %%CSV%%include/arrow/csv/api.h %%CSV%%include/arrow/csv/chunker.h %%CSV%%include/arrow/csv/column_builder.h %%CSV%%include/arrow/csv/column_decoder.h %%CSV%%include/arrow/csv/converter.h %%CSV%%include/arrow/csv/invalid_row.h %%CSV%%include/arrow/csv/options.h %%CSV%%include/arrow/csv/parser.h %%CSV%%include/arrow/csv/reader.h %%CSV%%include/arrow/csv/test_common.h %%CSV%%include/arrow/csv/type_fwd.h %%CSV%%include/arrow/csv/writer.h %%DATASET%%include/arrow/dataset/api.h %%DATASET%%include/arrow/dataset/dataset.h %%DATASET%%include/arrow/dataset/dataset_writer.h %%DATASET%%include/arrow/dataset/discovery.h %%DATASET%%include/arrow/dataset/file_base.h %%DATASET%%include/arrow/dataset/file_csv.h %%DATASET%%include/arrow/dataset/file_ipc.h %%DATASET%%include/arrow/dataset/file_orc.h %%DATASET%%include/arrow/dataset/file_parquet.h %%DATASET%%include/arrow/dataset/partition.h %%DATASET%%include/arrow/dataset/pch.h %%DATASET%%include/arrow/dataset/plan.h %%DATASET%%include/arrow/dataset/projector.h %%DATASET%%include/arrow/dataset/scanner.h %%DATASET%%include/arrow/dataset/test_util.h %%DATASET%%include/arrow/dataset/type_fwd.h %%DATASET%%include/arrow/dataset/visibility.h include/arrow/datum.h include/arrow/device.h include/arrow/extension_type.h %%FILESYSTEM%%include/arrow/filesystem/api.h %%FILESYSTEM%%include/arrow/filesystem/filesystem.h %%FILESYSTEM%%include/arrow/filesystem/gcsfs.h %%FILESYSTEM%%include/arrow/filesystem/hdfs.h %%FILESYSTEM%%include/arrow/filesystem/localfs.h %%FILESYSTEM%%include/arrow/filesystem/mockfs.h %%FILESYSTEM%%include/arrow/filesystem/path_util.h %%FILESYSTEM%%include/arrow/filesystem/s3_test_util.h %%FILESYSTEM%%include/arrow/filesystem/s3fs.h %%FILESYSTEM%%include/arrow/filesystem/test_util.h %%FILESYSTEM%%include/arrow/filesystem/type_fwd.h %%FLIGHT%%include/arrow/flight/api.h %%FLIGHT%%include/arrow/flight/client.h %%FLIGHT%%include/arrow/flight/client_auth.h +%%FLIGHT%%include/arrow/flight/client_cookie_middleware.h %%FLIGHT%%include/arrow/flight/client_middleware.h -%%FLIGHT%%include/arrow/flight/customize_protobuf.h %%FLIGHT%%include/arrow/flight/middleware.h %%FLIGHT%%include/arrow/flight/pch.h %%FLIGHT%%include/arrow/flight/platform.h %%FLIGHT%%include/arrow/flight/server.h %%FLIGHT%%include/arrow/flight/server_auth.h %%FLIGHT%%include/arrow/flight/server_middleware.h -%%FLIGHT%%include/arrow/flight/test_integration.h +%%FLIGHT%%include/arrow/flight/test_definitions.h %%FLIGHT%%include/arrow/flight/test_util.h +%%FLIGHT%%include/arrow/flight/transport.h +%%FLIGHT%%include/arrow/flight/transport_server.h +%%FLIGHT%%include/arrow/flight/type_fwd.h %%FLIGHT%%include/arrow/flight/types.h %%FLIGHT%%include/arrow/flight/visibility.h include/arrow/io/api.h include/arrow/io/buffered.h include/arrow/io/caching.h include/arrow/io/compressed.h include/arrow/io/concurrency.h include/arrow/io/file.h include/arrow/io/hdfs.h include/arrow/io/interfaces.h include/arrow/io/memory.h include/arrow/io/mman.h include/arrow/io/slow.h include/arrow/io/stdio.h include/arrow/io/test_common.h include/arrow/io/transform.h include/arrow/io/type_fwd.h %%IPC%%include/arrow/ipc/api.h %%IPC%%include/arrow/ipc/dictionary.h %%IPC%%include/arrow/ipc/feather.h %%IPC%%include/arrow/ipc/json_simple.h %%IPC%%include/arrow/ipc/message.h %%IPC%%include/arrow/ipc/options.h %%IPC%%include/arrow/ipc/reader.h %%IPC%%include/arrow/ipc/test_common.h %%IPC%%include/arrow/ipc/type_fwd.h %%IPC%%include/arrow/ipc/util.h %%IPC%%include/arrow/ipc/writer.h %%JSON%%include/arrow/json/api.h %%JSON%%include/arrow/json/chunked_builder.h %%JSON%%include/arrow/json/chunker.h %%JSON%%include/arrow/json/converter.h %%JSON%%include/arrow/json/object_parser.h %%JSON%%include/arrow/json/object_writer.h %%JSON%%include/arrow/json/options.h %%JSON%%include/arrow/json/parser.h %%JSON%%include/arrow/json/rapidjson_defs.h %%JSON%%include/arrow/json/reader.h %%JSON%%include/arrow/json/test_common.h %%JSON%%include/arrow/json/type_fwd.h include/arrow/memory_pool.h include/arrow/memory_pool_test.h include/arrow/pch.h include/arrow/pretty_print.h %%PYTHON%%include/arrow/python/api.h %%PYTHON%%include/arrow/python/arrow_to_pandas.h %%PYTHON%%include/arrow/python/benchmark.h %%PYTHON%%include/arrow/python/common.h %%PYTHON%%include/arrow/python/csv.h %%PYTHON%%include/arrow/python/datetime.h %%PYTHON%%include/arrow/python/decimal.h %%PYTHON%%include/arrow/python/deserialize.h %%PYTHON%%include/arrow/python/extension_type.h %%PYTHON%%include/arrow/python/filesystem.h %%PYTHON%%include/arrow/python/flight.h %%PYTHON%%include/arrow/python/gdb.h %%PYTHON%%include/arrow/python/helpers.h %%PYTHON%%include/arrow/python/inference.h %%PYTHON%%include/arrow/python/init.h %%PYTHON%%include/arrow/python/io.h %%PYTHON%%include/arrow/python/ipc.h %%PYTHON%%include/arrow/python/iterators.h %%PYTHON%%include/arrow/python/numpy_convert.h %%PYTHON%%include/arrow/python/numpy_interop.h %%PYTHON%%include/arrow/python/numpy_to_arrow.h %%PYTHON%%include/arrow/python/parquet_encryption.h %%PYTHON%%include/arrow/python/pch.h %%PYTHON%%include/arrow/python/platform.h %%PYTHON%%include/arrow/python/pyarrow.h %%PYTHON%%include/arrow/python/pyarrow_api.h %%PYTHON%%include/arrow/python/pyarrow_lib.h %%PYTHON%%include/arrow/python/python_to_arrow.h %%PYTHON%%include/arrow/python/serialize.h %%PYTHON%%include/arrow/python/type_traits.h %%PYTHON%%include/arrow/python/visibility.h include/arrow/record_batch.h include/arrow/result.h include/arrow/scalar.h include/arrow/sparse_tensor.h include/arrow/status.h include/arrow/stl.h include/arrow/stl_allocator.h include/arrow/stl_iterator.h include/arrow/table.h include/arrow/table_builder.h include/arrow/tensor.h include/arrow/tensor/converter.h include/arrow/testing/async_test_util.h include/arrow/testing/builder.h include/arrow/testing/executor_util.h include/arrow/testing/extension_type.h include/arrow/testing/future_util.h include/arrow/testing/generator.h include/arrow/testing/gtest_compat.h include/arrow/testing/gtest_util.h include/arrow/testing/json_integration.h include/arrow/testing/matchers.h include/arrow/testing/pch.h include/arrow/testing/random.h include/arrow/testing/uniform_real.h include/arrow/testing/util.h include/arrow/testing/visibility.h include/arrow/type.h include/arrow/type_fwd.h include/arrow/type_traits.h include/arrow/util/algorithm.h include/arrow/util/align_util.h include/arrow/util/aligned_storage.h include/arrow/util/async_generator.h include/arrow/util/async_util.h include/arrow/util/atomic_shared_ptr.h include/arrow/util/base64.h include/arrow/util/basic_decimal.h include/arrow/util/benchmark_util.h include/arrow/util/bit_block_counter.h include/arrow/util/bit_run_reader.h include/arrow/util/bit_stream_utils.h include/arrow/util/bit_util.h include/arrow/util/bitmap.h include/arrow/util/bitmap_builders.h include/arrow/util/bitmap_generate.h include/arrow/util/bitmap_ops.h include/arrow/util/bitmap_reader.h include/arrow/util/bitmap_visit.h include/arrow/util/bitmap_writer.h include/arrow/util/bitset_stack.h include/arrow/util/bpacking.h include/arrow/util/bpacking64_default.h include/arrow/util/bpacking_avx2.h include/arrow/util/bpacking_avx512.h include/arrow/util/bpacking_default.h include/arrow/util/bpacking_neon.h include/arrow/util/bpacking_simd128_generated.h include/arrow/util/bpacking_simd256_generated.h include/arrow/util/bpacking_simd512_generated.h include/arrow/util/byte_size.h include/arrow/util/byte_stream_split.h include/arrow/util/cancel.h include/arrow/util/checked_cast.h include/arrow/util/compare.h include/arrow/util/compression.h include/arrow/util/concurrent_map.h include/arrow/util/config.h include/arrow/util/converter.h include/arrow/util/counting_semaphore.h include/arrow/util/cpu_info.h include/arrow/util/debug.h include/arrow/util/decimal.h include/arrow/util/delimiting.h include/arrow/util/dispatch.h include/arrow/util/double_conversion.h include/arrow/util/endian.h include/arrow/util/formatting.h include/arrow/util/functional.h include/arrow/util/future.h include/arrow/util/future_iterator.h include/arrow/util/hash_util.h include/arrow/util/hashing.h include/arrow/util/int_util.h include/arrow/util/io_util.h include/arrow/util/iterator.h include/arrow/util/key_value_metadata.h include/arrow/util/launder.h include/arrow/util/logging.h include/arrow/util/macros.h include/arrow/util/make_unique.h include/arrow/util/map.h include/arrow/util/math_constants.h include/arrow/util/memory.h include/arrow/util/mutex.h include/arrow/util/optional.h include/arrow/util/parallel.h include/arrow/util/pcg_random.h include/arrow/util/print.h include/arrow/util/queue.h include/arrow/util/range.h include/arrow/util/rle_encoding.h include/arrow/util/simd.h include/arrow/util/small_vector.h include/arrow/util/sort.h include/arrow/util/spaced.h include/arrow/util/stopwatch.h include/arrow/util/string.h include/arrow/util/string_builder.h include/arrow/util/string_view.h include/arrow/util/task_group.h include/arrow/util/tdigest.h include/arrow/util/test_common.h include/arrow/util/thread_pool.h include/arrow/util/time.h include/arrow/util/tracing.h include/arrow/util/trie.h include/arrow/util/type_fwd.h include/arrow/util/type_traits.h include/arrow/util/ubsan.h include/arrow/util/unreachable.h include/arrow/util/uri.h include/arrow/util/utf8.h include/arrow/util/value_parsing.h include/arrow/util/variant.h include/arrow/util/vector.h include/arrow/util/visibility.h include/arrow/util/windows_compatibility.h include/arrow/util/windows_fixup.h include/arrow/vendored/ProducerConsumerQueue.h include/arrow/vendored/datetime.h include/arrow/vendored/datetime/date.h include/arrow/vendored/datetime/ios.h include/arrow/vendored/datetime/tz.h include/arrow/vendored/datetime/tz_private.h include/arrow/vendored/datetime/visibility.h include/arrow/vendored/double-conversion/bignum-dtoa.h include/arrow/vendored/double-conversion/bignum.h include/arrow/vendored/double-conversion/cached-powers.h include/arrow/vendored/double-conversion/diy-fp.h include/arrow/vendored/double-conversion/double-conversion.h include/arrow/vendored/double-conversion/fast-dtoa.h include/arrow/vendored/double-conversion/fixed-dtoa.h include/arrow/vendored/double-conversion/ieee.h include/arrow/vendored/double-conversion/strtod.h include/arrow/vendored/double-conversion/utils.h include/arrow/vendored/optional.hpp include/arrow/vendored/pcg/pcg_extras.hpp include/arrow/vendored/pcg/pcg_random.hpp include/arrow/vendored/pcg/pcg_uint128.hpp include/arrow/vendored/string_view.hpp include/arrow/vendored/strptime.h include/arrow/vendored/xxhash.h include/arrow/visit_array_inline.h include/arrow/visit_data_inline.h include/arrow/visit_scalar_inline.h include/arrow/visit_type_inline.h include/arrow/visitor.h include/arrow/visitor_generate.h %%GANDIVA%%include/gandiva/annotator.h %%GANDIVA%%include/gandiva/arrow.h %%GANDIVA%%include/gandiva/basic_decimal_scalar.h %%GANDIVA%%include/gandiva/bitmap_accumulator.h %%GANDIVA%%include/gandiva/cache.h %%GANDIVA%%include/gandiva/compiled_expr.h %%GANDIVA%%include/gandiva/condition.h %%GANDIVA%%include/gandiva/configuration.h %%GANDIVA%%include/gandiva/date_utils.h %%GANDIVA%%include/gandiva/decimal_ir.h %%GANDIVA%%include/gandiva/decimal_scalar.h %%GANDIVA%%include/gandiva/decimal_type_util.h %%GANDIVA%%include/gandiva/decimal_xlarge.h %%GANDIVA%%include/gandiva/dex.h %%GANDIVA%%include/gandiva/dex_visitor.h %%GANDIVA%%include/gandiva/encrypt_utils.h %%GANDIVA%%include/gandiva/engine.h %%GANDIVA%%include/gandiva/eval_batch.h %%GANDIVA%%include/gandiva/execution_context.h %%GANDIVA%%include/gandiva/exported_funcs.h %%GANDIVA%%include/gandiva/exported_funcs_registry.h %%GANDIVA%%include/gandiva/expr_decomposer.h %%GANDIVA%%include/gandiva/expr_validator.h %%GANDIVA%%include/gandiva/expression.h %%GANDIVA%%include/gandiva/expression_cache_key.h %%GANDIVA%%include/gandiva/expression_registry.h %%GANDIVA%%include/gandiva/field_descriptor.h %%GANDIVA%%include/gandiva/filter.h %%GANDIVA%%include/gandiva/formatting_utils.h %%GANDIVA%%include/gandiva/func_descriptor.h %%GANDIVA%%include/gandiva/function_holder.h %%GANDIVA%%include/gandiva/function_holder_registry.h %%GANDIVA%%include/gandiva/function_ir_builder.h %%GANDIVA%%include/gandiva/function_registry.h %%GANDIVA%%include/gandiva/function_registry_arithmetic.h %%GANDIVA%%include/gandiva/function_registry_common.h %%GANDIVA%%include/gandiva/function_registry_datetime.h %%GANDIVA%%include/gandiva/function_registry_hash.h %%GANDIVA%%include/gandiva/function_registry_math_ops.h %%GANDIVA%%include/gandiva/function_registry_string.h %%GANDIVA%%include/gandiva/function_registry_timestamp_arithmetic.h %%GANDIVA%%include/gandiva/function_signature.h %%GANDIVA%%include/gandiva/gandiva_aliases.h %%GANDIVA%%include/gandiva/gandiva_object_cache.h %%GANDIVA%%include/gandiva/gdv_function_stubs.h %%GANDIVA%%include/gandiva/hash_utils.h %%GANDIVA%%include/gandiva/in_holder.h %%GANDIVA%%include/gandiva/interval_holder.h %%GANDIVA%%include/gandiva/like_holder.h %%GANDIVA%%include/gandiva/literal_holder.h %%GANDIVA%%include/gandiva/llvm_generator.h %%GANDIVA%%include/gandiva/llvm_includes.h %%GANDIVA%%include/gandiva/llvm_types.h %%GANDIVA%%include/gandiva/local_bitmaps_holder.h %%GANDIVA%%include/gandiva/lru_cache.h %%GANDIVA%%include/gandiva/lvalue.h %%GANDIVA%%include/gandiva/native_function.h %%GANDIVA%%include/gandiva/node.h %%GANDIVA%%include/gandiva/node_visitor.h %%GANDIVA%%include/gandiva/pch.h %%GANDIVA%%include/gandiva/projector.h %%GANDIVA%%include/gandiva/random_generator_holder.h %%GANDIVA%%include/gandiva/regex_util.h %%GANDIVA%%include/gandiva/replace_holder.h %%GANDIVA%%include/gandiva/selection_vector.h %%GANDIVA%%include/gandiva/selection_vector_impl.h %%GANDIVA%%include/gandiva/simple_arena.h %%GANDIVA%%include/gandiva/to_date_holder.h %%GANDIVA%%include/gandiva/tree_expr_builder.h %%GANDIVA%%include/gandiva/value_validity_pair.h %%GANDIVA%%include/gandiva/visibility.h %%PARQUET%%include/parquet/api/io.h %%PARQUET%%include/parquet/api/reader.h %%PARQUET%%include/parquet/api/schema.h %%PARQUET%%include/parquet/api/writer.h %%PARQUET%%include/parquet/arrow/reader.h %%PARQUET%%include/parquet/arrow/schema.h %%PARQUET%%include/parquet/arrow/test_util.h %%PARQUET%%include/parquet/arrow/writer.h %%PARQUET%%include/parquet/bloom_filter.h %%PARQUET%%include/parquet/column_page.h %%PARQUET%%include/parquet/column_reader.h %%PARQUET%%include/parquet/column_scanner.h %%PARQUET%%include/parquet/column_writer.h %%PARQUET%%include/parquet/encoding.h %%PARQUET%%include/parquet/encryption/crypto_factory.h %%PARQUET%%include/parquet/encryption/encryption.h %%PARQUET%%include/parquet/encryption/file_key_material_store.h %%PARQUET%%include/parquet/encryption/file_key_unwrapper.h %%PARQUET%%include/parquet/encryption/file_key_wrapper.h %%PARQUET%%include/parquet/encryption/key_encryption_key.h %%PARQUET%%include/parquet/encryption/key_material.h %%PARQUET%%include/parquet/encryption/key_metadata.h %%PARQUET%%include/parquet/encryption/key_toolkit.h %%PARQUET%%include/parquet/encryption/kms_client.h %%PARQUET%%include/parquet/encryption/kms_client_factory.h %%PARQUET%%include/parquet/encryption/local_wrap_kms_client.h %%PARQUET%%include/parquet/encryption/test_encryption_util.h %%PARQUET%%include/parquet/encryption/test_in_memory_kms.h %%PARQUET%%include/parquet/encryption/two_level_cache_with_expiration.h %%PARQUET%%include/parquet/exception.h %%PARQUET%%include/parquet/file_reader.h %%PARQUET%%include/parquet/file_writer.h %%PARQUET%%include/parquet/hasher.h %%PARQUET%%include/parquet/level_comparison.h %%PARQUET%%include/parquet/level_comparison_inc.h %%PARQUET%%include/parquet/level_conversion.h %%PARQUET%%include/parquet/level_conversion_inc.h %%PARQUET%%include/parquet/metadata.h %%PARQUET%%include/parquet/murmur3.h %%PARQUET%%include/parquet/parquet_version.h %%PARQUET%%include/parquet/pch.h %%PARQUET%%include/parquet/platform.h %%PARQUET%%include/parquet/printer.h %%PARQUET%%include/parquet/properties.h %%PARQUET%%include/parquet/schema.h %%PARQUET%%include/parquet/statistics.h %%PARQUET%%include/parquet/stream_reader.h %%PARQUET%%include/parquet/stream_writer.h %%PARQUET%%include/parquet/test_util.h %%PARQUET%%include/parquet/type_fwd.h %%PARQUET%%include/parquet/types.h %%PARQUET%%include/parquet/windows_compatibility.h %%PARQUET%%include/parquet/windows_fixup.h %%PLASMA%%include/plasma/client.h %%PLASMA%%include/plasma/common.h %%PLASMA%%include/plasma/compat.h %%PLASMA%%include/plasma/events.h %%PLASMA%%include/plasma/test_util.h lib/cmake/arrow/ArrowConfig.cmake lib/cmake/arrow/ArrowConfigVersion.cmake %%DATASET%%lib/cmake/arrow/ArrowDatasetConfig.cmake %%DATASET%%lib/cmake/arrow/ArrowDatasetConfigVersion.cmake %%DATASET%%lib/cmake/arrow/ArrowDatasetTargets-%%CMAKE_BUILD_TYPE%%.cmake %%DATASET%%lib/cmake/arrow/ArrowDatasetTargets.cmake %%FLIGHT%%lib/cmake/arrow/ArrowFlightConfig.cmake %%FLIGHT%%lib/cmake/arrow/ArrowFlightConfigVersion.cmake %%FLIGHT%%lib/cmake/arrow/ArrowFlightTargets-%%CMAKE_BUILD_TYPE%%.cmake %%FLIGHT%%lib/cmake/arrow/ArrowFlightTargets.cmake %%TESTINGFLIGHT%%lib/cmake/arrow/ArrowFlightTestingConfig.cmake %%TESTINGFLIGHT%%lib/cmake/arrow/ArrowFlightTestingConfigVersion.cmake %%TESTINGFLIGHT%%lib/cmake/arrow/ArrowFlightTestingTargets-%%CMAKE_BUILD_TYPE%%.cmake %%TESTINGFLIGHT%%lib/cmake/arrow/ArrowFlightTestingTargets.cmake lib/cmake/arrow/ArrowOptions.cmake %%PYTHON%%lib/cmake/arrow/ArrowPythonConfig.cmake %%PYTHON%%lib/cmake/arrow/ArrowPythonConfigVersion.cmake %%PYTHONFLIGHT%%lib/cmake/arrow/ArrowPythonFlightConfig.cmake %%PYTHONFLIGHT%%lib/cmake/arrow/ArrowPythonFlightConfigVersion.cmake %%PYTHONFLIGHT%%lib/cmake/arrow/ArrowPythonFlightTargets-%%CMAKE_BUILD_TYPE%%.cmake %%PYTHONFLIGHT%%lib/cmake/arrow/ArrowPythonFlightTargets.cmake %%PYTHON%%lib/cmake/arrow/ArrowPythonTargets-%%CMAKE_BUILD_TYPE%%.cmake %%PYTHON%%lib/cmake/arrow/ArrowPythonTargets.cmake lib/cmake/arrow/ArrowTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/arrow/ArrowTargets.cmake %%TESTING%%lib/cmake/arrow/ArrowTestingConfig.cmake %%TESTING%%lib/cmake/arrow/ArrowTestingConfigVersion.cmake %%TESTING%%lib/cmake/arrow/ArrowTestingTargets-%%CMAKE_BUILD_TYPE%%.cmake %%TESTING%%lib/cmake/arrow/ArrowTestingTargets.cmake lib/cmake/arrow/FindArrow.cmake %%DATASET%%lib/cmake/arrow/FindArrowDataset.cmake %%FLIGHT%%lib/cmake/arrow/FindArrowFlight.cmake +%%FLIGHT%%lib/cmake/arrow/FindArrowFlightTesting.cmake %%PYTHON%%lib/cmake/arrow/FindArrowPython.cmake %%PYTHONFLIGHT%%lib/cmake/arrow/FindArrowPythonFlight.cmake %%TESTING%%lib/cmake/arrow/FindArrowTesting.cmake %%BROTLI%%lib/cmake/arrow/FindBrotli.cmake %%GANDIVA%%lib/cmake/arrow/FindGandiva.cmake %%LZ4%%lib/cmake/arrow/FindLz4.cmake %%PARQUET%%lib/cmake/arrow/FindParquet.cmake %%PLASMA%%lib/cmake/arrow/FindPlasma.cmake %%SNAPPY%%lib/cmake/arrow/FindSnappy.cmake %%PYTHON%%lib/cmake/arrow/Findutf8proc.cmake %%ZSTD%%lib/cmake/arrow/Findzstd.cmake %%GANDIVA%%lib/cmake/arrow/GandivaConfig.cmake %%GANDIVA%%lib/cmake/arrow/GandivaConfigVersion.cmake %%GANDIVA%%lib/cmake/arrow/GandivaTargets-%%CMAKE_BUILD_TYPE%%.cmake %%GANDIVA%%lib/cmake/arrow/GandivaTargets.cmake %%PARQUET%%lib/cmake/arrow/ParquetConfig.cmake %%PARQUET%%lib/cmake/arrow/ParquetConfigVersion.cmake %%PARQUET%%lib/cmake/arrow/ParquetTargets-%%CMAKE_BUILD_TYPE%%.cmake %%PARQUET%%lib/cmake/arrow/ParquetTargets.cmake %%PLASMA%%lib/cmake/arrow/PlasmaConfig.cmake %%PLASMA%%lib/cmake/arrow/PlasmaConfigVersion.cmake %%PLASMA%%lib/cmake/arrow/PlasmaTargets-%%CMAKE_BUILD_TYPE%%.cmake %%PLASMA%%lib/cmake/arrow/PlasmaTargets.cmake lib/cmake/arrow/arrow-config.cmake lib/libarrow.so lib/libarrow.so.800 lib/libarrow.so.800.0.0 %%DATASET%%lib/libarrow_dataset.so %%DATASET%%lib/libarrow_dataset.so.800 %%DATASET%%lib/libarrow_dataset.so.800.0.0 %%FLIGHT%%lib/libarrow_flight.so %%FLIGHT%%lib/libarrow_flight.so.800 -%%FLIGHT%%lib/libarrow_flight.so.800.8.0 +%%FLIGHT%%lib/libarrow_flight.so.800.0.0 +%%FLIGHT%%lib/libarrow_flight_testing.so +%%FLIGHT%%lib/libarrow_flight_testing.so.800 +%%FLIGHT%%lib/libarrow_flight_testing.so.800.0.0 %%PYTHON%%lib/libarrow_python%%PYTHON_SUFFIX%%.so %%PYTHON%%lib/libarrow_python%%PYTHON_SUFFIX%%.so.800 %%PYTHON%%lib/libarrow_python%%PYTHON_SUFFIX%%.so.800.0.0 %%PYTHONFLIGHT%%lib/libarrow_python%%PYTHON_SUFFIX%%_flight.so %%PYTHONFLIGHT%%lib/libarrow_python%%PYTHON_SUFFIX%%_flight.so.800 %%PYTHONFLIGHT%%lib/libarrow_python%%PYTHON_SUFFIX%%_flight.so.800.0.0 %%TESTING%%lib/libarrow_testing.so %%TESTING%%lib/libarrow_testing.so.800 %%TESTING%%lib/libarrow_testing.so.800.0.0 %%GANDIVA%%lib/libgandiva.so %%GANDIVA%%lib/libgandiva.so.800 %%GANDIVA%%lib/libgandiva.so.800.0.0 %%PARQUET%%lib/libparquet.so %%PARQUET%%lib/libparquet.so.800 %%PARQUET%%lib/libparquet.so.800.0.0 %%PLASMA%%lib/libplasma.so %%PLASMA%%lib/libplasma.so.800 %%PLASMA%%lib/libplasma.so.800.0.0 %%COMPUTE%%libdata/pkgconfig/arrow-compute.pc %%CSV%%libdata/pkgconfig/arrow-csv.pc %%DATASET%%libdata/pkgconfig/arrow-dataset.pc %%FILESYSTEM%%libdata/pkgconfig/arrow-filesystem.pc %%FLIGHT%%libdata/pkgconfig/arrow-flight.pc +%%FLIGHT%%libdata/pkgconfig/arrow-flight-testing.pc %%JSON%%libdata/pkgconfig/arrow-json.pc %%PYTHONFLIGHT%%libdata/pkgconfig/arrow-python%%PYTHON_SUFFIX%%-flight.pc %%PYTHON%%libdata/pkgconfig/arrow-python%%PYTHON_SUFFIX%%.pc %%TESTING%%libdata/pkgconfig/arrow-testing.pc libdata/pkgconfig/arrow.pc %%GANDIVA%%libdata/pkgconfig/gandiva.pc %%PARQUET%%libdata/pkgconfig/parquet.pc %%PLASMA%%libdata/pkgconfig/plasma.pc diff --git a/devel/bear/Makefile b/devel/bear/Makefile index e9fd590424c6..a4f8c7a8173e 100644 --- a/devel/bear/Makefile +++ b/devel/bear/Makefile @@ -1,42 +1,42 @@ PORTNAME= bear DISTVERSION= 3.0.20 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= jrm@FreeBSD.org COMMENT= Tool that generates a compilation database for clang tooling WWW= https://github.com/rizsotto/Bear LICENSE= GPLv3+ BUILD_DEPENDS= nlohmann-json>0:devel/nlohmann-json LIB_DEPENDS= libabsl_hash.so:devel/abseil \ libcares.so:dns/c-ares \ libfmt.so:devel/libfmt \ libgrpc.so:devel/grpc \ libprotobuf.so:devel/protobuf \ libre2.so:devel/re2 \ libspdlog.so:devel/spdlog USES= cmake compiler:c++17-lang pkgconfig USE_GITHUB= yes GH_ACCOUNT= rizsotto GH_PROJECT= Bear USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} CMAKE_ARGS= -DCMAKE_INSTALL_DOCDIR=${DOCSDIR} \ -DENABLE_FUNC_TESTS=OFF \ -DENABLE_UNIT_TESTS=OFF OPTIONS_DEFINE= DOCS pre-install: ${MV} ${STAGEDIR}/${CONFIGURE_WRKSRC}/stage ${CONFIGURE_WRKSRC}/ ${RM} -r ${STAGEDIR}/wrkdirs post-install: .for l in bin/citnames bin/intercept lib/bear/libexec.so lib/bear/wrapper @${STRIP_CMD} ${STAGEDIR}${PREFIX}/${l} .endfor .include diff --git a/devel/google-cloud-cpp/Makefile b/devel/google-cloud-cpp/Makefile index 7b4411fffd03..af7b7a4ef5e5 100644 --- a/devel/google-cloud-cpp/Makefile +++ b/devel/google-cloud-cpp/Makefile @@ -1,48 +1,48 @@ PORTNAME= google-cloud-cpp DISTVERSIONPREFIX= v DISTVERSION= 1.21.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= devel DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= amzo1337@gmail.com COMMENT= C++ Idiomatic Clients for Google Cloud Platform services WWW= https://github.com/googleapis/google-cloud-cpp LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NOT_FOR_ARCHS= i386 powerpc BUILD_DEPENDS= grpc>=1.19.1:devel/grpc \ nlohmann-json>0:devel/nlohmann-json \ protobuf>=3.7.1:devel/protobuf LIB_DEPENDS= libabsl_strings.so:devel/abseil \ libcares.so:dns/c-ares \ libcrc32c.so:devel/crc32c \ libcurl.so:ftp/curl \ libgrpc.so:devel/grpc \ libprotobuf.so:devel/protobuf \ libre2.so:devel/re2 USES= cmake compiler:c++17-lang pkgconfig ssl USE_GITHUB= yes GH_ACCOUNT= GoogleCloudPlatform GH_TUPLE= googleapis:googleapis:370e9f9ac14dbc73f56e15257bccc06dfebd4196:googleapis USE_LDCONFIG= yes CMAKE_ARGS= -DGOOGLE_CLOUD_CPP_CXX_STANDARD=17 \ -DGOOGLE_CLOUD_CPP_DEPENDENCY_PROVIDER=package CMAKE_ON= BUILD_SHARED_LIBS CMAKE_OFF= BUILD_TESTING GOOGLE_CLOUD_CPP_ENABLE_CXX_EXCEPTIONS CFLAGS+= -I${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build LDFLAGS+= -L${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build post-extract: @${MKDIR} ${BUILD_WRKSRC}/external/googleapis/src/ @${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILE_googleapis} \ ${BUILD_WRKSRC}/external/googleapis/src/370e9f9ac14dbc73f56e15257bccc06dfebd4196.tar.gz .include diff --git a/devel/google-cloud-cpp117/Makefile b/devel/google-cloud-cpp117/Makefile index 4570795a4dd0..bad3c9632131 100644 --- a/devel/google-cloud-cpp117/Makefile +++ b/devel/google-cloud-cpp117/Makefile @@ -1,49 +1,49 @@ PORTNAME= google-cloud-cpp DISTVERSIONPREFIX= v DISTVERSION= 1.17.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel PKGNAMESUFFIX= 117 DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= amzo1337@gmail.com COMMENT= C++ Idiomatic Clients for Google Cloud Platform services WWW= https://github.com/googleapis/google-cloud-cpp LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NOT_FOR_ARCHS= i386 powerpc BUILD_DEPENDS= grpc>=1.19.1:devel/grpc \ nlohmann-json>0:devel/nlohmann-json \ protobuf>=3.7.1:devel/protobuf LIB_DEPENDS= libabsl_strings.so:devel/abseil \ libcares.so:dns/c-ares \ libcrc32c.so:devel/crc32c \ libcurl.so:ftp/curl \ libgrpc.so:devel/grpc \ libprotobuf.so:devel/protobuf \ libre2.so:devel/re2 USES= cmake compiler:c++17-lang pkgconfig ssl USE_GITHUB= yes GH_ACCOUNT= GoogleCloudPlatform GH_TUPLE= googleapis:googleapis:59f97e6044a1275f83427ab7962a154c00d915b5:googleapis USE_LDCONFIG= yes CMAKE_ARGS= -DGOOGLE_CLOUD_CPP_CXX_STANDARD=17 \ -DGOOGLE_CLOUD_CPP_DEPENDENCY_PROVIDER=package CMAKE_ON= BUILD_SHARED_LIBS CMAKE_OFF= BUILD_TESTING GOOGLE_CLOUD_CPP_ENABLE_CXX_EXCEPTIONS CFLAGS+= -I${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build LDFLAGS+= -L${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build post-extract: @${MKDIR} ${BUILD_WRKSRC}/external/googleapis/src/ @${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILE_googleapis} \ ${BUILD_WRKSRC}/external/googleapis/src/59f97e6044a1275f83427ab7962a154c00d915b5.tar.gz .include diff --git a/devel/grpc/Makefile b/devel/grpc/Makefile index 158593c027d8..59e22a2336e5 100644 --- a/devel/grpc/Makefile +++ b/devel/grpc/Makefile @@ -1,64 +1,64 @@ PORTNAME= grpc -PORTVERSION= 1.48.1 +PORTVERSION= 1.49.0 DISTVERSIONPREFIX= v PORTEPOCH= 2 CATEGORIES= devel MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP/2-based RPC framework WWW= https://grpc.io/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libabsl_base.so:devel/abseil \ libbenchmark.so:devel/benchmark \ libcares.so:dns/c-ares \ libgflags.so:devel/gflags \ libprotobuf.so:devel/protobuf \ libre2.so:devel/re2 USES= cmake compiler:c++17-lang cpe localbase:ldflags pkgconfig ssl USE_GITHUB= yes GH_TUPLE= census-instrumentation:opencensus-proto:v0.3.0:census_instrumentation_opencensus_proto/third_party/opencensus-proto/src \ cncf:xds:1e77728:cncf_xds/third_party/xds CMAKE_ARGS= -DCMAKE_CXX_STANDARD=17 \ -DgRPC_ABSL_PROVIDER=package \ -DgRPC_BENCHMARK_PROVIDER=package \ -DgRPC_CARES_PROVIDER=package \ -DgRPC_GFLAGS_PROVIDER=package \ -DgRPC_PROTOBUF_PROVIDER=package \ -DgRPC_RE2_PROVIDER=package \ -DgRPC_SSL_PROVIDER=package \ -DgRPC_ZLIB_PROVIDER=package CMAKE_OFF= gRPC_BACKWARDS_COMPATIBILITY_MODE gRPC_BUILD_TESTS CMAKE_ON= BUILD_SHARED_LIBS gRPC_BUILD_CODEGEN gRPC_BUILD_CSHARP_EXT gRPC_BUILD_GRPC_CPP_PLUGIN gRPC_BUILD_GRPC_CSHARP_PLUGIN gRPC_BUILD_GRPC_NODE_PLUGIN gRPC_BUILD_GRPC_OBJECTIVE_C_PLUGIN gRPC_BUILD_GRPC_PHP_PLUGIN gRPC_BUILD_GRPC_PYTHON_PLUGIN gRPC_BUILD_GRPC_RUBY_PLUGIN USE_CSTD= c11 USE_CXXSTD= c++17 USE_LDCONFIG= yes PLIST_SUB= SHLIB_MAJOR=${PORTVERSION:R} \ SHLIB_MINOR=${PORTVERSION:E} CONFLICTS_INSTALL= grpc130 grpc134 grpc142 .include # Remove openssl from grpc.pc because we do not ship openssl.pc in base system .if ${SSL_DEFAULT} == base EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-openssl .endif post-patch: # Clean up bundled libraries @${RM} -r ${WRKSRC}/third_party/abseil-cpp/ @${RM} -r ${WRKSRC}/third_party/benchmark/ @${RM} -r ${WRKSRC}/third_party/boringssl-with-bazel/ @${RM} -r ${WRKSRC}/third_party/cares/ @${RM} -r ${WRKSRC}/third_party/protobuf/ @${RM} -r ${WRKSRC}/third_party/re2/ @${RM} -r ${WRKSRC}/third_party/zlib/ .include diff --git a/devel/grpc/distinfo b/devel/grpc/distinfo index 7c9b2a976ad7..f7d1de69645b 100644 --- a/devel/grpc/distinfo +++ b/devel/grpc/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1662212118 -SHA256 (grpc-grpc-v1.48.1_GH0.tar.gz) = 320366665d19027cda87b2368c03939006a37e0388bfd1091c8d2a96fbc93bd8 -SIZE (grpc-grpc-v1.48.1_GH0.tar.gz) = 8250955 +TIMESTAMP = 1663676331 +SHA256 (grpc-grpc-v1.49.0_GH0.tar.gz) = 15715e1847cc9e42014f02c727dbcb48e39dbdb90f79ad3d66fe4361709ff935 +SIZE (grpc-grpc-v1.49.0_GH0.tar.gz) = 8357766 SHA256 (census-instrumentation-opencensus-proto-v0.3.0_GH0.tar.gz) = b7e13f0b4259e80c3070b583c2f39e53153085a6918718b1c710caf7037572b0 SIZE (census-instrumentation-opencensus-proto-v0.3.0_GH0.tar.gz) = 163404 SHA256 (cncf-xds-1e77728_GH0.tar.gz) = 6d1ca5e2641488aa69e9ea11dd3547afaaf43d01108cb8618db1f164f2532042 SIZE (cncf-xds-1e77728_GH0.tar.gz) = 103444 diff --git a/devel/grpc/files/extra-patch-openssl b/devel/grpc/files/extra-patch-openssl index 8c8ffdd9d22c..60b296e06ecd 100644 --- a/devel/grpc/files/extra-patch-openssl +++ b/devel/grpc/files/extra-patch-openssl @@ -1,11 +1,11 @@ ---- CMakeLists.txt.orig 2022-07-19 00:40:04 UTC +--- CMakeLists.txt.orig 2022-09-14 01:34:30 UTC +++ CMakeLists.txt -@@ -20397,7 +20397,7 @@ generate_pkgconfig( +@@ -21945,7 +21945,7 @@ generate_pkgconfig( "gRPC" "high performance general RPC framework" "${gRPC_CORE_VERSION}" -- "gpr openssl absl_base absl_bind_front absl_cord absl_core_headers absl_flat_hash_map absl_flat_hash_set absl_function_ref absl_hash absl_inlined_vector absl_memory absl_optional absl_random_random absl_span absl_status absl_statusor absl_str_format absl_strings absl_synchronization absl_time absl_type_traits absl_utility absl_variant" -+ "gpr absl_base absl_bind_front absl_cord absl_core_headers absl_flat_hash_map absl_flat_hash_set absl_function_ref absl_hash absl_inlined_vector absl_memory absl_optional absl_random_random absl_span absl_status absl_statusor absl_str_format absl_strings absl_synchronization absl_time absl_type_traits absl_utility absl_variant" +- "gpr openssl absl_any_invocable absl_base absl_bind_front absl_cord absl_core_headers absl_flat_hash_map absl_flat_hash_set absl_function_ref absl_hash absl_inlined_vector absl_memory absl_optional absl_random_random absl_span absl_status absl_statusor absl_str_format absl_strings absl_synchronization absl_time absl_type_traits absl_utility absl_variant" ++ "gpr absl_any_invocable absl_base absl_bind_front absl_cord absl_core_headers absl_flat_hash_map absl_flat_hash_set absl_function_ref absl_hash absl_inlined_vector absl_memory absl_optional absl_random_random absl_span absl_status absl_statusor absl_str_format absl_strings absl_synchronization absl_time absl_type_traits absl_utility absl_variant" "-lgrpc -laddress_sorting -lre2 -lupb -lcares -lz" "" "grpc.pc") diff --git a/devel/grpc/pkg-plist b/devel/grpc/pkg-plist index 4ac827a054c0..2819618da303 100644 --- a/devel/grpc/pkg-plist +++ b/devel/grpc/pkg-plist @@ -1,316 +1,316 @@ bin/grpc_cpp_plugin bin/grpc_csharp_plugin bin/grpc_node_plugin bin/grpc_objective_c_plugin bin/grpc_php_plugin bin/grpc_python_plugin bin/grpc_ruby_plugin include/grpc++/alarm.h include/grpc++/channel.h include/grpc++/client_context.h include/grpc++/completion_queue.h include/grpc++/create_channel.h include/grpc++/create_channel_posix.h include/grpc++/ext/health_check_service_server_builder_option.h include/grpc++/ext/proto_server_reflection_plugin.h include/grpc++/generic/async_generic_service.h include/grpc++/generic/generic_stub.h include/grpc++/grpc++.h include/grpc++/health_check_service_interface.h include/grpc++/impl/call.h include/grpc++/impl/channel_argument_option.h include/grpc++/impl/client_unary_call.h include/grpc++/impl/codegen/async_stream.h include/grpc++/impl/codegen/async_unary_call.h include/grpc++/impl/codegen/byte_buffer.h include/grpc++/impl/codegen/call.h include/grpc++/impl/codegen/call_hook.h include/grpc++/impl/codegen/channel_interface.h include/grpc++/impl/codegen/client_context.h include/grpc++/impl/codegen/client_unary_call.h include/grpc++/impl/codegen/completion_queue.h include/grpc++/impl/codegen/completion_queue_tag.h include/grpc++/impl/codegen/config.h include/grpc++/impl/codegen/config_protobuf.h include/grpc++/impl/codegen/core_codegen.h include/grpc++/impl/codegen/core_codegen_interface.h include/grpc++/impl/codegen/create_auth_context.h include/grpc++/impl/codegen/grpc_library.h include/grpc++/impl/codegen/metadata_map.h include/grpc++/impl/codegen/method_handler_impl.h include/grpc++/impl/codegen/proto_utils.h include/grpc++/impl/codegen/rpc_method.h include/grpc++/impl/codegen/rpc_service_method.h include/grpc++/impl/codegen/security/auth_context.h include/grpc++/impl/codegen/serialization_traits.h include/grpc++/impl/codegen/server_context.h include/grpc++/impl/codegen/server_interface.h include/grpc++/impl/codegen/service_type.h include/grpc++/impl/codegen/slice.h include/grpc++/impl/codegen/status.h include/grpc++/impl/codegen/status_code_enum.h include/grpc++/impl/codegen/string_ref.h include/grpc++/impl/codegen/stub_options.h include/grpc++/impl/codegen/sync_stream.h include/grpc++/impl/codegen/time.h include/grpc++/impl/grpc_library.h include/grpc++/impl/method_handler_impl.h include/grpc++/impl/rpc_method.h include/grpc++/impl/rpc_service_method.h include/grpc++/impl/serialization_traits.h include/grpc++/impl/server_builder_option.h include/grpc++/impl/server_builder_plugin.h include/grpc++/impl/server_initializer.h include/grpc++/impl/service_type.h include/grpc++/resource_quota.h include/grpc++/security/auth_context.h include/grpc++/security/auth_metadata_processor.h include/grpc++/security/credentials.h include/grpc++/security/server_credentials.h include/grpc++/server.h include/grpc++/server_builder.h include/grpc++/server_context.h include/grpc++/server_posix.h include/grpc++/support/async_stream.h include/grpc++/support/async_unary_call.h include/grpc++/support/byte_buffer.h include/grpc++/support/channel_arguments.h include/grpc++/support/config.h include/grpc++/support/error_details.h include/grpc++/support/slice.h include/grpc++/support/status.h include/grpc++/support/status_code_enum.h include/grpc++/support/string_ref.h include/grpc++/support/stub_options.h include/grpc++/support/sync_stream.h include/grpc++/support/time.h include/grpc/byte_buffer.h include/grpc/byte_buffer_reader.h include/grpc/census.h include/grpc/compression.h include/grpc/event_engine/endpoint_config.h include/grpc/event_engine/event_engine.h include/grpc/event_engine/internal/memory_allocator_impl.h include/grpc/event_engine/memory_allocator.h include/grpc/event_engine/memory_request.h include/grpc/event_engine/port.h include/grpc/event_engine/slice.h include/grpc/event_engine/slice_buffer.h include/grpc/fork.h include/grpc/grpc.h include/grpc/grpc_posix.h include/grpc/grpc_security.h include/grpc/grpc_security_constants.h include/grpc/impl/codegen/atm.h include/grpc/impl/codegen/atm_gcc_atomic.h include/grpc/impl/codegen/atm_gcc_sync.h include/grpc/impl/codegen/atm_windows.h include/grpc/impl/codegen/byte_buffer.h include/grpc/impl/codegen/byte_buffer_reader.h include/grpc/impl/codegen/compression_types.h include/grpc/impl/codegen/connectivity_state.h include/grpc/impl/codegen/fork.h include/grpc/impl/codegen/gpr_slice.h include/grpc/impl/codegen/gpr_types.h include/grpc/impl/codegen/grpc_types.h include/grpc/impl/codegen/log.h include/grpc/impl/codegen/port_platform.h include/grpc/impl/codegen/propagation_bits.h include/grpc/impl/codegen/slice.h include/grpc/impl/codegen/status.h include/grpc/impl/codegen/sync.h include/grpc/impl/codegen/sync_abseil.h include/grpc/impl/codegen/sync_custom.h include/grpc/impl/codegen/sync_generic.h include/grpc/impl/codegen/sync_posix.h include/grpc/impl/codegen/sync_windows.h include/grpc/load_reporting.h include/grpc/slice.h include/grpc/slice_buffer.h include/grpc/status.h include/grpc/support/alloc.h include/grpc/support/atm.h include/grpc/support/atm_gcc_atomic.h include/grpc/support/atm_gcc_sync.h include/grpc/support/atm_windows.h include/grpc/support/cpu.h include/grpc/support/log.h include/grpc/support/log_windows.h include/grpc/support/port_platform.h include/grpc/support/string_util.h include/grpc/support/sync.h include/grpc/support/sync_abseil.h include/grpc/support/sync_custom.h include/grpc/support/sync_generic.h include/grpc/support/sync_posix.h include/grpc/support/sync_windows.h include/grpc/support/thd_id.h include/grpc/support/time.h include/grpc/support/workaround_list.h include/grpcpp/alarm.h include/grpcpp/channel.h include/grpcpp/client_context.h include/grpcpp/completion_queue.h include/grpcpp/create_channel.h include/grpcpp/create_channel_binder.h include/grpcpp/create_channel_posix.h include/grpcpp/ext/call_metric_recorder.h include/grpcpp/ext/channelz_service_plugin.h include/grpcpp/ext/health_check_service_server_builder_option.h include/grpcpp/ext/proto_server_reflection_plugin.h include/grpcpp/generic/async_generic_service.h include/grpcpp/generic/generic_stub.h include/grpcpp/grpcpp.h include/grpcpp/health_check_service_interface.h include/grpcpp/impl/call.h include/grpcpp/impl/channel_argument_option.h include/grpcpp/impl/client_unary_call.h include/grpcpp/impl/codegen/async_generic_service.h include/grpcpp/impl/codegen/async_stream.h include/grpcpp/impl/codegen/async_unary_call.h include/grpcpp/impl/codegen/byte_buffer.h include/grpcpp/impl/codegen/call.h include/grpcpp/impl/codegen/call_hook.h include/grpcpp/impl/codegen/call_op_set.h include/grpcpp/impl/codegen/call_op_set_interface.h include/grpcpp/impl/codegen/callback_common.h include/grpcpp/impl/codegen/channel_interface.h include/grpcpp/impl/codegen/client_callback.h include/grpcpp/impl/codegen/client_context.h include/grpcpp/impl/codegen/client_interceptor.h include/grpcpp/impl/codegen/client_unary_call.h include/grpcpp/impl/codegen/completion_queue.h include/grpcpp/impl/codegen/completion_queue_tag.h include/grpcpp/impl/codegen/config.h include/grpcpp/impl/codegen/config_protobuf.h include/grpcpp/impl/codegen/core_codegen.h include/grpcpp/impl/codegen/core_codegen_interface.h include/grpcpp/impl/codegen/create_auth_context.h include/grpcpp/impl/codegen/delegating_channel.h include/grpcpp/impl/codegen/grpc_library.h include/grpcpp/impl/codegen/intercepted_channel.h include/grpcpp/impl/codegen/interceptor.h include/grpcpp/impl/codegen/interceptor_common.h include/grpcpp/impl/codegen/message_allocator.h include/grpcpp/impl/codegen/metadata_map.h include/grpcpp/impl/codegen/method_handler.h include/grpcpp/impl/codegen/method_handler_impl.h include/grpcpp/impl/codegen/proto_buffer_reader.h include/grpcpp/impl/codegen/proto_buffer_writer.h include/grpcpp/impl/codegen/proto_utils.h include/grpcpp/impl/codegen/rpc_method.h include/grpcpp/impl/codegen/rpc_service_method.h include/grpcpp/impl/codegen/security/auth_context.h include/grpcpp/impl/codegen/serialization_traits.h include/grpcpp/impl/codegen/server_callback.h include/grpcpp/impl/codegen/server_callback_handlers.h include/grpcpp/impl/codegen/server_context.h include/grpcpp/impl/codegen/server_interceptor.h include/grpcpp/impl/codegen/server_interface.h include/grpcpp/impl/codegen/service_type.h include/grpcpp/impl/codegen/slice.h include/grpcpp/impl/codegen/status.h include/grpcpp/impl/codegen/status_code_enum.h include/grpcpp/impl/codegen/string_ref.h include/grpcpp/impl/codegen/stub_options.h include/grpcpp/impl/codegen/sync.h include/grpcpp/impl/codegen/sync_stream.h include/grpcpp/impl/codegen/time.h include/grpcpp/impl/grpc_library.h include/grpcpp/impl/method_handler_impl.h include/grpcpp/impl/rpc_method.h include/grpcpp/impl/rpc_service_method.h include/grpcpp/impl/serialization_traits.h include/grpcpp/impl/server_builder_option.h include/grpcpp/impl/server_builder_plugin.h include/grpcpp/impl/server_initializer.h include/grpcpp/impl/service_type.h include/grpcpp/resource_quota.h include/grpcpp/security/alts_context.h include/grpcpp/security/alts_util.h include/grpcpp/security/auth_context.h include/grpcpp/security/auth_metadata_processor.h include/grpcpp/security/authorization_policy_provider.h include/grpcpp/security/binder_credentials.h include/grpcpp/security/binder_security_policy.h include/grpcpp/security/credentials.h include/grpcpp/security/server_credentials.h include/grpcpp/security/tls_certificate_provider.h include/grpcpp/security/tls_certificate_verifier.h include/grpcpp/security/tls_credentials_options.h include/grpcpp/server.h include/grpcpp/server_builder.h include/grpcpp/server_context.h include/grpcpp/server_posix.h include/grpcpp/support/async_stream.h include/grpcpp/support/async_unary_call.h include/grpcpp/support/byte_buffer.h include/grpcpp/support/channel_arguments.h include/grpcpp/support/client_callback.h include/grpcpp/support/client_interceptor.h include/grpcpp/support/config.h include/grpcpp/support/error_details.h include/grpcpp/support/interceptor.h include/grpcpp/support/message_allocator.h include/grpcpp/support/method_handler.h include/grpcpp/support/proto_buffer_reader.h include/grpcpp/support/proto_buffer_writer.h include/grpcpp/support/server_callback.h include/grpcpp/support/server_interceptor.h include/grpcpp/support/slice.h include/grpcpp/support/status.h include/grpcpp/support/status_code_enum.h include/grpcpp/support/string_ref.h include/grpcpp/support/stub_options.h include/grpcpp/support/sync_stream.h include/grpcpp/support/time.h include/grpcpp/support/validate_service_config.h include/grpcpp/xds_server_builder.h lib/cmake/grpc/gRPCConfig.cmake lib/cmake/grpc/gRPCConfigVersion.cmake lib/cmake/grpc/gRPCTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/grpc/gRPCTargets.cmake lib/cmake/grpc/modules/Findc-ares.cmake lib/cmake/grpc/modules/Findre2.cmake lib/libaddress_sorting.so -lib/libaddress_sorting.so.26 -lib/libaddress_sorting.so.26.0.0 +lib/libaddress_sorting.so.27 +lib/libaddress_sorting.so.27.0.0 lib/libgpr.so -lib/libgpr.so.26 -lib/libgpr.so.26.0.0 +lib/libgpr.so.27 +lib/libgpr.so.27.0.0 lib/libgrpc++.so lib/libgrpc++.so.%%SHLIB_MAJOR%% lib/libgrpc++.so.%%SHLIB_MAJOR%%.%%SHLIB_MINOR%% lib/libgrpc++_alts.so lib/libgrpc++_alts.so.%%SHLIB_MAJOR%% lib/libgrpc++_alts.so.%%SHLIB_MAJOR%%.%%SHLIB_MINOR%% lib/libgrpc++_error_details.so lib/libgrpc++_error_details.so.%%SHLIB_MAJOR%% lib/libgrpc++_error_details.so.%%SHLIB_MAJOR%%.%%SHLIB_MINOR%% lib/libgrpc++_reflection.so lib/libgrpc++_reflection.so.%%SHLIB_MAJOR%% lib/libgrpc++_reflection.so.%%SHLIB_MAJOR%%.%%SHLIB_MINOR%% lib/libgrpc++_unsecure.so lib/libgrpc++_unsecure.so.%%SHLIB_MAJOR%% lib/libgrpc++_unsecure.so.%%SHLIB_MAJOR%%.%%SHLIB_MINOR%% lib/libgrpc.so -lib/libgrpc.so.26 -lib/libgrpc.so.26.0.0 +lib/libgrpc.so.27 +lib/libgrpc.so.27.0.0 lib/libgrpc_plugin_support.so lib/libgrpc_plugin_support.so.%%SHLIB_MAJOR%% lib/libgrpc_plugin_support.so.%%SHLIB_MAJOR%%.%%SHLIB_MINOR%% lib/libgrpc_unsecure.so -lib/libgrpc_unsecure.so.26 -lib/libgrpc_unsecure.so.26.0.0 +lib/libgrpc_unsecure.so.27 +lib/libgrpc_unsecure.so.27.0.0 lib/libgrpcpp_channelz.so lib/libgrpcpp_channelz.so.%%SHLIB_MAJOR%% lib/libgrpcpp_channelz.so.%%SHLIB_MAJOR%%.%%SHLIB_MINOR%% lib/libupb.so -lib/libupb.so.26 -lib/libupb.so.26.0.0 +lib/libupb.so.27 +lib/libupb.so.27.0.0 libdata/pkgconfig/gpr.pc libdata/pkgconfig/grpc++.pc libdata/pkgconfig/grpc++_unsecure.pc libdata/pkgconfig/grpc.pc libdata/pkgconfig/grpc_unsecure.pc %%DATADIR%%/roots.pem diff --git a/net/rubygem-grpc/Makefile b/net/rubygem-grpc/Makefile index 2174fcbaa5e1..9a774e0c0490 100644 --- a/net/rubygem-grpc/Makefile +++ b/net/rubygem-grpc/Makefile @@ -1,30 +1,31 @@ PORTNAME= grpc PORTVERSION= 1.48.0 +PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby implementation of gRPC WWW= https://github.com/grpc/grpc/tree/master/src/ruby LICENSE= BSD3CLAUSE LIB_DEPENDS= libcares.so:dns/c-ares \ libgrpc.so:devel/grpc RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss \ rubygem-google-protobuf>=3.19<4:devel/rubygem-google-protobuf \ rubygem-googleapis-common-protos-types>=1.0<2:devel/rubygem-googleapis-common-protos-types USES= cpe gem gmake pkgconfig USE_RUBY= yes MAKE_JOBS_UNSAFE= yes post-patch: @${RM} ${WRKSRC}/Makefile ${WRKSRC}/.yardopts @${RM} -r ${WRKSRC}/etc ${WRKSRC}/include ${WRKSRC}/third_party ${WRKSRC}/src/boringssl ${WRKSRC}/src/core @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/src/ruby/lib/grpc.rb @${REINPLACE_CMD} -Ee '/s\.files = /s;, "(Makefile|etc|include|third_party|src/boringssl|src/core)[^"]*"\.freeze;;g' ${WRKSRC}/${GEMSPEC} @${REINPLACE_CMD} -e '/s\.files = /s|"\.yardopts"\.freeze, ||' ${WRKSRC}/${GEMSPEC} .include diff --git a/sysutils/apache-mesos/Makefile b/sysutils/apache-mesos/Makefile index d381b0bb73ab..f76eea482471 100644 --- a/sysutils/apache-mesos/Makefile +++ b/sysutils/apache-mesos/Makefile @@ -1,108 +1,108 @@ PORTNAME= mesos PORTVERSION= 1.11.0 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= sysutils MASTER_SITES= APACHE/mesos/${PORTVERSION}:mesos PKGNAMEPREFIX= apache- DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:mesos DIST_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME} MAINTAINER= james.wright@digital-chaos.com COMMENT= Cluster manager providing resource isolation and sharing WWW= https://mesos.apache.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= boost-libs>0:devel/boost-libs \ elfio>0:devel/elfio \ http-parser>0:www/http-parser \ leveldb>0:databases/leveldb \ picojson>0:devel/picojson \ protobuf>0:devel/protobuf \ rapidjson>0:devel/rapidjson \ libzookeeper>0:devel/libzookeeper LIB_DEPENDS= libapr-1.so:devel/apr1 \ libcurl.so:ftp/curl \ libgpr.so:devel/grpc \ libglog.so:devel/glog \ libhttp_parser.so:www/http-parser \ libev.so:devel/libev \ libleveldb.so:databases/leveldb \ libprotobuf.so:devel/protobuf \ libsasl2.so:security/cyrus-sasl2 \ libsvn_delta-1.so:devel/subversion \ libsvn_subr-1.so:devel/subversion \ libzookeeper_mt.so:devel/libzookeeper USES= cpe gmake libarchive libtool python:run shebangfix CPE_VENDOR= apache USE_LDCONFIG= yes SHEBANG_FILES= src/cli/mesos-cat \ src/cli/mesos-ps \ src/cli/mesos-scp \ src/cli/mesos-tail GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-java \ --disable-python \ --disable-werror \ --with-apr=${LOCALBASE} \ --with-boost=${LOCALBASE} \ --with-elfio=${LOCALBASE} \ --with-glog=${LOCALBASE} \ --with-grpc=${LOCALBASE} \ --with-http_parser=${LOCALBASE} \ --with-leveldb=${LOCALBASE} \ --with-libarchive=${LOCALBASE} \ --with-libev=${LOCALBASE} \ --with-protobuf=${LOCALBASE} \ --with-picojson=${LOCALBASE} \ --with-rapidjson=${LOCALBASE} \ --with-sasl=${LOCALBASE} \ --with-svn=${LOCALBASE} \ --with-zookeeper=${LOCALBASE} INSTALL_TARGET= install-strip OPTIONS_DEFINE= DEPLOY JAVA OPTIONS_SUB= yes DEPLOY_DESC= Install deploy scripts JAVA_DESC= Enable Java bindings JAVA_CONFIGURE_ENABLE= java JAVA_USE= java=yes JAVA_BUILD_DEPENDS= mvn:devel/maven JAVA_FETCH_DEPENDS= mvn:devel/maven JAVA_CONFIGURE_ENV= PROTOBUF_JAR="${MAVEN_REPO}/com/google/protobuf/protobuf-java/${PROTOBUF_VERSION}/protobuf-java-${PROTOBUF_VERSION}.jar" JAVA_MAKE_ENV= MAVEN_OPTS="${MAVEN_OPTS}" JAVA_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src_java_mesos.pom.in # REVIEW: Can we figure out the current Protobuf version in ports instead of hardcoding??? PROTOBUF_VERSION= 3.14.0 MAVEN_CMD= mvn MAVEN_REPO= ${WRKDIR}/mesos-maven-deps-${PORTVERSION} MAVEN_OPTS= -Dmaven.repo.local=${MAVEN_REPO} MAVEN_ENV= PROTOBUF_VERSION="${PROTOBUF_VERSION}" MAVEN_OPTS="${MAVEN_OPTS}" MAVEN_POM= ${FILESDIR}/maven-deps.pom DEV_BUILD_MODE= no .if (${DEV_BUILD_MODE} == "yes") # Fetch Maven build dependencies upfront into local Maven Repo # Needs to be after extract (as WRKDIR gets wiped) but before Configure post-extract-JAVA-on: @${SETENV} ${MAVEN_ENV} \ ${MAVEN_CMD} -f ${MAVEN_POM} dependency:go-offline .else MASTER_SITES+= https://github.com/Digital-Chaos/mesos-maven-deps/archive/${DISTVERSION}/:maven DISTFILES+= mesos-maven-deps-${DISTVERSION}${EXTRACT_SUFX}:maven .endif # Replace Protobuf version in src/java/mesos.pom.in do-patch-JAVA-on: @${REINPLACE_CMD} -e 's|@PROTOBUF_VERSION@|${PROTOBUF_VERSION}|g' ${WRKSRC}/src/java/mesos.pom.in .include