*/*: sync with upstream

Taken from: FreeBSD
This commit is contained in:
Franco Fichtner 2023-02-28 12:25:11 +01:00
parent b88384085c
commit 17638ba431
307 changed files with 2716 additions and 3576 deletions

View file

@ -11,6 +11,9 @@ COMMENT= Converts WAV files into CDR audio file format
LICENSE= GPLv2
DEPRECATED= Obsolete utility, consider using multimedia/ffmpeg
EXPIRATION_DATE=2023-03-31
USES= tar:bz2
WRKSRC= ${WRKDIR}/${PORTNAME}

View file

@ -14,6 +14,7 @@ WWW= https://github.com/zmike/vkoverhead
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_armv7= fails to build due -Werror=int-conversion
BROKEN_i386= fails to build due -Werror=int-conversion
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mako>0:textproc/py-mako@${PY_FLAVOR}

View file

@ -1,6 +1,6 @@
PORTNAME= auto-cn-l10n
PORTVERSION= 1.1
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= chinese
#MASTER_SITES= ftp://local-distfiles.freebsd.org.cn/pub/china-ports/hamigua/
MASTER_SITES= LOCAL/delphij
@ -12,14 +12,13 @@ COMMENT= The automatic localization for Simplified Chinese zh_CN.eucCN locale
NO_BUILD= yes
SUB_FILES= pkg-message
OPTIONS_DEFINE= WQY FIREFLYTTF FCITX SCIM MINICHINPUT RELAXCONF
OPTIONS_DEFAULT= WQY SCIM RELAXCONF
OPTIONS_DEFINE= WQY FIREFLYTTF FCITX SCIM MINICHINPUT
OPTIONS_DEFAULT= WQY SCIM
WQY_DESC= WenQuanYi Bitmap Song Font
FIREFLYTTF_DESC= Firefly TrueType Font
FCITX_DESC= GBK Chinese XIM server
SCIM_DESC= Smart Common Input Method platform
MINICHINPUT_DESC= A tiny version of Chinput
RELAXCONF_DESC= A set of utilities for FreeBSD LiveCD
WQY_RUN_DEPENDS= ${LOCALBASE}/share/fonts/wqy/wenquanyi_10pt.pcf:x11-fonts/wqy
FIREFLYTTF_RUN_DEPENDS= ${LOCALBASE}/share/fonts/TrueType/fireflysung.ttf:chinese/fireflyttf
@ -27,7 +26,6 @@ FCITX_RUN_DEPENDS= fcitx:chinese/fcitx
SCIM_RUN_DEPENDS= ${LOCALBASE}/share/scim/tables/Wubi.bin:chinese/scim-tables \
${LOCALBASE}/lib/scim-1.0/1.4.0/IMEngine/pinyin.so:chinese/scim-pinyin
MINICHINPUT_RUN_DEPENDS=chinput:chinese/miniChinput
RELAXCONF_RUN_DEPENDS= relaxconf:sysutils/relaxconf
post-patch:
@${REINPLACE_CMD} -e "s|%%X11BASE%%|${LOCALBASE}|g; \

View file

@ -1,6 +1,6 @@
PORTNAME= duckdb
DISTVERSIONPREFIX= v
DISTVERSION= 0.6.1
DISTVERSION= 0.7.1
CATEGORIES= databases
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1670553798
SHA256 (duckdb-duckdb-v0.6.1_GH0.tar.gz) = ea9bba89ae3e461f3fc9f83911b2f3b6c386c23463bcf7b1ed6bb4cc13e822a4
SIZE (duckdb-duckdb-v0.6.1_GH0.tar.gz) = 74520216
TIMESTAMP = 1677519558
SHA256 (duckdb-duckdb-v0.7.1_GH0.tar.gz) = 67f840f861e5ffbe137d65a8543642d016f900b89dd035492d562ad11acf0e1e
SIZE (duckdb-duckdb-v0.7.1_GH0.tar.gz) = 74701865

View file

@ -7,6 +7,9 @@ include/duckdb/catalog/catalog_entry/aggregate_function_catalog_entry.hpp
include/duckdb/catalog/catalog_entry/collate_catalog_entry.hpp
include/duckdb/catalog/catalog_entry/column_dependency_manager.hpp
include/duckdb/catalog/catalog_entry/copy_function_catalog_entry.hpp
include/duckdb/catalog/catalog_entry/duck_index_entry.hpp
include/duckdb/catalog/catalog_entry/duck_schema_entry.hpp
include/duckdb/catalog/catalog_entry/duck_table_entry.hpp
include/duckdb/catalog/catalog_entry/index_catalog_entry.hpp
include/duckdb/catalog/catalog_entry/list.hpp
include/duckdb/catalog/catalog_entry/macro_catalog_entry.hpp
@ -23,14 +26,18 @@ include/duckdb/catalog/catalog_entry/type_catalog_entry.hpp
include/duckdb/catalog/catalog_entry/view_catalog_entry.hpp
include/duckdb/catalog/catalog_search_path.hpp
include/duckdb/catalog/catalog_set.hpp
include/duckdb/catalog/catalog_transaction.hpp
include/duckdb/catalog/default/default_functions.hpp
include/duckdb/catalog/default/default_generator.hpp
include/duckdb/catalog/default/default_schemas.hpp
include/duckdb/catalog/default/default_types.hpp
include/duckdb/catalog/default/default_views.hpp
include/duckdb/catalog/dependency.hpp
include/duckdb/catalog/dependency_list.hpp
include/duckdb/catalog/dependency_manager.hpp
include/duckdb/catalog/duck_catalog.hpp
include/duckdb/catalog/mapping_value.hpp
include/duckdb/catalog/similar_catalog_entry.hpp
include/duckdb/catalog/standard_entry.hpp
include/duckdb/common/algorithm.hpp
include/duckdb/common/allocator.hpp
@ -43,6 +50,7 @@ include/duckdb/common/arrow/arrow_wrapper.hpp
include/duckdb/common/arrow/result_arrow_wrapper.hpp
include/duckdb/common/assert.hpp
include/duckdb/common/atomic.hpp
include/duckdb/common/bind_helpers.hpp
include/duckdb/common/bitpacking.hpp
include/duckdb/common/bitset.hpp
include/duckdb/common/box_renderer.hpp
@ -57,6 +65,7 @@ include/duckdb/common/cycle_counter.hpp
include/duckdb/common/deque.hpp
include/duckdb/common/dl.hpp
include/duckdb/common/enum_class_hash.hpp
include/duckdb/common/enums/access_mode.hpp
include/duckdb/common/enums/aggregate_handling.hpp
include/duckdb/common/enums/catalog_type.hpp
include/duckdb/common/enums/compression_type.hpp
@ -66,6 +75,7 @@ include/duckdb/common/enums/file_compression_type.hpp
include/duckdb/common/enums/filter_propagate_result.hpp
include/duckdb/common/enums/index_type.hpp
include/duckdb/common/enums/join_type.hpp
include/duckdb/common/enums/joinref_type.hpp
include/duckdb/common/enums/logical_operator_type.hpp
include/duckdb/common/enums/operator_result_type.hpp
include/duckdb/common/enums/optimizer_type.hpp
@ -78,6 +88,7 @@ include/duckdb/common/enums/relation_type.hpp
include/duckdb/common/enums/scan_options.hpp
include/duckdb/common/enums/set_operation_type.hpp
include/duckdb/common/enums/set_scope.hpp
include/duckdb/common/enums/set_type.hpp
include/duckdb/common/enums/statement_type.hpp
include/duckdb/common/enums/subquery_type.hpp
include/duckdb/common/enums/tableref_type.hpp
@ -97,6 +108,7 @@ include/duckdb/common/fstream.hpp
include/duckdb/common/gzip_file_system.hpp
include/duckdb/common/helper.hpp
include/duckdb/common/hive_partitioning.hpp
include/duckdb/common/http_stats.hpp
include/duckdb/common/index_map.hpp
include/duckdb/common/index_vector.hpp
include/duckdb/common/likely.hpp
@ -124,7 +136,9 @@ include/duckdb/common/pipe_file_system.hpp
include/duckdb/common/preserved_error.hpp
include/duckdb/common/printer.hpp
include/duckdb/common/profiler.hpp
include/duckdb/common/progress_bar.hpp
include/duckdb/common/progress_bar/display/terminal_progress_bar_display.hpp
include/duckdb/common/progress_bar/progress_bar.hpp
include/duckdb/common/progress_bar/progress_bar_display.hpp
include/duckdb/common/queue.hpp
include/duckdb/common/radix.hpp
include/duckdb/common/radix_partitioning.hpp
@ -154,6 +168,7 @@ include/duckdb/common/type_util.hpp
include/duckdb/common/types.hpp
include/duckdb/common/types/arrow_aux_data.hpp
include/duckdb/common/types/batched_data_collection.hpp
include/duckdb/common/types/bit.hpp
include/duckdb/common/types/blob.hpp
include/duckdb/common/types/cast_helpers.hpp
include/duckdb/common/types/chunk_collection.hpp
@ -163,6 +178,8 @@ include/duckdb/common/types/column_data_collection_iterators.hpp
include/duckdb/common/types/column_data_collection_segment.hpp
include/duckdb/common/types/column_data_consumer.hpp
include/duckdb/common/types/column_data_scan_states.hpp
include/duckdb/common/types/conflict_manager.hpp
include/duckdb/common/types/constraint_conflict_info.hpp
include/duckdb/common/types/data_chunk.hpp
include/duckdb/common/types/date.hpp
include/duckdb/common/types/datetime.hpp
@ -190,6 +207,8 @@ include/duckdb/common/types/value_map.hpp
include/duckdb/common/types/vector.hpp
include/duckdb/common/types/vector_buffer.hpp
include/duckdb/common/types/vector_cache.hpp
include/duckdb/common/unicode_bar.hpp
include/duckdb/common/union_by_name.hpp
include/duckdb/common/unordered_map.hpp
include/duckdb/common/unordered_set.hpp
include/duckdb/common/value_operations/value_operations.hpp
@ -249,6 +268,7 @@ include/duckdb/execution/operator/helper/physical_materialized_collector.hpp
include/duckdb/execution/operator/helper/physical_pragma.hpp
include/duckdb/execution/operator/helper/physical_prepare.hpp
include/duckdb/execution/operator/helper/physical_reservoir_sample.hpp
include/duckdb/execution/operator/helper/physical_reset.hpp
include/duckdb/execution/operator/helper/physical_result_collector.hpp
include/duckdb/execution/operator/helper/physical_set.hpp
include/duckdb/execution/operator/helper/physical_streaming_limit.hpp
@ -267,6 +287,7 @@ include/duckdb/execution/operator/join/physical_index_join.hpp
include/duckdb/execution/operator/join/physical_join.hpp
include/duckdb/execution/operator/join/physical_nested_loop_join.hpp
include/duckdb/execution/operator/join/physical_piecewise_merge_join.hpp
include/duckdb/execution/operator/join/physical_positional_join.hpp
include/duckdb/execution/operator/join/physical_range_join.hpp
include/duckdb/execution/operator/order/physical_order.hpp
include/duckdb/execution/operator/order/physical_top_n.hpp
@ -289,8 +310,10 @@ include/duckdb/execution/operator/scan/physical_column_data_scan.hpp
include/duckdb/execution/operator/scan/physical_dummy_scan.hpp
include/duckdb/execution/operator/scan/physical_empty_result.hpp
include/duckdb/execution/operator/scan/physical_expression_scan.hpp
include/duckdb/execution/operator/scan/physical_positional_scan.hpp
include/duckdb/execution/operator/scan/physical_table_scan.hpp
include/duckdb/execution/operator/schema/physical_alter.hpp
include/duckdb/execution/operator/schema/physical_attach.hpp
include/duckdb/execution/operator/schema/physical_create_function.hpp
include/duckdb/execution/operator/schema/physical_create_index.hpp
include/duckdb/execution/operator/schema/physical_create_schema.hpp
@ -298,6 +321,7 @@ include/duckdb/execution/operator/schema/physical_create_sequence.hpp
include/duckdb/execution/operator/schema/physical_create_table.hpp
include/duckdb/execution/operator/schema/physical_create_type.hpp
include/duckdb/execution/operator/schema/physical_create_view.hpp
include/duckdb/execution/operator/schema/physical_detach.hpp
include/duckdb/execution/operator/schema/physical_drop.hpp
include/duckdb/execution/operator/set/physical_recursive_cte.hpp
include/duckdb/execution/operator/set/physical_union.hpp
@ -320,6 +344,7 @@ include/duckdb/function/aggregate/regression/regr_slope.hpp
include/duckdb/function/aggregate/regression_functions.hpp
include/duckdb/function/aggregate/sum_helpers.hpp
include/duckdb/function/aggregate_function.hpp
include/duckdb/function/built_in_functions.hpp
include/duckdb/function/cast/cast_function_set.hpp
include/duckdb/function/cast/default_casts.hpp
include/duckdb/function/cast/vector_cast_helpers.hpp
@ -334,8 +359,8 @@ include/duckdb/function/function_set.hpp
include/duckdb/function/macro_function.hpp
include/duckdb/function/pragma/pragma_functions.hpp
include/duckdb/function/pragma_function.hpp
include/duckdb/function/replacement_open.hpp
include/duckdb/function/replacement_scan.hpp
include/duckdb/function/scalar/bit_functions.hpp
include/duckdb/function/scalar/blob_functions.hpp
include/duckdb/function/scalar/date_functions.hpp
include/duckdb/function/scalar/enum_functions.hpp
@ -362,6 +387,7 @@ include/duckdb/function/table_function.hpp
include/duckdb/function/table_macro_function.hpp
include/duckdb/function/udf_function.hpp
include/duckdb/main/appender.hpp
include/duckdb/main/attached_database.hpp
include/duckdb/main/capi/capi_internal.hpp
include/duckdb/main/capi/cast/from_decimal.hpp
include/duckdb/main/capi/cast/generic.hpp
@ -375,10 +401,11 @@ include/duckdb/main/config.hpp
include/duckdb/main/connection.hpp
include/duckdb/main/connection_manager.hpp
include/duckdb/main/database.hpp
include/duckdb/main/database_manager.hpp
include/duckdb/main/db_instance_cache.hpp
include/duckdb/main/error_manager.hpp
include/duckdb/main/extension.hpp
include/duckdb/main/extension_functions.hpp
include/duckdb/main/extension_entries.hpp
include/duckdb/main/extension_helper.hpp
include/duckdb/main/external_dependencies.hpp
include/duckdb/main/loadable_extension.hpp
@ -404,6 +431,7 @@ include/duckdb/main/relation/order_relation.hpp
include/duckdb/main/relation/projection_relation.hpp
include/duckdb/main/relation/query_relation.hpp
include/duckdb/main/relation/read_csv_relation.hpp
include/duckdb/main/relation/read_json_relation.hpp
include/duckdb/main/relation/setop_relation.hpp
include/duckdb/main/relation/subquery_relation.hpp
include/duckdb/main/relation/table_function_relation.hpp
@ -412,27 +440,27 @@ include/duckdb/main/relation/update_relation.hpp
include/duckdb/main/relation/value_relation.hpp
include/duckdb/main/relation/view_relation.hpp
include/duckdb/main/relation/write_csv_relation.hpp
include/duckdb/main/replacement_opens.hpp
include/duckdb/main/relation/write_parquet_relation.hpp
include/duckdb/main/settings.hpp
include/duckdb/main/stream_query_result.hpp
include/duckdb/main/table_description.hpp
include/duckdb/main/valid_checker.hpp
include/duckdb/optimizer/cardinality_estimator.hpp
include/duckdb/optimizer/column_lifetime_optimizer.hpp
include/duckdb/optimizer/common_aggregate_optimizer.hpp
include/duckdb/optimizer/cse_optimizer.hpp
include/duckdb/optimizer/deliminator.hpp
include/duckdb/optimizer/estimated_properties.hpp
include/duckdb/optimizer/expression_heuristics.hpp
include/duckdb/optimizer/expression_rewriter.hpp
include/duckdb/optimizer/filter_combiner.hpp
include/duckdb/optimizer/filter_pullup.hpp
include/duckdb/optimizer/filter_pushdown.hpp
include/duckdb/optimizer/in_clause_rewriter.hpp
include/duckdb/optimizer/join_node.hpp
include/duckdb/optimizer/join_order/cardinality_estimator.hpp
include/duckdb/optimizer/join_order/estimated_properties.hpp
include/duckdb/optimizer/join_order/join_node.hpp
include/duckdb/optimizer/join_order/join_order_optimizer.hpp
include/duckdb/optimizer/join_order/join_relation.hpp
include/duckdb/optimizer/join_order/query_graph.hpp
include/duckdb/optimizer/join_order_optimizer.hpp
include/duckdb/optimizer/matcher/expression_matcher.hpp
include/duckdb/optimizer/matcher/expression_type_matcher.hpp
include/duckdb/optimizer/matcher/function_matcher.hpp
@ -462,6 +490,7 @@ include/duckdb/optimizer/rule/move_constants.hpp
include/duckdb/optimizer/rule/regex_optimizations.hpp
include/duckdb/optimizer/statistics_propagator.hpp
include/duckdb/optimizer/topn_optimizer.hpp
include/duckdb/optimizer/unnest_rewriter.hpp
include/duckdb/parallel/base_pipeline_event.hpp
include/duckdb/parallel/concurrentqueue.hpp
include/duckdb/parallel/event.hpp
@ -512,10 +541,12 @@ include/duckdb/parser/keyword_helper.hpp
include/duckdb/parser/parsed_data/alter_function_info.hpp
include/duckdb/parser/parsed_data/alter_info.hpp
include/duckdb/parser/parsed_data/alter_table_info.hpp
include/duckdb/parser/parsed_data/attach_info.hpp
include/duckdb/parser/parsed_data/copy_info.hpp
include/duckdb/parser/parsed_data/create_aggregate_function_info.hpp
include/duckdb/parser/parsed_data/create_collation_info.hpp
include/duckdb/parser/parsed_data/create_copy_function_info.hpp
include/duckdb/parser/parsed_data/create_database_info.hpp
include/duckdb/parser/parsed_data/create_function_info.hpp
include/duckdb/parser/parsed_data/create_index_info.hpp
include/duckdb/parser/parsed_data/create_info.hpp
@ -528,6 +559,7 @@ include/duckdb/parser/parsed_data/create_table_function_info.hpp
include/duckdb/parser/parsed_data/create_table_info.hpp
include/duckdb/parser/parsed_data/create_type_info.hpp
include/duckdb/parser/parsed_data/create_view_info.hpp
include/duckdb/parser/parsed_data/detach_info.hpp
include/duckdb/parser/parsed_data/drop_info.hpp
include/duckdb/parser/parsed_data/exported_table_data.hpp
include/duckdb/parser/parsed_data/load_info.hpp
@ -552,10 +584,12 @@ include/duckdb/parser/result_modifier.hpp
include/duckdb/parser/simplified_token.hpp
include/duckdb/parser/sql_statement.hpp
include/duckdb/parser/statement/alter_statement.hpp
include/duckdb/parser/statement/attach_statement.hpp
include/duckdb/parser/statement/call_statement.hpp
include/duckdb/parser/statement/copy_statement.hpp
include/duckdb/parser/statement/create_statement.hpp
include/duckdb/parser/statement/delete_statement.hpp
include/duckdb/parser/statement/detach_statement.hpp
include/duckdb/parser/statement/drop_statement.hpp
include/duckdb/parser/statement/execute_statement.hpp
include/duckdb/parser/statement/explain_statement.hpp
@ -576,7 +610,6 @@ include/duckdb/parser/statement/update_statement.hpp
include/duckdb/parser/statement/vacuum_statement.hpp
include/duckdb/parser/tableref.hpp
include/duckdb/parser/tableref/basetableref.hpp
include/duckdb/parser/tableref/crossproductref.hpp
include/duckdb/parser/tableref/emptytableref.hpp
include/duckdb/parser/tableref/expressionlistref.hpp
include/duckdb/parser/tableref/joinref.hpp
@ -613,6 +646,7 @@ include/duckdb/planner/expression/bound_constant_expression.hpp
include/duckdb/planner/expression/bound_default_expression.hpp
include/duckdb/planner/expression/bound_function_expression.hpp
include/duckdb/planner/expression/bound_lambda_expression.hpp
include/duckdb/planner/expression/bound_lambdaref_expression.hpp
include/duckdb/planner/expression/bound_operator_expression.hpp
include/duckdb/planner/expression/bound_parameter_data.hpp
include/duckdb/planner/expression/bound_parameter_expression.hpp
@ -631,6 +665,7 @@ include/duckdb/planner/expression_binder/group_binder.hpp
include/duckdb/planner/expression_binder/having_binder.hpp
include/duckdb/planner/expression_binder/index_binder.hpp
include/duckdb/planner/expression_binder/insert_binder.hpp
include/duckdb/planner/expression_binder/lateral_binder.hpp
include/duckdb/planner/expression_binder/order_binder.hpp
include/duckdb/planner/expression_binder/qualify_binder.hpp
include/duckdb/planner/expression_binder/relation_binder.hpp
@ -676,16 +711,19 @@ include/duckdb/planner/operator/logical_join.hpp
include/duckdb/planner/operator/logical_limit.hpp
include/duckdb/planner/operator/logical_limit_percent.hpp
include/duckdb/planner/operator/logical_order.hpp
include/duckdb/planner/operator/logical_positional_join.hpp
include/duckdb/planner/operator/logical_pragma.hpp
include/duckdb/planner/operator/logical_prepare.hpp
include/duckdb/planner/operator/logical_projection.hpp
include/duckdb/planner/operator/logical_recursive_cte.hpp
include/duckdb/planner/operator/logical_reset.hpp
include/duckdb/planner/operator/logical_sample.hpp
include/duckdb/planner/operator/logical_set.hpp
include/duckdb/planner/operator/logical_set_operation.hpp
include/duckdb/planner/operator/logical_show.hpp
include/duckdb/planner/operator/logical_simple.hpp
include/duckdb/planner/operator/logical_top_n.hpp
include/duckdb/planner/operator/logical_unconditional_join.hpp
include/duckdb/planner/operator/logical_unnest.hpp
include/duckdb/planner/operator/logical_update.hpp
include/duckdb/planner/operator/logical_window.hpp
@ -704,11 +742,11 @@ include/duckdb/planner/subquery/rewrite_correlated_expressions.hpp
include/duckdb/planner/table_binding.hpp
include/duckdb/planner/table_filter.hpp
include/duckdb/planner/tableref/bound_basetableref.hpp
include/duckdb/planner/tableref/bound_crossproductref.hpp
include/duckdb/planner/tableref/bound_cteref.hpp
include/duckdb/planner/tableref/bound_dummytableref.hpp
include/duckdb/planner/tableref/bound_expressionlistref.hpp
include/duckdb/planner/tableref/bound_joinref.hpp
include/duckdb/planner/tableref/bound_pos_join_ref.hpp
include/duckdb/planner/tableref/bound_subqueryref.hpp
include/duckdb/planner/tableref/bound_table_function.hpp
include/duckdb/planner/tableref/list.hpp
@ -724,6 +762,7 @@ include/duckdb/storage/checkpoint/table_data_reader.hpp
include/duckdb/storage/checkpoint/table_data_writer.hpp
include/duckdb/storage/checkpoint/write_overflow_strings_to_disk.hpp
include/duckdb/storage/checkpoint_manager.hpp
include/duckdb/storage/compression/bitpacking.hpp
include/duckdb/storage/compression/chimp/algorithm/bit_reader.hpp
include/duckdb/storage/compression/chimp/algorithm/bit_utils.hpp
include/duckdb/storage/compression/chimp/algorithm/byte_reader.hpp
@ -749,8 +788,10 @@ include/duckdb/storage/compression/patas/patas_scan.hpp
include/duckdb/storage/compression/patas/shared.hpp
include/duckdb/storage/data_pointer.hpp
include/duckdb/storage/data_table.hpp
include/duckdb/storage/database_size.hpp
include/duckdb/storage/in_memory_block_manager.hpp
include/duckdb/storage/index.hpp
include/duckdb/storage/magic_bytes.hpp
include/duckdb/storage/meta_block_reader.hpp
include/duckdb/storage/meta_block_writer.hpp
include/duckdb/storage/object_cache.hpp
@ -767,6 +808,7 @@ include/duckdb/storage/statistics/segment_statistics.hpp
include/duckdb/storage/statistics/string_statistics.hpp
include/duckdb/storage/statistics/struct_statistics.hpp
include/duckdb/storage/statistics/validity_statistics.hpp
include/duckdb/storage/storage_extension.hpp
include/duckdb/storage/storage_info.hpp
include/duckdb/storage/storage_lock.hpp
include/duckdb/storage/storage_manager.hpp
@ -793,12 +835,16 @@ include/duckdb/storage/table/table_statistics.hpp
include/duckdb/storage/table/update_segment.hpp
include/duckdb/storage/table/validity_column_data.hpp
include/duckdb/storage/table_io_manager.hpp
include/duckdb/storage/table_storage_info.hpp
include/duckdb/storage/write_ahead_log.hpp
include/duckdb/transaction/append_info.hpp
include/duckdb/transaction/cleanup_state.hpp
include/duckdb/transaction/commit_state.hpp
include/duckdb/transaction/delete_info.hpp
include/duckdb/transaction/duck_transaction.hpp
include/duckdb/transaction/duck_transaction_manager.hpp
include/duckdb/transaction/local_storage.hpp
include/duckdb/transaction/meta_transaction.hpp
include/duckdb/transaction/rollback_state.hpp
include/duckdb/transaction/transaction.hpp
include/duckdb/transaction/transaction_context.hpp

View file

@ -1,18 +1,18 @@
PORTNAME= aiosqlite
PORTVERSION= 0.17.0
PORTVERSION= 0.18.0
CATEGORIES= databases python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= romain@FreeBSD.org
COMMENT= AsyncIO bridge to the standard sqlite3 module for Python 3.5+
COMMENT= AsyncIO bridge to the standard sqlite3 module for Python 3.7+
WWW= https://pypi.python.org/pypi/aiosqlite
LICENSE= MIT
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR}
USES= python:3.5+
USES= python:3.7+
USE_PYTHON= autoplist distutils
NO_ARCH= yes

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1621230469
SHA256 (aiosqlite-0.17.0.tar.gz) = f0e6acc24bc4864149267ac82fb46dfb3be4455f99fe21df82609cc6e6baee51
SIZE (aiosqlite-0.17.0.tar.gz) = 25941
TIMESTAMP = 1673501058
SHA256 (aiosqlite-0.18.0.tar.gz) = faa843ef5fb08bafe9a9b3859012d3d9d6f77ce3637899de20606b7fc39aa213
SIZE (aiosqlite-0.18.0.tar.gz) = 27066

View file

@ -1,5 +1,5 @@
PORTNAME= pghero
PORTVERSION= 3.1.0
PORTVERSION= 3.2.0
CATEGORIES= databases rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= -rails61

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1673397391
SHA256 (rubygem/pghero-3.1.0.gem) = 03b95edb9aef8610d4b9f724484c20a66024266eba995a7c1b249b8c34ad2172
SIZE (rubygem/pghero-3.1.0.gem) = 327168
TIMESTAMP = 1677504947
SHA256 (rubygem/pghero-3.2.0.gem) = 29162d7a1cf6b7fc20c58e41b4a97a29ecfecd3a33f7ddf9b350f146e9658788
SIZE (rubygem/pghero-3.2.0.gem) = 357376

View file

@ -1155,6 +1155,7 @@
SUBDIR += libburn
SUBDIR += libcbor
SUBDIR += libccid
SUBDIR += libcdada
SUBDIR += libcdb
SUBDIR += libcds
SUBDIR += libcfu
@ -6697,14 +6698,22 @@
SUBDIR += rubygem-glib2
SUBDIR += rubygem-gobject-introspection
SUBDIR += rubygem-google-api-client
SUBDIR += rubygem-google-apis-cloudbilling_v1
SUBDIR += rubygem-google-apis-cloudresourcemanager_v1
SUBDIR += rubygem-google-apis-compute_v1
SUBDIR += rubygem-google-apis-compute_v1_057
SUBDIR += rubygem-google-apis-container_v1
SUBDIR += rubygem-google-apis-container_v1beta1
SUBDIR += rubygem-google-apis-core
SUBDIR += rubygem-google-apis-discovery_v1
SUBDIR += rubygem-google-apis-generator
SUBDIR += rubygem-google-apis-iam_v1
SUBDIR += rubygem-google-apis-iamcredentials_v1
SUBDIR += rubygem-google-apis-monitoring_v3
SUBDIR += rubygem-google-apis-pubsub_v1
SUBDIR += rubygem-google-apis-serviceusage_v1
SUBDIR += rubygem-google-apis-sqladmin_v1beta4
SUBDIR += rubygem-google-apis-sqladmin_v1beta4_041
SUBDIR += rubygem-google-apis-storage_v1
SUBDIR += rubygem-google-gax
SUBDIR += rubygem-google-iam-v1

View file

@ -1,6 +1,6 @@
PORTNAME= aws-c-io
DISTVERSIONPREFIX= v
DISTVERSION= 0.13.15
DISTVERSION= 0.13.17
CATEGORIES= devel
MAINTAINER= eduardo@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1675603256
SHA256 (awslabs-aws-c-io-v0.13.15_GH0.tar.gz) = a099d6d2e384b88d90059ac01f6558aa6ba2c7be040a1ff2fc44e2e8eb8659b3
SIZE (awslabs-aws-c-io-v0.13.15_GH0.tar.gz) = 653956
TIMESTAMP = 1677439517
SHA256 (awslabs-aws-c-io-v0.13.17_GH0.tar.gz) = 57866512257db6a1b1a88709852f07c60df60b96d39dfbdcbf3fbb2a1837c890
SIZE (awslabs-aws-c-io-v0.13.17_GH0.tar.gz) = 655621

View file

@ -1,5 +1,5 @@
PORTNAME= aws-sdk-cpp
DISTVERSION= 1.11.10
DISTVERSION= 1.11.25
CATEGORIES= devel
MAINTAINER= eduardo@FreeBSD.org
@ -9,11 +9,6 @@ WWW= https://github.com/aws/aws-sdk-cpp
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_armv6= fails to build: runaway process
BROKEN_armv7= fails to build: runaway process
BROKEN_i386= fails to build: compiler runs out of memory
BROKEN_powerpc= fails to build: compiler runs out of memory
LIB_DEPENDS= libaws-c-auth.so:security/aws-c-auth \
libaws-c-cal.so:security/aws-c-cal \
libaws-c-common.so:devel/aws-c-common \
@ -58,7 +53,11 @@ BUILD_ONLY?=
OPTIONS_DEFINE= TEST
OPTIONS_SUB= yes
TEST_CMAKE_BOOL_OFF= ENABLE_TESTING
TEST_CMAKE_BOOL= ENABLE_TESTING
TEST_BROKEN_armv6= fails to build: runaway process
TEST_BROKEN_armv7= fails to build: runaway process
TEST_BROKEN_i386= fails to build: compiler runs out of memory
TEST_BROKEN_powerpc= fails to build: compiler runs out of memory
pre-everything::
@${ECHO_MSG}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1675456421
SHA256 (aws-aws-sdk-cpp-1.11.10_GH0.tar.gz) = e1370a57252147df35bd8860f35ad69548bb46077adf7524c2d1dd02ee8aa643
SIZE (aws-aws-sdk-cpp-1.11.10_GH0.tar.gz) = 49752262
TIMESTAMP = 1677440274
SHA256 (aws-aws-sdk-cpp-1.11.25_GH0.tar.gz) = 1103cf18516ca70d76c062af5a2b5c2418c5162235895baf3550a9f356d69f10
SIZE (aws-aws-sdk-cpp-1.11.25_GH0.tar.gz) = 49938123

View file

@ -1,5 +1,5 @@
PORTNAME= cppcheck
PORTVERSION= 2.10
PORTVERSION= 2.10.2
CATEGORIES= devel
MAINTAINER= amdmi3@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1675081481
SHA256 (danmar-cppcheck-2.10_GH0.tar.gz) = 785dcbf711048dfe43ae920b6eff2eeebb4a096e88188a40e173ca4c030f57c3
SIZE (danmar-cppcheck-2.10_GH0.tar.gz) = 3442586
TIMESTAMP = 1677498582
SHA256 (danmar-cppcheck-2.10.2_GH0.tar.gz) = 915785d01fa6f5571e9d450102056466222b554525ce3ad67c61b75508a7a451
SIZE (danmar-cppcheck-2.10.2_GH0.tar.gz) = 3448020

View file

@ -1,6 +1,6 @@
PORTNAME= fatal
DISTVERSIONPREFIX= v
DISTVERSION= 2023.02.20.00
DISTVERSION= 2023.02.27.00
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676914929
SHA256 (facebook-fatal-v2023.02.20.00_GH0.tar.gz) = 296a1f212c22c0b102974013d7fa23d3a9eb4aac19374611af36e6d9c94436d5
SIZE (facebook-fatal-v2023.02.20.00_GH0.tar.gz) = 659038
TIMESTAMP = 1677516142
SHA256 (facebook-fatal-v2023.02.27.00_GH0.tar.gz) = fe097f66f781197bd58aff85e5b7dbb7fc1f0d4e1234663917b1a5b1a5352780
SIZE (facebook-fatal-v2023.02.27.00_GH0.tar.gz) = 659044

View file

@ -1,6 +1,6 @@
PORTNAME= fbthrift
DISTVERSIONPREFIX= v
DISTVERSION= 2023.02.20.00
DISTVERSION= 2023.02.27.00
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676914927
SHA256 (facebook-fbthrift-v2023.02.20.00_GH0.tar.gz) = bd71cc5977d56c84a6a1f1da960c5898ae5d66a2da17f69fd3fdecbf56b1b225
SIZE (facebook-fbthrift-v2023.02.20.00_GH0.tar.gz) = 13533284
TIMESTAMP = 1677516140
SHA256 (facebook-fbthrift-v2023.02.27.00_GH0.tar.gz) = 735cb2d078aa76fdecfcc6fa664fdf702665d95f8a081033bce7ef7de5e4de37
SIZE (facebook-fbthrift-v2023.02.27.00_GH0.tar.gz) = 13534505

View file

@ -1,6 +1,6 @@
PORTNAME= folly
DISTVERSIONPREFIX= v
DISTVERSION= 2023.02.20.00
DISTVERSION= 2023.02.27.00
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676914920
SHA256 (facebook-folly-v2023.02.20.00_GH0.tar.gz) = fba814d7cf620e58d803b03673950f0b38e43e7530f0285c3b2bf671e337a9d1
SIZE (facebook-folly-v2023.02.20.00_GH0.tar.gz) = 3796288
TIMESTAMP = 1677516133
SHA256 (facebook-folly-v2023.02.27.00_GH0.tar.gz) = 7f9be37a69341c2ade447c4ee9e260808549cdfe1491c7fa77bcebf30158bd39
SIZE (facebook-folly-v2023.02.27.00_GH0.tar.gz) = 3796974

View file

@ -1,4 +1,4 @@
PORTREVISION= 1
PORTREVISION= 0
CATEGORIES= devel
COMMENT= GStreamer soup based http input plugin

View file

@ -1,6 +1,5 @@
PORTNAME= leatherman
PORTVERSION= 1.12.6
PORTREVISION= 3
PORTVERSION= 1.12.9
CATEGORIES= devel
MAINTAINER= puppet@FreeBSD.org
@ -21,6 +20,10 @@ CMAKE_OFF= ENABLE_CXX_WERROR
USE_LDCONFIG= yes
TEST_TARGET= test
post-configure:
# This file is vendored in vendor/Catch-1.10.0.zip and extracted at configure step
${SED} -i '' -e '1s|\(.*\)|#include <sys/signal.h>\n\1|' ${CONFIGURE_WRKSRC}/src/Catch-1.10.0/single_include/catch.hpp
PLIST_SUB= PORTVERSION=${PORTVERSION}
.include <bsd.port.mk>

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1626634142
SHA256 (puppetlabs-leatherman-1.12.6_GH0.tar.gz) = 1a1dbdb8ec000b8d7e586910d7cb7a3c7a4f49913ad439717e571daf88d451d2
SIZE (puppetlabs-leatherman-1.12.6_GH0.tar.gz) = 818106
TIMESTAMP = 1677533770
SHA256 (puppetlabs-leatherman-1.12.9_GH0.tar.gz) = 62c1b86b6bfe8e2f06f84e605b1bad8a0fa3224d2bf2dc33e69b2e46b902c2cb
SIZE (puppetlabs-leatherman-1.12.9_GH0.tar.gz) = 816107

19
devel/libcdada/Makefile Normal file
View file

@ -0,0 +1,19 @@
PORTNAME= libcdada
DISTVERSION= 0.4.0
CATEGORIES= devel
MAINTAINER= pi@FreeBSD.org
COMMENT= Basic data structures in C as libstdc++ wrapper
WWW= https://github.com/msune/libcdada
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= autoreconf pkgconfig python:3.8+ shebangfix
SHEBANG_FILES= tools/cdada-gen
USE_GITHUB= yes
GNU_CONFIGURE= yes
GH_ACCOUNT= msune
GH_TAGNAME= 4eb0b61
.include <bsd.port.mk>

3
devel/libcdada/distinfo Normal file
View file

@ -0,0 +1,3 @@
TIMESTAMP = 1677488705
SHA256 (msune-libcdada-0.4.0-4eb0b61_GH0.tar.gz) = 05271adabadbdc9c77a78fefbe8eb30aaebdfa7e8345fc41de8947555070b410
SIZE (msune-libcdada-0.4.0-4eb0b61_GH0.tar.gz) = 1777253

9
devel/libcdada/pkg-descr Normal file
View file

@ -0,0 +1,9 @@
Small library that offers basic data structures (list, set, map...)
in a pure C API for user-space applications. Key features:
- Easy to use, portable
- No "magic" MACROs, and no need to modify your data structures
(except, perhaps, for __attribute__((packed)))
- Stable and well-tested backend engine (libstdc++) for most of
the data structures
- Reasonable performance - comparable to libstdc++

26
devel/libcdada/pkg-plist Normal file
View file

@ -0,0 +1,26 @@
bin/cdada-gen
include/cdada.h
include/cdada/__common_internal.h
include/cdada/__list_internal.h
include/cdada/__map_internal.h
include/cdada/__queue_internal.h
include/cdada/__set_internal.h
include/cdada/__stack_internal.h
include/cdada/bbitmap.h
include/cdada/list.h
include/cdada/list_custom_cc.h
include/cdada/map.h
include/cdada/map_custom_cc.h
include/cdada/queue.h
include/cdada/queue_custom_cc.h
include/cdada/set.h
include/cdada/set_custom_cc.h
include/cdada/stack.h
include/cdada/stack_custom_cc.h
include/cdada/str.h
include/cdada/utils.h
include/cdada/version.h
lib/libcdada.a
lib/libcdada.so
lib/libcdada.so.0
lib/libcdada.so.0.0.0

View file

@ -5,7 +5,7 @@
PORTNAME= libgit2
DISTVERSIONPREFIX= v
DISTVERSION= 1.5.1
DISTVERSION= 1.5.2
CATEGORIES= devel
MAINTAINER= mfechner@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1674451412
SHA256 (libgit2-libgit2-v1.5.1_GH0.tar.gz) = 7074f1e2697992b82402501182db254fe62d64877b12f6e4c64656516f4cde88
SIZE (libgit2-libgit2-v1.5.1_GH0.tar.gz) = 5895483
TIMESTAMP = 1677481875
SHA256 (libgit2-libgit2-v1.5.2_GH0.tar.gz) = 57638ac0e319078f56a7e17570be754515e5b1276d3750904b4214c92e8fa196
SIZE (libgit2-libgit2-v1.5.2_GH0.tar.gz) = 5896845

View file

@ -1,6 +1,6 @@
PORTNAME= libsigrok
PORTVERSION= 0.5.2
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= http://sigrok.org/download/source/libsigrok/
@ -12,21 +12,23 @@ LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= doxygen:devel/doxygen
LIB_DEPENDS= libhidapi.so:comms/hidapi \
libcheck.so:devel/check \
LIB_DEPENDS= libcheck.so:devel/check \
libftdi1.so:devel/libftdi1 \
libhidapi.so:comms/hidapi \
libserialport.so:devel/libserialport \
libvisa.so:devel/librevisa \
libzip.so:archivers/libzip
USES= compiler:c11 gnome pathfix libtool pkgconfig \
python:-3.9,build shared-mime-info
USES= compiler:c11 gnome libtool pathfix pkgconfig python:-3.9,build \
shared-mime-info
USE_GNOME= glibmm
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
MAKE_JOBS_UNSAFE= yes
USE_LDCONFIG= yes
USE_GNOME= glibmm
INSTALL_TARGET= install-strip
post-patch:
# libusb can be disabled via src.conf(5), so detect via pkg-config

View file

@ -0,0 +1,98 @@
--- Makefile.in.orig 2023-02-26 13:49:58 UTC
+++ Makefile.in
@@ -579,7 +579,7 @@ am__v_lt_0 = --silent
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
-am__v_lt_1 =
+am__v_lt_1 =
bindings_cxx_libsigrokcxx_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(AM_CXXFLAGS) $(CXXFLAGS) \
@@ -1095,12 +1095,12 @@ am__v_GEN_0 = @echo " GEN " $@;
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
-am__v_GEN_1 =
+am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
-am__v_at_1 =
-DEFAULT_INCLUDES =
+am__v_at_1 =
+DEFAULT_INCLUDES =
depcomp = $(SHELL) $(top_srcdir)/autostuff/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = bindings/cxx/$(DEPDIR)/classes.Plo \
@@ -1327,7 +1327,7 @@ am__v_CC_0 = @echo " CC " $@;
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo " CC " $@;
-am__v_CC_1 =
+am__v_CC_1 =
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
@@ -1335,7 +1335,7 @@ am__v_CCLD_0 = @echo " CCLD " $@;
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo " CCLD " $@;
-am__v_CCLD_1 =
+am__v_CCLD_1 =
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
@@ -1345,7 +1345,7 @@ am__v_CXX_0 = @echo " CXX " $@;
AM_V_CXX = $(am__v_CXX_@AM_V@)
am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
am__v_CXX_0 = @echo " CXX " $@;
-am__v_CXX_1 =
+am__v_CXX_1 =
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
@@ -1353,7 +1353,7 @@ am__v_CXXLD_0 = @echo " CXXLD " $@;
AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
am__v_CXXLD_0 = @echo " CXXLD " $@;
-am__v_CXXLD_1 =
+am__v_CXXLD_1 =
SOURCES = $(bindings_cxx_libsigrokcxx_la_SOURCES) \
$(libsigrok_la_SOURCES) $(src_libdrivers_la_SOURCES) \
$(src_libdrivers_head_la_SOURCES) \
@@ -1780,7 +1780,7 @@ local_includes = -Iinclude -I$(srcdir)/include -I$(src
$(am__append_1)
@WIN32_FALSE@global_defs = -DFIRMWARE_DIR='"$(FIRMWARE_DIR)"'
# Do not hard-code the firmware location on Windows.
-@WIN32_TRUE@global_defs =
+@WIN32_TRUE@global_defs =
# Ensure that local include directories are always searched first.
AM_CPPFLAGS = $(local_includes) $(global_defs)
@@ -2020,7 +2020,7 @@ stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
@rm -f stamp-h1
cd $(top_builddir) && $(SHELL) ./config.status config.h
-$(srcdir)/config.h.in: $(am__configure_deps)
+$(srcdir)/config.h.in: $(am__configure_deps)
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
rm -f stamp-h1
touch $@
@@ -2319,7 +2319,7 @@ src/scale/kern.lo: src/scale/$(am__dirstamp) \
src/scale/kern.lo: src/scale/$(am__dirstamp) \
src/scale/$(DEPDIR)/$(am__dirstamp)
-libsigrok.la: $(libsigrok_la_OBJECTS) $(libsigrok_la_DEPENDENCIES) $(EXTRA_libsigrok_la_DEPENDENCIES)
+libsigrok.la: $(libsigrok_la_OBJECTS) $(libsigrok_la_DEPENDENCIES) $(EXTRA_libsigrok_la_DEPENDENCIES)
$(AM_V_CCLD)$(libsigrok_la_LINK) -rpath $(libdir) $(libsigrok_la_OBJECTS) $(libsigrok_la_LIBADD) $(LIBS)
src/drivers.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
src/hardware/agilent-dmm/$(am__dirstamp):
@@ -5262,6 +5262,7 @@ $(CPPXMLDOC): bindings/cxx/include/libsigrokcxx/libsig
@BINDINGS_RUBY_TRUE@$(RDOC): $(srcdir)/bindings/swig/doc.py $(CPPXMLDOC)
@BINDINGS_RUBY_TRUE@ $(AM_V_at)test -d $(RDIR) || $(MKDIR_P) $(RDIR)
@BINDINGS_RUBY_TRUE@ $(AM_V_GEN)$(PYTHON) $(srcdir)/bindings/swig/doc.py ruby $(CPPXMLDOC) > $@
+@BINDINGS_RUBY_TRUE@ /bin/cp /dev/null $@
@BINDINGS_RUBY_TRUE@$(RWRAP): $(srcdir)/$(RDIR)/classes.i $(RDOC) \
@BINDINGS_RUBY_TRUE@ bindings/swig/classes.i bindings/swig/templates.i \

View file

@ -1,6 +1,6 @@
--- src/hardware/lascar-el-usb/protocol.c.orig 2017-06-12 01:07:28 UTC
--- src/hardware/lascar-el-usb/protocol.c.orig 2019-12-25 20:29:19 UTC
+++ src/hardware/lascar-el-usb/protocol.c
@@ -508,8 +508,7 @@ SR_PRIV int lascar_el_usb_handle_events(int fd, int re
@@ -513,8 +513,7 @@ SR_PRIV int lascar_el_usb_handle_events(int fd, int re
}
memset(&tv, 0, sizeof(struct timeval));

View file

@ -1,11 +1,9 @@
PORTNAME= openssl
PORTVERSION= 1.0.2d
PORTREVISION= 2
PORTVERSION= 1.0.2u
CATEGORIES= devel security
MASTER_SITES= http://www.openssl.org/source/ \
ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/
MASTER_SITES= https://www.openssl.org/source/old/${PORTVERSION:C/[a-z]*$//}/ \
http://artfiles.org/openssl.org/source/old/${PORTVERSION:C/[a-z]*$//}/
PKGNAMEPREFIX= mingw32-
DIST_SUBDIR= ${DISTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= The OpenSSL library cross-compiled for MinGW32

View file

@ -1,2 +1,3 @@
SHA256 (openssl-1.0.2d/openssl-1.0.2d.tar.gz) = 671c36487785628a703374c652ad2cebea45fa920ae5681515df25d9f2c9a8c8
SIZE (openssl-1.0.2d/openssl-1.0.2d.tar.gz) = 5295447
TIMESTAMP = 1576848343
SHA256 (openssl-1.0.2u.tar.gz) = ecd0c6ffb493dd06707d38b14bb4d8c2288bb7033735606569d8f90f89669d16
SIZE (openssl-1.0.2u.tar.gz) = 5355412

View file

@ -1,5 +1,5 @@
PORTNAME= omake
DISTVERSION= 0.10.5
DISTVERSION= 0.10.6
CATEGORIES= devel
MASTER_SITES= http://download.camlcity.org/download/

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1665258743
SHA256 (omake-0.10.5.tar.gz) = 54e16ad8a2c16e66424601f37e90fba748b217cc94d6d4dbcaf4e239ca66f7c4
SIZE (omake-0.10.5.tar.gz) = 1949315
TIMESTAMP = 1677488678
SHA256 (omake-0.10.6.tar.gz) = 02e499127c9bca4f0768367b99bc03aa3157317550ed30d1b9153f69163cff21
SIZE (omake-0.10.6.tar.gz) = 1949449

View file

@ -1,6 +1,6 @@
PORTNAME= open62541
DISTVERSIONPREFIX= v
DISTVERSION= 1.3.4
DISTVERSION= 1.3.5
CATEGORIES= devel
MAINTAINER= nsonack@outlook.com

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676633585
SHA256 (open62541-open62541-v1.3.4_GH0.tar.gz) = 3489cfa2f98c52df252adc8e641a9e59cb675bdfd5ef413b0d947e667cddd16d
SIZE (open62541-open62541-v1.3.4_GH0.tar.gz) = 3867546
TIMESTAMP = 1677088595
SHA256 (open62541-open62541-v1.3.5_GH0.tar.gz) = 308aa8845f9cc3a99427636d2282e9bed2a26fbc8a404fe2ad1699146e4f4342
SIZE (open62541-open62541-v1.3.5_GH0.tar.gz) = 3870493

View file

@ -41,7 +41,7 @@ lib/cmake/open62541/open62541Targets-release.cmake
lib/cmake/open62541/open62541Targets.cmake
lib/libopen62541.so
lib/libopen62541.so.1
lib/libopen62541.so.1.3.3
lib/libopen62541.so.1.3.5
%%DATADIR%%/tools/certs/create_self-signed.py
%%DATADIR%%/tools/certs/localhost.cnf
%%DATADIR%%/tools/generate_datatypes.py

View file

@ -1,6 +1,5 @@
PORTNAME= ipympl
DISTVERSION= 0.9.2
PORTREVISION= 1
DISTVERSION= 0.9.3
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1662027860
SHA256 (ipympl-0.9.2.tar.gz) = c865c1992248f9966fbe4b6006239ae2959b00fc7e887ae32b0bd389808f0f8b
SIZE (ipympl-0.9.2.tar.gz) = 266943
TIMESTAMP = 1676804541
SHA256 (ipympl-0.9.3.tar.gz) = 49bab75c05673a6881d1aaec5d8ac81d4624f73d292d154c5fb7096f10236a2b
SIZE (ipympl-0.9.3.tar.gz) = 267567

View file

@ -1,11 +1,10 @@
PORTNAME= ipywidgets
PORTVERSION= 7.6.5
PORTREVISION= 1
PORTVERSION= 8.0.4
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= swills@FreeBSD.org
MAINTAINER= makc@FreeBSD.org
COMMENT= Interactive HTML widgets for Jupyter notebooks and the IPython kernel
WWW= https://ipywidgets.readthedocs.io
@ -13,10 +12,11 @@ LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipykernel>=4.5.1:devel/py-ipykernel@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}ipython>=4.0.0:devel/ipython@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}ipython>=6.1.0:devel/ipython@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}nbformat>=4.2.0:devel/py-nbformat@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}traitlets>=4.3.1:devel/py-traitlets@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}widgetsnbextension>=3.5.0:devel/py-widgetsnbextension@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}widgetsnbextension>=4.0.0:devel/py-widgetsnbextension@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}jupyterlab-widgets>=3.0.0:devel/py-jupyterlab-widgets@${PY_FLAVOR} \
USES= python:3.7+
USE_PYTHON= autoplist distutils

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1636214227
SHA256 (ipywidgets-7.6.5.tar.gz) = 00974f7cb4d5f8d494c19810fedb9fa9b64bffd3cda7c2be23c133a1ad3c99c5
SIZE (ipywidgets-7.6.5.tar.gz) = 4072535
TIMESTAMP = 1676229504
SHA256 (ipywidgets-8.0.4.tar.gz) = c0005a77a47d77889cafed892b58e33b4a2a96712154404c6548ec22272811ea
SIZE (ipywidgets-8.0.4.tar.gz) = 114780

View file

@ -1,5 +1,5 @@
PORTNAME= jupyterlab-widgets
DISTVERSION= 3.0.3
DISTVERSION= 3.0.5
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1667935934
SHA256 (jupyterlab_widgets-3.0.3.tar.gz) = c767181399b4ca8b647befe2d913b1260f51bf9d8ef9b7a14632d4c1a7b536bd
SIZE (jupyterlab_widgets-3.0.3.tar.gz) = 189425
TIMESTAMP = 1676222853
SHA256 (jupyterlab_widgets-3.0.5.tar.gz) = eeaecdeaf6c03afc960ddae201ced88d5979b4ca9c3891bcb8f6631af705f5ef
SIZE (jupyterlab_widgets-3.0.5.tar.gz) = 189576

View file

@ -1,5 +1,5 @@
PORTNAME= pydispatcher
PORTVERSION= 2.0.5
PORTVERSION= 2.0.7
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1494864695
SHA256 (PyDispatcher-2.0.5.tar.gz) = 5570069e1b1769af1fe481de6dd1d3a388492acddd2cdad7a3bde145615d5caf
SIZE (PyDispatcher-2.0.5.tar.gz) = 34437
TIMESTAMP = 1676993290
SHA256 (PyDispatcher-2.0.7.tar.gz) = b777c6ad080dc1bad74a4c29d6a46914fa6701ac70f94b0d66fbcfde62f5be31
SIZE (PyDispatcher-2.0.7.tar.gz) = 38891

View file

@ -1,5 +1,5 @@
PORTNAME= types-Pillow
PORTVERSION= 9.4.0.13
PORTVERSION= 9.4.0.17
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676924688
SHA256 (types-Pillow-9.4.0.13.tar.gz) = 4510aa98a28947bf63f2b29edebbd11b7cff8647d90b867cec9b3674c0a8c321
SIZE (types-Pillow-9.4.0.13.tar.gz) = 25881
TIMESTAMP = 1677498652
SHA256 (types-Pillow-9.4.0.17.tar.gz) = 7f0e871d2d46fbb6bc7deca3e02dc552cf9c1e8b49deb9595509551be3954e49
SIZE (types-Pillow-9.4.0.17.tar.gz) = 26323

View file

@ -1,5 +1,5 @@
PORTNAME= types-PyYAML
PORTVERSION= 6.0.12.7
PORTVERSION= 6.0.12.8
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676924677
SHA256 (types-PyYAML-6.0.12.7.tar.gz) = ad40c99142b1812615bac08d5e240d35107a27ec285af501682c685957692f95
SIZE (types-PyYAML-6.0.12.7.tar.gz) = 11358
TIMESTAMP = 1677498974
SHA256 (types-PyYAML-6.0.12.8.tar.gz) = 19304869a89d49af00be681e7b267414df213f4eb89634c4495fa62e8f942b9f
SIZE (types-PyYAML-6.0.12.8.tar.gz) = 11562

View file

@ -1,5 +1,5 @@
PORTNAME= types-protobuf
PORTVERSION= 4.21.0.6
PORTVERSION= 4.21.0.7
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676473433
SHA256 (types-protobuf-4.21.0.6.tar.gz) = 8c105b906569e9d53ba033465880d9ef17a59bf3ba8ab656d24c9eadb9d8a056
SIZE (types-protobuf-4.21.0.6.tar.gz) = 46645
TIMESTAMP = 1677498863
SHA256 (types-protobuf-4.21.0.7.tar.gz) = 6ecaddcc7aed2c636745a17c1411932cdef7a035304d50ffd4140297b6b882e8
SIZE (types-protobuf-4.21.0.7.tar.gz) = 46813

View file

@ -1,5 +1,5 @@
PORTNAME= types-psycopg2
PORTVERSION= 2.9.21.5
PORTVERSION= 2.9.21.8
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676473469
SHA256 (types-psycopg2-2.9.21.5.tar.gz) = 93e436f5cc5e691f9f3004cef81675b8b5fab97689fc74d9d20f95bba80b3432
SIZE (types-psycopg2-2.9.21.5.tar.gz) = 18396
TIMESTAMP = 1677498895
SHA256 (types-psycopg2-2.9.21.8.tar.gz) = b629440ffcfdebd742fab07f777ff69aefdd19394a138c18e921a1964c3cf5f6
SIZE (types-psycopg2-2.9.21.8.tar.gz) = 18622

View file

@ -1,5 +1,5 @@
PORTNAME= types-requests
PORTVERSION= 2.28.11.13
PORTVERSION= 2.28.11.15
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676473526
SHA256 (types-requests-2.28.11.13.tar.gz) = 3fd332842e8759ea5f7eb7789df8aa772ba155216ccf10ef4aa3b0e5b42e1b46
SIZE (types-requests-2.28.11.13.tar.gz) = 14518
TIMESTAMP = 1677499012
SHA256 (types-requests-2.28.11.15.tar.gz) = fc8eaa09cc014699c6b63c60c2e3add0c8b09a410c818b5ac6e65f92a26dde09
SIZE (types-requests-2.28.11.15.tar.gz) = 14671

View file

@ -1,5 +1,5 @@
PORTNAME= types-urllib3
PORTVERSION= 1.26.25.6
PORTVERSION= 1.26.25.8
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1676473498
SHA256 (types-urllib3-1.26.25.6.tar.gz) = 35586727cbd7751acccf2c0f34a88baffc092f435ab62458f10776466590f2d5
SIZE (types-urllib3-1.26.25.6.tar.gz) = 10403
TIMESTAMP = 1677499026
SHA256 (types-urllib3-1.26.25.8.tar.gz) = ecf43c42d8ee439d732a1110b4901e9017a79a38daca26f08e42c8460069392c
SIZE (types-urllib3-1.26.25.8.tar.gz) = 10588

View file

@ -1,5 +1,5 @@
PORTNAME= watchdog
DISTVERSION= 2.2.1
DISTVERSION= 2.3.1
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -12,7 +12,12 @@ LICENSE= APACHE20
LIB_DEPENDS= libinotify.so:devel/libinotify
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flaky>0:devel/py-flaky@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}eventlet>0:net/py-eventlet@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}flake8>0:devel/py-flake8@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}flaky>0:devel/py-flaky@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest-timeout>0:devel/py-pytest-timeout@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR}
USES= pytest python:3.7+
USE_PYTHON= autoplist concurrent distutils

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1672584540
SHA256 (watchdog-2.2.1.tar.gz) = cdcc23c9528601a8a293eb4369cbd14f6b4f34f07ae8769421252e9c22718b6f
SIZE (watchdog-2.2.1.tar.gz) = 119871
TIMESTAMP = 1677574491
SHA256 (watchdog-2.3.1.tar.gz) = d9f9ed26ed22a9d331820a8432c3680707ea8b54121ddcc9dc7d9f2ceeb36906
SIZE (watchdog-2.3.1.tar.gz) = 123140

View file

@ -1,14 +1,15 @@
PORTNAME= widgetsnbextension
PORTVERSION= 3.5.1
PORTREVISION= 3
PORTVERSION= 4.0.5
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= swills@FreeBSD.org
COMMENT= IPython HTML widgets for Jupyter
MAINTAINER= makc@FreeBSD.org
COMMENT= IPython HTML widgets for Jupyter Notebook
WWW= https://pypi.org/project/widgetsnbextension/
BUILD_DEPENDS= npm>=0:www/npm
BUILD_DEPENDS= npm>=0:www/npm \
${PYTHON_PKGNAMEPREFIX}jupyter-packaging>0:devel/py-jupyter-packaging@${PY_FLAVOR}
USES= python:3.7+
USE_PYTHON= autoplist distutils

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1570809178
SHA256 (widgetsnbextension-3.5.1.tar.gz) = 079f87d87270bce047512400efd70238820751a11d2d8cb137a5a5bdbaf255c7
SIZE (widgetsnbextension-3.5.1.tar.gz) = 1112877
TIMESTAMP = 1676229497
SHA256 (widgetsnbextension-4.0.5.tar.gz) = 003f716d930d385be3fd9de42dd9bf008e30053f73bddde235d14fbeaeff19af
SIZE (widgetsnbextension-4.0.5.tar.gz) = 1022805

View file

@ -66,11 +66,11 @@ ROOT7_CMAKE_BOOL= root7
PLIST_SUB+= SHLIB_SHVER="${DISTVERSION:R}" \
SHLIB_VER="${DISTVERSION}"
# Some .modulemap and .idx files are not installed on aarch64, and files LIBRARY.pcm are renamed LIBRARY_rdict.pcm on aarch64
# Some .modulemap, .pcm and .idx files are not installed on aarch64, a few .pcm files are exclusive to aarch64 and files LIBRARY.pcm are renamed libLIBRARY_rdict.pcm on aarch64
.if ${ARCH} == "aarch64"
PLIST_SUB+= NOT_INSTALLED_ON_AARCH64="@comment " AARCH64_PCM_SUFFIX="_rdict"
PLIST_SUB+= NOT_INSTALLED_ON_AARCH64="@comment " ONLY_INSTALLED_ON_AARCH64="" AARCH64_PCM_PREFIX="lib" AARCH64_PCM_SUFFIX="_rdict"
.else
PLIST_SUB+= NOT_INSTALLED_ON_AARCH64="" AARCH64_PCM_SUFFIX=""
PLIST_SUB+= NOT_INSTALLED_ON_AARCH64="" ONLY_INSTALLED_ON_AARCH64="@comment " AARCH64_PCM_PREFIX="" AARCH64_PCM_SUFFIX=""
.endif
# Some files only installed with LLVM/Clang 13 (used on FreeBSD 12.4 and 13.x)

View file

@ -2802,11 +2802,11 @@ include/root/strtok.h
include/root/v5/TF1Data.h
include/root/v5/TFormula.h
include/root/v5/TFormulaPrimitive.h
lib/root/ASImage%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ASImageGui%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Cling_Runtime_Extra%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Cling_Runtime%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Core%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ASImage%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ASImageGui%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/Cling_Runtime_Extra.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/Cling_Runtime.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/Core.pcm
lib/root/DistRDF/Backends/Base.py
lib/root/DistRDF/Backends/Dask/Backend.py
lib/root/DistRDF/Backends/Dask/__init__.py
@ -2846,34 +2846,34 @@ lib/root/DistRDF/__pycache__/Proxy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
lib/root/DistRDF/__pycache__/Proxy%%PYTHON_EXT_SUFFIX%%.pyc
lib/root/DistRDF/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
lib/root/DistRDF/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
lib/root/EG%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Eve%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/FFTW%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/FITSIO%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/FitPanel%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Foam%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Fumili%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/GX11%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/GX11TTF%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Gdml%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Ged%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/GenVector%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Genetic%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Geom%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/GeomBuilder%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/GeomPainter%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Gpad%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Graf%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Graf3d%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Gui%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/GuiBld%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/GuiHtml%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Gviz3d%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Hist%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/HistFactory%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/HistPainter%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Html%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Imt%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%EG%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Eve%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%FFTW%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%FITSIO%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%FitPanel%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Foam%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Fumili%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%GX11%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%GX11TTF%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Gdml%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Ged%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%GenVector%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Genetic%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Geom%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%GeomBuilder%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%GeomPainter%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Gpad%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Graf%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Graf3d%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Gui%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%GuiBld%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%GuiHtml%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Gviz3d%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Hist%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%HistFactory%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%HistPainter%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Html%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/Imt.pcm
lib/root/JsMVA/DataLoader.py
lib/root/JsMVA/Factory.py
lib/root/JsMVA/JPyInterface.py
@ -2929,31 +2929,31 @@ lib/root/JupyROOT/magics/__pycache__/jsrootmagic%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
lib/root/JupyROOT/magics/__pycache__/jsrootmagic%%PYTHON_EXT_SUFFIX%%.pyc
lib/root/JupyROOT/magics/cppmagic.py
lib/root/JupyROOT/magics/jsrootmagic.py
lib/root/MLP%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/MathCore%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/MathMore%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Matrix%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Minuit%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Minuit2%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/MultiProc%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Net%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Netx%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/NetxNG%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/PgSQL%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Physics%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Postscript%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Proof%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ProofBench%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ProofDraw%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ProofPlayer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/PyMVA%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Quadp%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RCsg%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RGL%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RHTTP%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RHTTPSniff%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RIO%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RMySQL%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%MLP%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%MathCore%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%MathMore%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Matrix%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Minuit%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Minuit2%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/MultiProc.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Net%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Netx%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%NetxNG%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%PgSQL%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Physics%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Postscript%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Proof%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ProofBench%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ProofDraw%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ProofPlayer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%PyMVA%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Quadp%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RCsg%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RGL%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RHTTP%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RHTTPSniff%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/RIO.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RMySQL%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOT/__init__.py
lib/root/ROOT/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
lib/root/ROOT/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
@ -3115,42 +3115,42 @@ lib/root/ROOT/_pythonization/_tstring.py
lib/root/ROOT/_pythonization/_ttree.py
lib/root/ROOT/_pythonization/_tvector3.py
lib/root/ROOT/_pythonization/_tvectort.py
lib/root/ROOTDataFrame%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOTTMVASofie%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOTTPython%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOTVecOps%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOT_Config%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOT_Foundation_C%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOT_Foundation_Stage1_NoRTTI%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOT_Rtypes%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RSQLite%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Recorder%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Rint%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RooFit%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RooFitCore%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RooFitHS3%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RooFitMore%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RooFitRDataFrameHelpers%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RooStats%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RootAuth%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/SPlot%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/SQLIO%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/SessionViewer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Smatrix%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Spectrum%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/SpectrumPainter%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/TMVA%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/TMVAGui%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Thread%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Tree%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/TreePlayer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/TreeViewer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/Unfold%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/X3d%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/XMLIO%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/XMLParser%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/_Builtin_intrinsics%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/_Builtin_stddef_max_align_t%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ROOTDataFrame%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ROOTTMVASofie%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ROOTTPython%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ROOTVecOps%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/ROOT_Config.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/ROOT_Foundation_C.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/ROOT_Foundation_Stage1_NoRTTI.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/ROOT_Rtypes.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RSQLite%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Recorder%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/Rint.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RooFit%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RooFitCore%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RooFitHS3%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RooFitMore%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RooFitRDataFrameHelpers%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RooStats%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RootAuth%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%SPlot%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%SQLIO%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%SessionViewer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Smatrix%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Spectrum%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%SpectrumPainter%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%TMVA%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%TMVAGui%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/Thread.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Tree%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%TreePlayer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%TreeViewer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%Unfold%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%X3d%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%XMLIO%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%XMLParser%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/_Builtin_intrinsics.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/_Builtin_stddef_max_align_t.pcm
lib/root/cmdLineUtils.py
lib/root/cppyy/__init__.py
lib/root/cppyy/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
@ -3487,7 +3487,7 @@ lib/root/libXMLIO.so.%%SHLIB_VER%%
lib/root/libXMLParser.so
lib/root/libXMLParser.so.%%SHLIB_SHVER%%
lib/root/libXMLParser.so.%%SHLIB_VER%%
lib/root/libc%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/libc.pcm
lib/root/libcomplexDict.rootmap
lib/root/libcomplexDict.so
lib/root/libcomplexDict.so.%%SHLIB_SHVER%%
@ -3559,8 +3559,8 @@ lib/root/libvectorDict.so
lib/root/libvectorDict.so.%%SHLIB_SHVER%%
lib/root/libvectorDict.so.%%SHLIB_VER%%
%%NOT_INSTALLED_ON_AARCH64%%lib/root/modules.idx
lib/root/std%%AARCH64_PCM_SUFFIX%%.pcm
%%ONLY_INSTALLED_WITH_LLVM_CLANG_13%%lib/root/std_config%%AARCH64_PCM_SUFFIX%%.pcm
%%NOT_INSTALLED_ON_AARCH64%%lib/root/std.pcm
%%ONLY_INSTALLED_WITH_LLVM_CLANG_13%%lib/root/%%AARCH64_PCM_PREFIX%%std_config%%AARCH64_PCM_SUFFIX%%.pcm
%%PORTDOCS%%%%DOCSDIR%%/CREDITS
%%PORTDOCS%%%%DOCSDIR%%/DEVELOPMENT.md
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
@ -6421,15 +6421,15 @@ share/man/man1/xpdtest.1.gz
%%ROOT7%%lib/root/libROOTObjectDraw7Provider.so
%%ROOT7%%lib/root/libROOTObjectDraw7Provider.so.%%SHLIB_SHVER%%
%%ROOT7%%lib/root/libROOTObjectDraw7Provider.so.%%SHLIB_VER%%
%%ROOT7%%lib/root/ROOTBrowsable%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/ROOTBrowserv7%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/ROOTEve%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/ROOTFitPanelv7%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/ROOTGpadv7%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/ROOTGraphicsPrimitives%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/ROOTHist%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/ROOTHistDraw%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/ROOTNTuple%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/%%AARCH64_PCM_PREFIX%%ROOTBrowsable%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/%%AARCH64_PCM_PREFIX%%ROOTBrowserv7%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/%%AARCH64_PCM_PREFIX%%ROOTEve%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/%%AARCH64_PCM_PREFIX%%ROOTFitPanelv7%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/%%AARCH64_PCM_PREFIX%%ROOTGpadv7%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/%%AARCH64_PCM_PREFIX%%ROOTGraphicsPrimitives%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/%%AARCH64_PCM_PREFIX%%ROOTHist%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/%%AARCH64_PCM_PREFIX%%ROOTHistDraw%%AARCH64_PCM_SUFFIX%%.pcm
%%ROOT7%%lib/root/%%AARCH64_PCM_PREFIX%%ROOTNTuple%%AARCH64_PCM_SUFFIX%%.pcm
include/root/ROOT/RWebDisplayArgs.hxx
include/root/ROOT/RWebDisplayHandle.hxx
include/root/ROOT/RWebWindow.hxx
@ -6456,11 +6456,11 @@ lib/root/DistRDF/Backends/Dask/__pycache__/Backend%%PYTHON_EXT_SUFFIX%%.pyc
lib/root/libROOTWebDisplay.so
lib/root/libROOTWebDisplay.so.%%SHLIB_SHVER%%
lib/root/libROOTWebDisplay.so.%%SHLIB_VER%%
lib/root/ROOTWebDisplay%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ROOTWebDisplay%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/libWebGui6.so
lib/root/libWebGui6.so.%%SHLIB_SHVER%%
lib/root/libWebGui6.so.%%SHLIB_VER%%
lib/root/WebGui6%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%WebGui6%%AARCH64_PCM_SUFFIX%%.pcm
bin/rootreadspeed
bin/rootssh
%%ETCDIR%%/plugins/TCanvasImp/P010_TWebCanvas.C
@ -6563,11 +6563,11 @@ lib/root/ROOT/_pythonization/_tmva/_rbdt.py
lib/root/ROOT/_pythonization/_tmva/_rtensor.py
lib/root/ROOT/_pythonization/_tmva/_tree_inference.py
lib/root/ROOT/_pythonization/_tmva/_utils.py
lib/root/ROOTGeomViewer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOTNTupleUtil%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/ROOTTreeViewer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RooFitJSONInterface%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/RooFitXRooFit%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ROOTGeomViewer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ROOTNTupleUtil%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%ROOTTreeViewer%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RooFitJSONInterface%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/%%AARCH64_PCM_PREFIX%%RooFitXRooFit%%AARCH64_PCM_SUFFIX%%.pcm
lib/root/libROOTBrowserTreeWidget.so
lib/root/libROOTBrowserTreeWidget.so.%%SHLIB_SHVER%%
lib/root/libROOTBrowserTreeWidget.so.%%SHLIB_VER%%
@ -7119,3 +7119,5 @@ lib/root/libRooFitXRooFit.so.%%SHLIB_VER%%
%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/arrow_up.png
%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_belize/img-RTL/tree/TreeNode_Coll.gif
%%DATADIR%%/ui5/distribution/resources/sap/ui/commons/themes/sap_fiori_3/img-RTL/arrow_up.png
%%ONLY_INSTALLED_ON_AARCH64%%lib/root/%%AARCH64_PCM_PREFIX%%GenVector_G__GenVector32%%AARCH64_PCM_SUFFIX%%.pcm
%%ONLY_INSTALLED_ON_AARCH64%%lib/root/%%AARCH64_PCM_PREFIX%%Smatrix_G__Smatrix32%%AARCH64_PCM_SUFFIX%%.pcm

View file

@ -1,6 +1,6 @@
PORTNAME= dynflow
PORTVERSION= 1.6.8
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= devel rubygems
MASTER_SITES= RG
@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
RUN_DEPENDS= rubygem-algebrick>=0.7.0<0.8:devel/rubygem-algebrick \
rubygem-apipie-params>=0:devel/rubygem-apipie-params \
rubygem-concurrent-ruby11>=1.1.3<1.2:devel/rubygem-concurrent-ruby11 \
rubygem-concurrent-ruby-edge>=0.6.0<0.7:devel/rubygem-concurrent-ruby-edge \
rubygem-concurrent-ruby-edge06>=0.6.0<0.7:devel/rubygem-concurrent-ruby-edge06 \
rubygem-msgpack>=1.3.3<2:devel/rubygem-msgpack \
rubygem-multi_json>=0:devel/rubygem-multi_json \
rubygem-sequel>=4.0.0:devel/rubygem-sequel

View file

@ -0,0 +1,19 @@
PORTNAME= google-apis-cloudbilling_v1
PORTVERSION= 0.21.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= mfechner@FreeBSD.org
COMMENT= Simple REST client for Cloud Billing API V1
WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbilling_v1
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1676990087
SHA256 (rubygem/google-apis-cloudbilling_v1-0.21.0.gem) = ea2d847b4409e2ccd7f8a11a58cfcfdcbfb44ffd81c05768389f67341e291e02
SIZE (rubygem/google-apis-cloudbilling_v1-0.21.0.gem) = 26624

View file

@ -0,0 +1,9 @@
This is the simple REST client for Cloud Billing API V1. Simple REST clients are
Ruby client libraries that provide access to Google services via their HTTP REST
API endpoints. These libraries are generated and updated automatically based on
the discovery documents published by the service, and they handle most concerns
such as authentication, pagination, retry, timeouts, and logging. You can use
this client to access the Cloud Billing API, but note that some services may
provide a separate modern client that is easier to use.
See also: https://github.com/googleapis/google-api-ruby-client

View file

@ -0,0 +1,19 @@
PORTNAME= google-apis-cloudresourcemanager_v1
PORTVERSION= 0.31.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= mfechner@FreeBSD.org
COMMENT= Simple REST client for Cloud Resource Manager API V1
WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudresourcemanager_v1
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1676990465
SHA256 (rubygem/google-apis-cloudresourcemanager_v1-0.31.0.gem) = f0a472a228c0b9b592741380ce79ead2458ea0066a4b5a78635818b9b62efbbf
SIZE (rubygem/google-apis-cloudresourcemanager_v1-0.31.0.gem) = 38912

View file

@ -0,0 +1,10 @@
This is the simple REST client for Cloud Resource Manager API V1. Simple REST
clients are Ruby client libraries that provide access to Google services via
their HTTP REST API endpoints. These libraries are generated and updated
automatically based on the discovery documents published by the service, and
they handle most concerns such as authentication, pagination, retry, timeouts,
and logging. You can use this client to access the Cloud Resource Manager API,
but note that some services may provide a separate modern client that is
easier to use.
See also: https://github.com/googleapis/google-api-ruby-client

View file

@ -0,0 +1,20 @@
PORTNAME= google-apis-compute_v1
PORTVERSION= 0.57.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= _057
MAINTAINER= mfechner@FreeBSD.org
COMMENT= Simple REST client for Compute Engine API V1
WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1677223056
SHA256 (rubygem/google-apis-compute_v1-0.57.0.gem) = 404514548abc3a44f5e96393d6a6d588d287548ecb6f5a886ad76e1beea78068
SIZE (rubygem/google-apis-compute_v1-0.57.0.gem) = 389632

View file

@ -0,0 +1,9 @@
This is a simple client library for version V1 of the Compute Engine API. It
provides:
- A client object that connects to the HTTP/JSON REST endpoint for the service.
- Ruby objects for data structures related to the service.
- Integration with the googleauth gem for authentication using OAuth, API keys,
and service accounts.
- Control of retry, pagination, and timeouts.
See also: https://github.com/googleapis/google-api-ruby-client

View file

@ -0,0 +1,19 @@
PORTNAME= google-apis-container_v1
PORTVERSION= 0.43.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= mfechner@FreeBSD.org
COMMENT= Simple REST client for Kubernetes Engine API V1
WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1676989496
SHA256 (rubygem/google-apis-container_v1-0.43.0.gem) = 781d2514cb27268be9cfbae57cbc4203966afb2cf8f2c636326f5bc603862424
SIZE (rubygem/google-apis-container_v1-0.43.0.gem) = 74752

View file

@ -0,0 +1,10 @@
This is the simple REST client for Kubernetes Engine API V1. Simple REST clients are
Ruby client libraries that provide access to Google services via their HTTP REST API
endpoints. These libraries are generated and updated automatically based on the
discovery documents published by the service, and they handle most concerns such as
authentication, pagination, retry, timeouts, and logging. You can use this client to
access the Kubernetes Engine API, but note that some services may provide a separate
modern client that is easier to use.
See also: https://github.com/googleapis/google-api-ruby-client

View file

@ -0,0 +1,19 @@
PORTNAME= google-apis-container_v1beta1
PORTVERSION= 0.43.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= mfechner@FreeBSD.org
COMMENT= Simple REST client for Kubernetes Engine API V1
WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1676989782
SHA256 (rubygem/google-apis-container_v1beta1-0.43.0.gem) = 68c48fcf88db926ceab16f56890c85890269e6366b272fcde958a9b5550313d0
SIZE (rubygem/google-apis-container_v1beta1-0.43.0.gem) = 80384

View file

@ -0,0 +1,10 @@
This is the simple REST client for Kubernetes Engine API V1beta1. Simple REST
clients are Ruby client libraries that provide access to Google services via
their HTTP REST API endpoints. These libraries are generated and updated
automatically based on the discovery documents published by the service, and
they handle most concerns such as authentication, pagination, retry, timeouts,
and logging. You can use this client to access the Kubernetes Engine API, but
note that some services may provide a separate modern client that is easier to
use.
See also: https://github.com/googleapis/google-api-ruby-client

View file

@ -0,0 +1,19 @@
PORTNAME= google-apis-iam_v1
PORTVERSION= 0.36.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= mfechner@FreeBSD.org
COMMENT= Simple REST client for IAM API V1
WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1676990674
SHA256 (rubygem/google-apis-iam_v1-0.36.0.gem) = 0db7e2876b5d0d636e8326baa6b9cf1cddd58b607151e5db1fe8fd00899a1f66
SIZE (rubygem/google-apis-iam_v1-0.36.0.gem) = 42496

View file

@ -0,0 +1,10 @@
This is the simple REST client for Identity and Access Management (IAM) API V1.
Simple REST clients are Ruby client libraries that provide access to Google
services via their HTTP REST API endpoints. These libraries are generated and
updated automatically based on the discovery documents published by the service,
and they handle most concerns such as authentication, pagination, retry, timeouts,
and logging. You can use this client to access the Identity and Access
Management (IAM) API, but note that some services may provide a separate modern
client that is easier to use.
See also: https://github.com/googleapis/google-api-ruby-client

View file

@ -0,0 +1,19 @@
PORTNAME= google-apis-serviceusage_v1
PORTVERSION= 0.28.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= mfechner@FreeBSD.org
COMMENT= Simple REST client for Service Usage API V1
WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1676990902
SHA256 (rubygem/google-apis-serviceusage_v1-0.28.0.gem) = 5f0b7e023647e7da07f6bce6ada0a6b1aafdb545a1ae985dbac921b76d11b062
SIZE (rubygem/google-apis-serviceusage_v1-0.28.0.gem) = 58368

View file

@ -0,0 +1,9 @@
This is the simple REST client for Service Usage API V1. Simple REST clients are
Ruby client libraries that provide access to Google services via their HTTP REST
API endpoints. These libraries are generated and updated automatically based on
the discovery documents published by the service, and they handle most concerns
such as authentication, pagination, retry, timeouts, and logging. You can use
this client to access the Service Usage API, but note that some services may
provide a separate modern client that is easier to use.
See also: https://github.com/googleapis/google-api-ruby-client

View file

@ -0,0 +1,20 @@
PORTNAME= google-apis-sqladmin_v1beta4
PORTVERSION= 0.41.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= _041
MAINTAINER= mfechner@FreeBSD.org
COMMENT= Simple REST client for Cloud SQL Admin API V1beta4
WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1677215544
SHA256 (rubygem/google-apis-sqladmin_v1beta4-0.41.0.gem) = 551553b6481879f1cd39fb83cc2a2c2ea9334afc4bf261b96900dd559f96749d
SIZE (rubygem/google-apis-sqladmin_v1beta4-0.41.0.gem) = 48128

View file

@ -0,0 +1,9 @@
This is a simple client library for version V1beta4 of the Cloud SQL Admin API.
It provides:
- A client object that connects to the HTTP/JSON REST endpoint for the service.
- Ruby objects for data structures related to the service.
- Integration with the googleauth gem for authentication using OAuth, API keys,
and service accounts.
- Control of retry, pagination, and timeouts.
See also: https://github.com/googleapis/google-api-ruby-client

View file

@ -1,6 +1,5 @@
PORTNAME= pdk
PORTVERSION= 2.5.0
PORTREVISION= 2
PORTVERSION= 2.6.1
CATEGORIES= devel rubygems
MASTER_SITES= RG
@ -13,6 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_RUBY30= yes
BROKEN_RUBY31= yes
BROKEN_RUBY32= yes
RUN_DEPENDS= rubygem-bundler>=1.15.0,1<3.0.0,1:sysutils/rubygem-bundler \
rubygem-childprocess>=4.0.0:devel/rubygem-childprocess \

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1654893333
SHA256 (rubygem/pdk-2.5.0.gem) = 6c415da21ddadf701e1f970bb7ac53f698eeca05d6a41e882401eabea7a52dd2
SIZE (rubygem/pdk-2.5.0.gem) = 160768
TIMESTAMP = 1677537712
SHA256 (rubygem/pdk-2.6.1.gem) = 91ce586948c9f5f7876501ac25711557eb1dbd0ec438a8e715d79cca450afa38
SIZE (rubygem/pdk-2.6.1.gem) = 150528

View file

@ -1,5 +1,5 @@
PORTNAME= rgen
PORTVERSION= 0.9.0
PORTVERSION= 0.9.1
CATEGORIES= devel rubygems
MASTER_SITES= RG

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1640368279
SHA256 (rubygem/rgen-0.9.0.gem) = f620a77f45e72f0d4fc4b615e4974b9dd6b0bcbd65502ecf5afb0a3617753ea3
SIZE (rubygem/rgen-0.9.0.gem) = 273408
TIMESTAMP = 1677533912
SHA256 (rubygem/rgen-0.9.1.gem) = 771751201721cb120cd2ba536efb19fdead25c3558319217b7d14cf5b31b6fa9
SIZE (rubygem/rgen-0.9.1.gem) = 282624

View file

@ -1,5 +1,5 @@
PORTNAME= simple_form
PORTVERSION= 5.1.0
PORTVERSION= 5.2.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= -rails61

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1668888959
SHA256 (rubygem/simple_form-5.1.0.gem) = 579ed72479704f09d0542f0eec1a79364848e6e5f2efd79a836935c05fe02a27
SIZE (rubygem/simple_form-5.1.0.gem) = 84480
TIMESTAMP = 1677505305
SHA256 (rubygem/simple_form-5.2.0.gem) = fa57c2f7b512386e003ea70d09a43fab27d5db577f5f5ac288f9e2c48b718d7c
SIZE (rubygem/simple_form-5.2.0.gem) = 84992

View file

@ -1,5 +1,5 @@
PORTNAME= strong_migrations
PORTVERSION= 1.4.1
PORTVERSION= 1.4.3
CATEGORIES= devel rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 61

Some files were not shown because too many files have changed in this diff Show more