View | Details | Raw Unified | Return to bug 249947 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/ports/databases/arrow/Makefile (-16 / +63 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	arrow
3
PORTNAME=	arrow
4
DISTVERSION=	1.0.1
4
DISTVERSION=	1.0.1
5
PORTREVISION=	2
5
CATEGORIES=	databases
6
CATEGORIES=	databases
6
MASTER_SITES=	https://mirrors.advancedhosters.com/apache/${PORTNAME}/${PORTNAME}-${DISTVERSION}/
7
MASTER_SITES=	https://mirrors.advancedhosters.com/apache/${PORTNAME}/${PORTNAME}-${DISTVERSION}/
7
DISTNAME=	apache-${PORTNAME}-${DISTVERSION}
8
DISTNAME=	apache-${PORTNAME}-${DISTVERSION}
Lines 14-48 Link Here
14
15
15
LIB_DEPENDS=	libboost_system.so:devel/boost-libs
16
LIB_DEPENDS=	libboost_system.so:devel/boost-libs
16
17
17
USES=		cmake compiler:c++11-lang pkgconfig
18
USES=		cmake compiler:c++11-lang pkgconfig ssl
18
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
19
20
20
WRKSRC_SUBDIR=	cpp
21
WRKSRC_SUBDIR=	cpp
21
22
23
CMAKE_ARGS=	-DARROW_WITH_BACKTRACE=OFF
22
CMAKE_OFF=	ARROW_BUILD_STATIC
24
CMAKE_OFF=	ARROW_BUILD_STATIC
23
25
24
OPTIONS_GROUP=		COMPRESSION
26
OPTIONS_GROUP=			COMPRESSION EXTENSIONS
25
OPTIONS_GROUP_COMPRESSION=	BROTLI BZ2 LZ4 SNAPPY ZLIB ZSTD
27
OPTIONS_GROUP_COMPRESSION=	BROTLI BZ2 LZ4 SNAPPY ZLIB ZSTD
26
OPTIONS_DEFAULT=	BROTLI BZ2 LZ4 SNAPPY ZLIB ZSTD
28
OPTIONS_GROUP_EXTENSIONS=	COMPUTE JSON CSV FILESYSTEM PARQUET FLIGHT DATASET HDFS GANDIVA BUILD_UTILITIES
29
OPTIONS_DEFAULT=		BROTLI BZ2 LZ4 SNAPPY ZLIB ZSTD COMPUTE JSON CSV FILESYSTEM PARQUET FLIGHT
30
OPTIONS_SUB=			yes
27
31
28
COMPRESSION_DESC=	Compression support:
32
COMPRESSION_DESC=		Compression support:
33
EXTENSIONS_DESC=		Extensions:
29
34
30
BROTLI_CMAKE_BOOL=	ARROW_WITH_BROTLI
35
BROTLI_CMAKE_BOOL=		ARROW_WITH_BROTLI
31
BROTLI_LIB_DEPENDS=	libbrotlicommon.so:archivers/brotli
36
BROTLI_LIB_DEPENDS=		libbrotlicommon.so:archivers/brotli
32
37
33
BZ2_DESC=		bz2 compression support
38
BZ2_DESC=			bz2 compression support
34
BZ2_CMAKE_BOOL=		ARROW_WITH_BZ2
39
BZ2_CMAKE_BOOL=			ARROW_WITH_BZ2
35
40
36
LZ4_CMAKE_BOOL=		ARROW_WITH_LZ4
41
LZ4_CMAKE_BOOL=			ARROW_WITH_LZ4
37
LZ4_LIB_DEPENDS=	liblz4.so:archivers/liblz4
42
LZ4_LIB_DEPENDS=		liblz4.so:archivers/liblz4
38
43
39
SNAPPY_CMAKE_BOOL=	ARROW_WITH_SNAPPY
44
SNAPPY_CMAKE_BOOL=		ARROW_WITH_SNAPPY
40
SNAPPY_LIB_DEPENDS=	libsnappy.so:archivers/snappy
45
SNAPPY_LIB_DEPENDS=		libsnappy.so:archivers/snappy
41
46
42
ZLIB_CMAKE_BOOL=	ARROW_WITH_ZLIB
47
ZLIB_CMAKE_BOOL=		ARROW_WITH_ZLIB
43
48
44
ZSTD_DESC=		zstd compression support
49
ZSTD_DESC=			zstd compression support
45
ZSTD_CMAKE_BOOL=	ARROW_WITH_ZSTD
50
ZSTD_CMAKE_BOOL=		ARROW_WITH_ZSTD
46
ZSTD_LIB_DEPENDS=	libzstd.so:archivers/zstd
51
ZSTD_LIB_DEPENDS=		libzstd.so:archivers/zstd
52
53
COMPUTE_DESC=			build the Arrow Compute Modules
54
COMPUTE_CMAKE_BOOL=		ARROW_COMPUTE
55
56
JSON_DESC=			build Arrow with JSON support
57
JSON_CMAKE_BOOL=		ARROW_JSON
58
JSON_BUILD_DEPENDS=		${LOCALBASE}/include/rapidjson/rapidjson.h:devel/rapidjson
59
60
CSV_DESC=			build the Arrow CSV Parser Module
61
CSV_CMAKE_BOOL=			ARROW_CSV
62
63
FILESYSTEM_DESC=		build the Arrow Filesystem Layer
64
FILESYSTEM_CMAKE_BOOL=		ARROW_FILESYSTEM
65
66
PARQUET_DESC=			build the Parquet libraries
67
PARQUET_CMAKE_BOOL=		ARROW_PARQUET
68
PARQUET_LIB_DEPENDS=		libthrift-0.11.0.so:devel/thrift-cpp \
69
				libutf8proc.so:textproc/utf8proc
70
71
FLIGHT_DESC=			build the Arrow Flight RPC System
72
FLIGHT_CMAKE_BOOL=		ARROW_FLIGHT
73
FLIGHT_LIB_DEPENDS=		libgflags.so:devel/gflags \
74
				libprotobuf.so:devel/protobuf \
75
				libabsl_base.so:devel/abseil \
76
				libcares.so:dns/c-ares \
77
				libgrpc.so:devel/grpc
78
79
DATASET_DESC=			build the Arrow Dataset Modules
80
DATASET_CMAKE_BOOL=		ARROW_DATASET
81
DATASET_LIB_DEPENDS=		libutf8proc.so:textproc/utf8proc
82
83
HDFS_DESC=			build the Arrow HDFS bridge
84
HDFS_CMAKE_BOOL=		ARROW_HDFS
85
86
GANDIVA_DESC=			build the Gandiva libraries
87
GANDIVA_CMAKE_BOOL=		ARROW_GANDIVA
88
GANDIVA_BUILD_DEPENDS=		clang10:devel/llvm10
89
GANDIVA_LIB_DEPENDS=		libgrpc.so:devel/grpc \
90
				libre2.so:devel/re2
91
92
BUILD_UTILITIES_DESC=		build Arrow commandline utilities
93
BUILD_UTILITIES_CMAKE_BOOL=	ARROW_BUILD_UTILITIES
47
94
48
.include <bsd.port.mk>
95
.include <bsd.port.mk>
(-)/usr/ports/databases/arrow/files/patch-Findc-ares.cmake (+45 lines)
Line 0 Link Here
1
--- cmake_modules/Findc-ares.cmake.orig 2020-08-17 17:58:35 UTC
2
+++ cmake_modules/Findc-ares.cmake
3
@@ -0,0 +1,42 @@
4
+# Licensed to the Apache Software Foundation (ASF) under one
5
+# or more contributor license agreements.  See the NOTICE file
6
+# distributed with this work for additional information
7
+# regarding copyright ownership.  The ASF licenses this file
8
+# to you under the Apache License, Version 2.0 (the
9
+# "License"); you may not use this file except in compliance
10
+# with the License.  You may obtain a copy of the License at
11
+#
12
+#   http://www.apache.org/licenses/LICENSE-2.0
13
+#
14
+# Unless required by applicable law or agreed to in writing,
15
+# software distributed under the License is distributed on an
16
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17
+# KIND, either express or implied.  See the License for the
18
+# specific language governing permissions and limitations
19
+# under the License.
20
+
21
+if(c-ares_ROOT)
22
+  find_library(CARES_STATIC_LIB
23
+               NAMES cares
24
+               PATHS ${c-ares_ROOT}
25
+               PATH_SUFFIXES ${LIB_PATH_SUFFIXES}
26
+               NO_DEFAULT_PATH)
27
+  find_path(CARES_INCLUDE_DIR
28
+            NAMES ares.h
29
+            PATHS ${c-ares_ROOT}
30
+            NO_DEFAULT_PATH
31
+            PATH_SUFFIXES ${INCLUDE_PATH_SUFFIXES})
32
+else()
33
+  find_library(CARES_STATIC_LIB NAMES cares)
34
+  find_path(CARES_INCLUDE_DIR NAMES ares.h PATH_SUFFIXES ${INCLUDE_PATH_SUFFIXES})
35
+endif()
36
+
37
+find_package_handle_standard_args(c-ares REQUIRED_VARS CARES_STATIC_LIB CARES_INCLUDE_DIR)
38
+
39
+if(c-ares_FOUND)
40
+  add_library(c-ares::cares STATIC IMPORTED)
41
+  set_target_properties(c-ares::cares
42
+                        PROPERTIES IMPORTED_LOCATION "${CARES_STATIC_LIB}"
43
+                                   INTERFACE_INCLUDE_DIRECTORIES "${CARES_INCLUDE_DIR}")
44
+endif()
45
+
(-)/usr/ports/databases/arrow/files/patch-ThirdpartyToolchain.cmake (+35 lines)
Line 0 Link Here
1
--- cmake_modules/ThirdpartyToolchain.cmake.orig	2020-08-17 17:58:35 UTC
2
+++ cmake_modules/ThirdpartyToolchain.cmake
3
@@ -2182,10 +2182,10 @@
4
   file(MAKE_DIRECTORY ${CARES_INCLUDE_DIR})
5
 
6
   add_dependencies(toolchain cares_ep)
7
-  add_library(c-ares::cares STATIC IMPORTED)
8
-  set_target_properties(c-ares::cares
9
-                        PROPERTIES IMPORTED_LOCATION "${CARES_STATIC_LIB}"
10
-                                   INTERFACE_INCLUDE_DIRECTORIES "${CARES_INCLUDE_DIR}")
11
+  # add_library(c-ares::cares STATIC IMPORTED)
12
+  # set_target_properties(c-ares::cares
13
+  #                       PROPERTIES IMPORTED_LOCATION "${CARES_STATIC_LIB}"
14
+  #                                  INTERFACE_INCLUDE_DIRECTORIES "${CARES_INCLUDE_DIR}")
15
 
16
   set(CARES_VENDORED TRUE)
17
 
18
@@ -2194,7 +2194,7 @@
19
 
20
 if(ARROW_WITH_GRPC)
21
   if(c-ares_SOURCE STREQUAL "AUTO")
22
-    find_package(c-ares QUIET CONFIG)
23
+    find_package(c-ares QUIET)
24
     if(c-ares_FOUND)
25
       set(CARES_INCLUDE_DIR ${c-ares_INCLUDE_DIR})
26
     else()
27
@@ -2203,7 +2203,7 @@
28
   elseif(c-ares_SOURCE STREQUAL "BUNDLED")
29
     build_cares()
30
   elseif(c-ares_SOURCE STREQUAL "SYSTEM")
31
-    find_package(c-ares REQUIRED CONFIG)
32
+    find_package(c-ares REQUIRED)
33
     set(CARES_INCLUDE_DIR ${c-ares_INCLUDE_DIR})
34
   endif()
35
 
(-)/usr/ports/databases/arrow/pkg-plist (+210 lines)
Lines 191-193 Link Here
191
lib/libarrow.so.100
191
lib/libarrow.so.100
192
lib/libarrow.so.100.1.0
192
lib/libarrow.so.100.1.0
193
libdata/pkgconfig/arrow.pc
193
libdata/pkgconfig/arrow.pc
194
%%COMPUTE%%include/arrow/compute/api.h
195
%%COMPUTE%%include/arrow/compute/api_aggregate.h
196
%%COMPUTE%%include/arrow/compute/api_scalar.h
197
%%COMPUTE%%include/arrow/compute/api_vector.h
198
%%COMPUTE%%include/arrow/compute/cast.h
199
%%COMPUTE%%include/arrow/compute/exec.h
200
%%COMPUTE%%include/arrow/compute/function.h
201
%%COMPUTE%%include/arrow/compute/kernel.h
202
%%COMPUTE%%include/arrow/compute/registry.h
203
%%COMPUTE%%include/arrow/compute/type_fwd.h
204
%%COMPUTE%%libdata/pkgconfig/arrow-compute.pc
205
%%CSV%%include/arrow/csv/api.h
206
%%CSV%%include/arrow/csv/chunker.h
207
%%CSV%%include/arrow/csv/column_builder.h
208
%%CSV%%include/arrow/csv/column_decoder.h
209
%%CSV%%include/arrow/csv/converter.h
210
%%CSV%%include/arrow/csv/options.h
211
%%CSV%%include/arrow/csv/parser.h
212
%%CSV%%include/arrow/csv/reader.h
213
%%CSV%%include/arrow/csv/test_common.h
214
%%CSV%%libdata/pkgconfig/arrow-csv.pc
215
%%FILESYSTEM%%include/arrow/filesystem/api.h
216
%%FILESYSTEM%%include/arrow/filesystem/filesystem.h
217
%%FILESYSTEM%%include/arrow/filesystem/hdfs.h
218
%%FILESYSTEM%%include/arrow/filesystem/localfs.h
219
%%FILESYSTEM%%include/arrow/filesystem/mockfs.h
220
%%FILESYSTEM%%include/arrow/filesystem/path_forest.h
221
%%FILESYSTEM%%include/arrow/filesystem/path_util.h
222
%%FILESYSTEM%%include/arrow/filesystem/s3_test_util.h
223
%%FILESYSTEM%%include/arrow/filesystem/s3fs.h
224
%%FILESYSTEM%%include/arrow/filesystem/test_util.h
225
%%FILESYSTEM%%include/arrow/filesystem/type_fwd.h
226
%%FILESYSTEM%%libdata/pkgconfig/arrow-filesystem.pc
227
%%PARQUET%%include/parquet/api/io.h
228
%%PARQUET%%include/parquet/api/reader.h
229
%%PARQUET%%include/parquet/api/schema.h
230
%%PARQUET%%include/parquet/api/writer.h
231
%%PARQUET%%include/parquet/arrow/reader.h
232
%%PARQUET%%include/parquet/arrow/schema.h
233
%%PARQUET%%include/parquet/arrow/test_util.h
234
%%PARQUET%%include/parquet/arrow/writer.h
235
%%PARQUET%%include/parquet/bloom_filter.h
236
%%PARQUET%%include/parquet/column_page.h
237
%%PARQUET%%include/parquet/column_reader.h
238
%%PARQUET%%include/parquet/column_scanner.h
239
%%PARQUET%%include/parquet/column_writer.h
240
%%PARQUET%%include/parquet/deprecated_io.h
241
%%PARQUET%%include/parquet/encoding.h
242
%%PARQUET%%include/parquet/encryption.h
243
%%PARQUET%%include/parquet/exception.h
244
%%PARQUET%%include/parquet/file_reader.h
245
%%PARQUET%%include/parquet/file_writer.h
246
%%PARQUET%%include/parquet/hasher.h
247
%%PARQUET%%include/parquet/level_conversion.h
248
%%PARQUET%%include/parquet/metadata.h
249
%%PARQUET%%include/parquet/murmur3.h
250
%%PARQUET%%include/parquet/parquet_version.h
251
%%PARQUET%%include/parquet/pch.h
252
%%PARQUET%%include/parquet/platform.h
253
%%PARQUET%%include/parquet/printer.h
254
%%PARQUET%%include/parquet/properties.h
255
%%PARQUET%%include/parquet/schema.h
256
%%PARQUET%%include/parquet/statistics.h
257
%%PARQUET%%include/parquet/stream_reader.h
258
%%PARQUET%%include/parquet/stream_writer.h
259
%%PARQUET%%include/parquet/test_encryption_util.h
260
%%PARQUET%%include/parquet/test_util.h
261
%%PARQUET%%include/parquet/type_fwd.h
262
%%PARQUET%%include/parquet/types.h
263
%%PARQUET%%include/parquet/windows_compatibility.h
264
%%PARQUET%%lib/cmake/arrow/FindParquet.cmake
265
%%PARQUET%%lib/cmake/arrow/ParquetConfig.cmake
266
%%PARQUET%%lib/cmake/arrow/ParquetConfigVersion.cmake
267
%%PARQUET%%lib/cmake/arrow/ParquetTargets-%%CMAKE_BUILD_TYPE%%.cmake
268
%%PARQUET%%lib/cmake/arrow/ParquetTargets.cmake
269
%%PARQUET%%lib/libparquet.so
270
%%PARQUET%%lib/libparquet.so.100
271
%%PARQUET%%lib/libparquet.so.100.1.0
272
%%PARQUET%%libdata/pkgconfig/parquet.pc
273
%%FLIGHT%%include/arrow/flight/api.h
274
%%FLIGHT%%include/arrow/flight/client.h
275
%%FLIGHT%%include/arrow/flight/client_auth.h
276
%%FLIGHT%%include/arrow/flight/client_middleware.h
277
%%FLIGHT%%include/arrow/flight/customize_protobuf.h
278
%%FLIGHT%%include/arrow/flight/middleware.h
279
%%FLIGHT%%include/arrow/flight/pch.h
280
%%FLIGHT%%include/arrow/flight/platform.h
281
%%FLIGHT%%include/arrow/flight/server.h
282
%%FLIGHT%%include/arrow/flight/server_auth.h
283
%%FLIGHT%%include/arrow/flight/server_middleware.h
284
%%FLIGHT%%include/arrow/flight/test_integration.h
285
%%FLIGHT%%include/arrow/flight/test_util.h
286
%%FLIGHT%%include/arrow/flight/types.h
287
%%FLIGHT%%include/arrow/flight/visibility.h
288
%%FLIGHT%%lib/cmake/arrow/ArrowFlightConfig.cmake
289
%%FLIGHT%%lib/cmake/arrow/ArrowFlightConfigVersion.cmake
290
%%FLIGHT%%lib/cmake/arrow/ArrowFlightTargets-%%CMAKE_BUILD_TYPE%%.cmake
291
%%FLIGHT%%lib/cmake/arrow/ArrowFlightTargets.cmake
292
%%FLIGHT%%lib/cmake/arrow/FindArrowFlight.cmake
293
%%FLIGHT%%lib/libarrow_flight.so
294
%%FLIGHT%%lib/libarrow_flight.so.100
295
%%FLIGHT%%lib/libarrow_flight.so.100.1.0
296
%%FLIGHT%%libdata/pkgconfig/arrow-flight.pc
297
%%DATASET%%include/arrow/dataset/api.h
298
%%DATASET%%include/arrow/dataset/dataset.h
299
%%DATASET%%include/arrow/dataset/discovery.h
300
%%DATASET%%include/arrow/dataset/file_base.h
301
%%DATASET%%include/arrow/dataset/file_csv.h
302
%%DATASET%%include/arrow/dataset/file_ipc.h
303
%%DATASET%%include/arrow/dataset/file_parquet.h
304
%%DATASET%%include/arrow/dataset/filter.h
305
%%DATASET%%include/arrow/dataset/partition.h
306
%%DATASET%%include/arrow/dataset/pch.h
307
%%DATASET%%include/arrow/dataset/projector.h
308
%%DATASET%%include/arrow/dataset/scanner.h
309
%%DATASET%%include/arrow/dataset/test_util.h
310
%%DATASET%%include/arrow/dataset/type_fwd.h
311
%%DATASET%%include/arrow/dataset/visibility.h
312
%%DATASET%%lib/cmake/arrow/ArrowDatasetConfig.cmake
313
%%DATASET%%lib/cmake/arrow/ArrowDatasetConfigVersion.cmake
314
%%DATASET%%lib/cmake/arrow/ArrowDatasetTargets-%%CMAKE_BUILD_TYPE%%.cmake
315
%%DATASET%%lib/cmake/arrow/ArrowDatasetTargets.cmake
316
%%DATASET%%lib/cmake/arrow/FindArrowDataset.cmake
317
%%DATASET%%lib/libarrow_dataset.so
318
%%DATASET%%lib/libarrow_dataset.so.100
319
%%DATASET%%lib/libarrow_dataset.so.100.1.0
320
%%DATASET%%libdata/pkgconfig/arrow-dataset.pc
321
%%GANDIVA%%include/gandiva/annotator.h
322
%%GANDIVA%%include/gandiva/arrow.h
323
%%GANDIVA%%include/gandiva/basic_decimal_scalar.h
324
%%GANDIVA%%include/gandiva/bitmap_accumulator.h
325
%%GANDIVA%%include/gandiva/cache.h
326
%%GANDIVA%%include/gandiva/compiled_expr.h
327
%%GANDIVA%%include/gandiva/condition.h
328
%%GANDIVA%%include/gandiva/configuration.h
329
%%GANDIVA%%include/gandiva/date_utils.h
330
%%GANDIVA%%include/gandiva/decimal_ir.h
331
%%GANDIVA%%include/gandiva/decimal_scalar.h
332
%%GANDIVA%%include/gandiva/decimal_type_util.h
333
%%GANDIVA%%include/gandiva/decimal_xlarge.h
334
%%GANDIVA%%include/gandiva/dex.h
335
%%GANDIVA%%include/gandiva/dex_visitor.h
336
%%GANDIVA%%include/gandiva/engine.h
337
%%GANDIVA%%include/gandiva/eval_batch.h
338
%%GANDIVA%%include/gandiva/execution_context.h
339
%%GANDIVA%%include/gandiva/exported_funcs.h
340
%%GANDIVA%%include/gandiva/exported_funcs_registry.h
341
%%GANDIVA%%include/gandiva/expr_decomposer.h
342
%%GANDIVA%%include/gandiva/expr_validator.h
343
%%GANDIVA%%include/gandiva/expression.h
344
%%GANDIVA%%include/gandiva/expression_registry.h
345
%%GANDIVA%%include/gandiva/field_descriptor.h
346
%%GANDIVA%%include/gandiva/filter.h
347
%%GANDIVA%%include/gandiva/func_descriptor.h
348
%%GANDIVA%%include/gandiva/function_holder.h
349
%%GANDIVA%%include/gandiva/function_holder_registry.h
350
%%GANDIVA%%include/gandiva/function_ir_builder.h
351
%%GANDIVA%%include/gandiva/function_registry.h
352
%%GANDIVA%%include/gandiva/function_registry_arithmetic.h
353
%%GANDIVA%%include/gandiva/function_registry_common.h
354
%%GANDIVA%%include/gandiva/function_registry_datetime.h
355
%%GANDIVA%%include/gandiva/function_registry_hash.h
356
%%GANDIVA%%include/gandiva/function_registry_math_ops.h
357
%%GANDIVA%%include/gandiva/function_registry_string.h
358
%%GANDIVA%%include/gandiva/function_registry_timestamp_arithmetic.h
359
%%GANDIVA%%include/gandiva/function_signature.h
360
%%GANDIVA%%include/gandiva/gandiva_aliases.h
361
%%GANDIVA%%include/gandiva/gdv_function_stubs.h
362
%%GANDIVA%%include/gandiva/in_holder.h
363
%%GANDIVA%%include/gandiva/like_holder.h
364
%%GANDIVA%%include/gandiva/literal_holder.h
365
%%GANDIVA%%include/gandiva/llvm_generator.h
366
%%GANDIVA%%include/gandiva/llvm_includes.h
367
%%GANDIVA%%include/gandiva/llvm_types.h
368
%%GANDIVA%%include/gandiva/local_bitmaps_holder.h
369
%%GANDIVA%%include/gandiva/lru_cache.h
370
%%GANDIVA%%include/gandiva/lvalue.h
371
%%GANDIVA%%include/gandiva/native_function.h
372
%%GANDIVA%%include/gandiva/node.h
373
%%GANDIVA%%include/gandiva/node_visitor.h
374
%%GANDIVA%%include/gandiva/pch.h
375
%%GANDIVA%%include/gandiva/projector.h
376
%%GANDIVA%%include/gandiva/random_generator_holder.h
377
%%GANDIVA%%include/gandiva/regex_util.h
378
%%GANDIVA%%include/gandiva/selection_vector.h
379
%%GANDIVA%%include/gandiva/selection_vector_impl.h
380
%%GANDIVA%%include/gandiva/simple_arena.h
381
%%GANDIVA%%include/gandiva/to_date_holder.h
382
%%GANDIVA%%include/gandiva/tree_expr_builder.h
383
%%GANDIVA%%include/gandiva/value_validity_pair.h
384
%%GANDIVA%%include/gandiva/visibility.h
385
%%GANDIVA%%lib/cmake/arrow/FindGandiva.cmake
386
%%GANDIVA%%lib/cmake/arrow/GandivaConfig.cmake
387
%%GANDIVA%%lib/cmake/arrow/GandivaConfigVersion.cmake
388
%%GANDIVA%%lib/cmake/arrow/GandivaTargets-%%CMAKE_BUILD_TYPE%%.cmake
389
%%GANDIVA%%lib/cmake/arrow/GandivaTargets.cmake
390
%%GANDIVA%%lib/libgandiva.so
391
%%GANDIVA%%lib/libgandiva.so.100
392
%%GANDIVA%%lib/libgandiva.so.100.1.0
393
%%GANDIVA%%libdata/pkgconfig/gandiva.pc
394
%%JSON%%include/arrow/json/api.h
395
%%JSON%%include/arrow/json/chunked_builder.h
396
%%JSON%%include/arrow/json/chunker.h
397
%%JSON%%include/arrow/json/converter.h
398
%%JSON%%include/arrow/json/options.h
399
%%JSON%%include/arrow/json/parser.h
400
%%JSON%%include/arrow/json/rapidjson_defs.h
401
%%JSON%%include/arrow/json/reader.h
402
%%JSON%%include/arrow/json/test_common.h
403
%%JSON%%libdata/pkgconfig/arrow-json.pc

Return to bug 249947