Download raw body.
devel/abseil-cpp: update to 20240116.0, sync consumers (bulk wanted)
https://github.com/abseil/abseil-cpp/releases/tag/20240116.0
breaking changes:
- AbslHashValue() no longer accepts C-style arrays as a parameter.
Previously the array would decay to a pointer type, which could lead to subtle,
unintended bugs. The most common potential error is passing a C-string literal.
After this change, these call-sites require wrapping the literal in absl::string_view.
- absl::weak_equality and absl::strong_equality have been removed.
The corresponding std types were removed before C++20 was finalized
Upstream merged out write(2) syscall patch.
"bad_any_cast_impl" got removed, but no port links to it.
"flags" got removed as lib, .pc pointing at flags_* remains.
Two new libs "log_internal_fnmatch", "vlog_config_internal".
Diff below is the update plus build-tested WANTLIB sync for "flags" consumers
(except for geo/qgis, [652/11477] Qt/C++ building over night).
I have not done built all consumers, but expect them to work fine, some probably
also pick up the new libs as well.
Can someone put this through a bulk, please?
Index: devel/abseil-cpp/Makefile
===================================================================
RCS file: /cvs/ports/devel/abseil-cpp/Makefile,v
diff -u -p -r1.28 Makefile
--- devel/abseil-cpp/Makefile 23 Jan 2024 13:16:12 -0000 1.28
+++ devel/abseil-cpp/Makefile 24 Jan 2024 11:15:44 -0000
@@ -3,7 +3,7 @@ CATEGORIES = devel
GH_ACCOUNT = abseil
GH_PROJECT = ${GH_ACCOUNT}-cpp
-GH_TAGNAME = 20230802.1
+GH_TAGNAME = 20240116.0
HOMEPAGE = https://abseil.io/
@@ -14,12 +14,12 @@ MAINTAINER = Andrew Krasavin <noiseless-
PERMIT_PACKAGE = Yes
ABSL_LIBS = \
- scoped_mock_log atomic_hook_test_helper bad_any_cast_impl \
+ scoped_mock_log atomic_hook_test_helper \
bad_optional_access bad_variant_access base city civil_time cord \
cord_internal cordz_functions cordz_handle cordz_info cordz_sample_token \
crc32c crc_cord_state crc_cpu_detect crc_internal debugging_internal \
demangle_internal die_if_null examine_stack exception_safety_testing \
- exponential_biased failure_signal_handler flags flags_commandlineflag \
+ exponential_biased failure_signal_handler flags_commandlineflag \
flags_commandlineflag_internal flags_config flags_internal \
flags_marshalling flags_parse flags_private_handle_accessor \
flags_program_name flags_reflection flags_usage flags_usage_internal \
@@ -39,9 +39,10 @@ ABSL_LIBS = \
stack_consumption stacktrace status statusor str_format_internal strerror \
strings strings_internal symbolize synchronization test_instance_tracker \
throw_delegate time time_internal_test_util time_zone \
+ log_internal_fnmatch vlog_config_internal \
kernel_timeout_internal string_view
.for _lib in ${ABSL_LIBS}
-SHARED_LIBS += absl_${_lib} 3.0 # 2308.0.0
+SHARED_LIBS += absl_${_lib} 4.0 # 2401.0.0
.endfor
WANTLIB += ${COMPILER_LIBCXX} execinfo gmock gtest m
Index: devel/abseil-cpp/distinfo
===================================================================
RCS file: /cvs/ports/devel/abseil-cpp/distinfo,v
diff -u -p -r1.8 distinfo
--- devel/abseil-cpp/distinfo 19 Sep 2023 22:00:03 -0000 1.8
+++ devel/abseil-cpp/distinfo 23 Jan 2024 13:16:41 -0000
@@ -1,2 +1,2 @@
-SHA256 (abseil-cpp-20230802.1.tar.gz) = mHzpjwLu+6+TDW44qxaqBXNyNNevurLVxOp62+UMKO0=
-SIZE (abseil-cpp-20230802.1.tar.gz) = 2157158
+SHA256 (abseil-cpp-20240116.0.tar.gz) = M4QgRIsUDw39Gh6jw85xs7wXIHHyT02aV9WbRQN9pEA=
+SIZE (abseil-cpp-20240116.0.tar.gz) = 2150815
Index: devel/abseil-cpp/patches/patch-absl_base_internal_raw_logging_cc
===================================================================
RCS file: devel/abseil-cpp/patches/patch-absl_base_internal_raw_logging_cc
diff -N devel/abseil-cpp/patches/patch-absl_base_internal_raw_logging_cc
--- devel/abseil-cpp/patches/patch-absl_base_internal_raw_logging_cc 25 Oct 2023 05:06:50 -0000 1.6
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,21 +0,0 @@
-Use write(2) not syscall(2)
-
-https://github.com/abseil/abseil-cpp/pull/1553
-
-Index: absl/base/internal/raw_logging.cc
---- absl/base/internal/raw_logging.cc.orig
-+++ absl/base/internal/raw_logging.cc
-@@ -56,10 +56,12 @@
- // ABSL_HAVE_SYSCALL_WRITE is defined when the platform provides the syscall
- // syscall(SYS_write, /*int*/ fd, /*char* */ buf, /*size_t*/ len);
- // for low level operations that want to avoid libc.
--#if (defined(__linux__) || defined(__FreeBSD__) || defined(__OpenBSD__)) && \
-+#if (defined(__linux__) || defined(__FreeBSD__)) && \
- !defined(__ANDROID__)
- #include <sys/syscall.h>
- #define ABSL_HAVE_SYSCALL_WRITE 1
-+#define ABSL_LOW_LEVEL_WRITE_SUPPORTED 1
-+#elif defined(__OpenBSD__)
- #define ABSL_LOW_LEVEL_WRITE_SUPPORTED 1
- #else
- #undef ABSL_HAVE_SYSCALL_WRITE
Index: devel/abseil-cpp/patches/patch-absl_container_CMakeLists_txt
===================================================================
RCS file: devel/abseil-cpp/patches/patch-absl_container_CMakeLists_txt
diff -N devel/abseil-cpp/patches/patch-absl_container_CMakeLists_txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ devel/abseil-cpp/patches/patch-absl_container_CMakeLists_txt 29 Jan 2024 00:43:31 -0000
@@ -0,0 +1,38 @@
+Disable all tests that require a leak sanitizer because
+OpenBSD does not support it.
+
+Index: absl/container/CMakeLists.txt
+--- absl/container/CMakeLists.txt.orig
++++ absl/container/CMakeLists.txt
+@@ -101,6 +101,7 @@ absl_cc_library(
+ PUBLIC
+ )
+
++if (NOT CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ absl_cc_test(
+ NAME
+ compressed_tuple_test
+@@ -117,6 +118,7 @@ absl_cc_test(
+ absl::utility
+ GTest::gmock_main
+ )
++endif()
+
+ absl_cc_library(
+ NAME
+@@ -294,6 +296,7 @@ absl_cc_library(
+ PUBLIC
+ )
+
++if (NOT CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ absl_cc_test(
+ NAME
+ flat_hash_map_test
+@@ -313,6 +316,7 @@ absl_cc_test(
+ absl::unordered_map_modifiers_test
+ GTest::gmock_main
+ )
++endif()
+
+ absl_cc_library(
+ NAME
Index: devel/abseil-cpp/patches/patch-absl_status_status_cc
===================================================================
RCS file: /cvs/ports/devel/abseil-cpp/patches/patch-absl_status_status_cc,v
diff -u -p -r1.3 patch-absl_status_status_cc
--- devel/abseil-cpp/patches/patch-absl_status_status_cc 20 Aug 2023 05:42:05 -0000 1.3
+++ devel/abseil-cpp/patches/patch-absl_status_status_cc 23 Jan 2024 13:16:41 -0000
@@ -1,7 +1,7 @@
Index: absl/status/status.cc
--- absl/status/status.cc.orig
+++ absl/status/status.cc
-@@ -464,14 +464,18 @@ StatusCode ErrnoToStatusCode(int error_number) {
+@@ -273,14 +273,18 @@ StatusCode ErrnoToStatusCode(int error_number) {
case EFAULT: // Bad address
case EILSEQ: // Illegal byte sequence
case ENOPROTOOPT: // Protocol not available
@@ -20,7 +20,7 @@ Index: absl/status/status.cc
return StatusCode::kDeadlineExceeded;
case ENODEV: // No such device
case ENOENT: // No such file or directory
-@@ -530,9 +534,13 @@ StatusCode ErrnoToStatusCode(int error_number) {
+@@ -339,9 +343,13 @@ StatusCode ErrnoToStatusCode(int error_number) {
case EMLINK: // Too many links
case ENFILE: // Too many open files in system
case ENOBUFS: // No buffer space available
@@ -34,7 +34,7 @@ Index: absl/status/status.cc
#ifdef EUSERS
case EUSERS: // Too many users
#endif
-@@ -575,7 +583,9 @@ StatusCode ErrnoToStatusCode(int error_number) {
+@@ -384,7 +392,9 @@ StatusCode ErrnoToStatusCode(int error_number) {
case ENETRESET: // Connection aborted by network
case ENETUNREACH: // Network unreachable
case ENOLCK: // No locks available
Index: devel/abseil-cpp/patches/patch-absl_types_CMakeLists_txt
===================================================================
RCS file: /cvs/ports/devel/abseil-cpp/patches/patch-absl_types_CMakeLists_txt,v
diff -u -p -r1.1 patch-absl_types_CMakeLists_txt
--- devel/abseil-cpp/patches/patch-absl_types_CMakeLists_txt 4 Dec 2022 17:23:22 -0000 1.1
+++ devel/abseil-cpp/patches/patch-absl_types_CMakeLists_txt 23 Jan 2024 13:16:41 -0000
@@ -4,16 +4,16 @@ OpenBSD does not support it.
Index: absl/types/CMakeLists.txt
--- absl/types/CMakeLists.txt.orig
+++ absl/types/CMakeLists.txt
-@@ -241,6 +241,7 @@ absl_cc_test(
- )
-
- # Internal-only target, do not depend on directly.
+@@ -13,6 +13,7 @@
+ # See the License for the specific language governing permissions and
+ # limitations under the License.
+ #
+if (NOT CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
absl_cc_library(
NAME
- conformance_testing
-@@ -292,6 +293,7 @@ absl_cc_test(
- absl::type_traits
+ any
+@@ -102,6 +103,7 @@ absl_cc_test(
+ absl::exception_safety_testing
GTest::gmock_main
)
+endif()
Index: devel/abseil-cpp/pkg/PLIST
===================================================================
RCS file: /cvs/ports/devel/abseil-cpp/pkg/PLIST,v
diff -u -p -r1.8 PLIST
--- devel/abseil-cpp/pkg/PLIST 20 Aug 2023 05:42:05 -0000 1.8
+++ devel/abseil-cpp/pkg/PLIST 23 Jan 2024 13:16:41 -0000
@@ -30,7 +30,6 @@ include/absl/base/internal/low_level_all
include/absl/base/internal/low_level_scheduling.h
include/absl/base/internal/nullability_impl.h
include/absl/base/internal/per_thread_tls.h
-include/absl/base/internal/prefetch.h
include/absl/base/internal/pretty_function.h
include/absl/base/internal/raw_logging.h
include/absl/base/internal/scheduling_mode.h
@@ -43,7 +42,6 @@ include/absl/base/internal/spinlock_wait
include/absl/base/internal/spinlock_win32.inc
include/absl/base/internal/strerror.h
include/absl/base/internal/sysinfo.h
-include/absl/base/internal/thread_annotations.h
include/absl/base/internal/thread_identity.h
include/absl/base/internal/throw_delegate.h
include/absl/base/internal/tsan_mutex_interface.h
@@ -52,6 +50,7 @@ include/absl/base/internal/unscaledcycle
include/absl/base/internal/unscaledcycleclock_config.h
include/absl/base/log_severity.h
include/absl/base/macros.h
+include/absl/base/no_destructor.h
include/absl/base/nullability.h
include/absl/base/optimization.h
include/absl/base/options.h
@@ -78,7 +77,6 @@ include/absl/container/internal/common.h
include/absl/container/internal/common_policy_traits.h
include/absl/container/internal/compressed_tuple.h
include/absl/container/internal/container_memory.h
-include/absl/container/internal/counting_allocator.h
include/absl/container/internal/hash_function_defaults.h
include/absl/container/internal/hash_generator_testing.h
include/absl/container/internal/hash_policy_testing.h
@@ -91,6 +89,7 @@ include/absl/container/internal/layout.h
include/absl/container/internal/node_slot_policy.h
include/absl/container/internal/raw_hash_map.h
include/absl/container/internal/raw_hash_set.h
+include/absl/container/internal/test_allocator.h
include/absl/container/internal/test_instance_tracker.h
include/absl/container/internal/tracked.h
include/absl/container/internal/unordered_map_constructor_test.h
@@ -152,7 +151,6 @@ include/absl/flags/flag.h
include/absl/flags/internal/
include/absl/flags/internal/commandlineflag.h
include/absl/flags/internal/flag.h
-include/absl/flags/internal/flag_msvc.inc
include/absl/flags/internal/parse.h
include/absl/flags/internal/path_util.h
include/absl/flags/internal/private_handle_accessor.h
@@ -173,6 +171,7 @@ include/absl/functional/internal/
include/absl/functional/internal/any_invocable.h
include/absl/functional/internal/front_binder.h
include/absl/functional/internal/function_ref.h
+include/absl/functional/overload.h
include/absl/hash/
include/absl/hash/hash.h
include/absl/hash/hash_testing.h
@@ -185,6 +184,7 @@ include/absl/hash/internal/spy_hash_stat
include/absl/log/
include/absl/log/absl_check.h
include/absl/log/absl_log.h
+include/absl/log/absl_vlog_is_on.h
include/absl/log/check.h
include/absl/log/check_test_impl.inc
include/absl/log/die_if_null.h
@@ -198,6 +198,7 @@ include/absl/log/internal/check_op.h
include/absl/log/internal/conditions.h
include/absl/log/internal/config.h
include/absl/log/internal/flags.h
+include/absl/log/internal/fnmatch.h
include/absl/log/internal/globals.h
include/absl/log/internal/log_format.h
include/absl/log/internal/log_impl.h
@@ -211,6 +212,7 @@ include/absl/log/internal/structured.h
include/absl/log/internal/test_actions.h
include/absl/log/internal/test_helpers.h
include/absl/log/internal/test_matchers.h
+include/absl/log/internal/vlog_config.h
include/absl/log/internal/voidify.h
include/absl/log/log.h
include/absl/log/log_basic_test_impl.inc
@@ -220,6 +222,7 @@ include/absl/log/log_sink_registry.h
include/absl/log/log_streamer.h
include/absl/log/scoped_mock_log.h
include/absl/log/structured.h
+include/absl/log/vlog_is_on.h
include/absl/memory/
include/absl/memory/memory.h
include/absl/meta/
@@ -293,14 +296,16 @@ include/absl/status/statusor.h
include/absl/strings/
include/absl/strings/ascii.h
include/absl/strings/charconv.h
+include/absl/strings/charset.h
include/absl/strings/cord.h
include/absl/strings/cord_analysis.h
include/absl/strings/cord_buffer.h
include/absl/strings/cord_test_helpers.h
include/absl/strings/cordz_test_helpers.h
include/absl/strings/escaping.h
+include/absl/strings/has_absl_stringify.h
+include/absl/strings/has_ostream_operator.h
include/absl/strings/internal/
-include/absl/strings/internal/char_map.h
include/absl/strings/internal/charconv_bigint.h
include/absl/strings/internal/charconv_parse.h
include/absl/strings/internal/cord_data_edge.h
@@ -311,8 +316,6 @@ include/absl/strings/internal/cord_rep_b
include/absl/strings/internal/cord_rep_consume.h
include/absl/strings/internal/cord_rep_crc.h
include/absl/strings/internal/cord_rep_flat.h
-include/absl/strings/internal/cord_rep_ring.h
-include/absl/strings/internal/cord_rep_ring_reader.h
include/absl/strings/internal/cord_rep_test_util.h
include/absl/strings/internal/cordz_functions.h
include/absl/strings/internal/cordz_handle.h
@@ -404,15 +407,8 @@ include/absl/types/bad_optional_access.h
include/absl/types/bad_variant_access.h
include/absl/types/compare.h
include/absl/types/internal/
-include/absl/types/internal/conformance_aliases.h
-include/absl/types/internal/conformance_archetype.h
-include/absl/types/internal/conformance_profile.h
-include/absl/types/internal/conformance_testing.h
-include/absl/types/internal/conformance_testing_helpers.h
include/absl/types/internal/optional.h
-include/absl/types/internal/parentheses.h
include/absl/types/internal/span.h
-include/absl/types/internal/transform_args.h
include/absl/types/internal/variant.h
include/absl/types/optional.h
include/absl/types/span.h
@@ -427,7 +423,6 @@ lib/cmake/absl/abslConfigVersion.cmake
lib/cmake/absl/abslTargets${MODCMAKE_BUILD_SUFFIX}
lib/cmake/absl/abslTargets.cmake
@lib lib/libabsl_atomic_hook_test_helper.so.${LIBabsl_atomic_hook_test_helper_VERSION}
-@lib lib/libabsl_bad_any_cast_impl.so.${LIBabsl_bad_any_cast_impl_VERSION}
@lib lib/libabsl_bad_optional_access.so.${LIBabsl_bad_optional_access_VERSION}
@lib lib/libabsl_bad_variant_access.so.${LIBabsl_bad_variant_access_VERSION}
@lib lib/libabsl_base.so.${LIBabsl_base_VERSION}
@@ -450,7 +445,6 @@ lib/cmake/absl/abslTargets.cmake
@lib lib/libabsl_exception_safety_testing.so.${LIBabsl_exception_safety_testing_VERSION}
@lib lib/libabsl_exponential_biased.so.${LIBabsl_exponential_biased_VERSION}
@lib lib/libabsl_failure_signal_handler.so.${LIBabsl_failure_signal_handler_VERSION}
-@lib lib/libabsl_flags.so.${LIBabsl_flags_VERSION}
@lib lib/libabsl_flags_commandlineflag.so.${LIBabsl_flags_commandlineflag_VERSION}
@lib lib/libabsl_flags_commandlineflag_internal.so.${LIBabsl_flags_commandlineflag_internal_VERSION}
@lib lib/libabsl_flags_config.so.${LIBabsl_flags_config_VERSION}
@@ -474,6 +468,7 @@ lib/cmake/absl/abslTargets.cmake
@lib lib/libabsl_log_initialize.so.${LIBabsl_log_initialize_VERSION}
@lib lib/libabsl_log_internal_check_op.so.${LIBabsl_log_internal_check_op_VERSION}
@lib lib/libabsl_log_internal_conditions.so.${LIBabsl_log_internal_conditions_VERSION}
+@lib lib/libabsl_log_internal_fnmatch.so.${LIBabsl_log_internal_fnmatch_VERSION}
@lib lib/libabsl_log_internal_format.so.${LIBabsl_log_internal_format_VERSION}
@lib lib/libabsl_log_internal_globals.so.${LIBabsl_log_internal_globals_VERSION}
@lib lib/libabsl_log_internal_log_sink_set.so.${LIBabsl_log_internal_log_sink_set_VERSION}
@@ -523,16 +518,15 @@ lib/cmake/absl/abslTargets.cmake
@lib lib/libabsl_time.so.${LIBabsl_time_VERSION}
@lib lib/libabsl_time_internal_test_util.so.${LIBabsl_time_internal_test_util_VERSION}
@lib lib/libabsl_time_zone.so.${LIBabsl_time_zone_VERSION}
+@lib lib/libabsl_vlog_config_internal.so.${LIBabsl_vlog_config_internal_VERSION}
lib/pkgconfig/absl_absl_check.pc
lib/pkgconfig/absl_absl_log.pc
+lib/pkgconfig/absl_absl_vlog_is_on.pc
lib/pkgconfig/absl_algorithm.pc
lib/pkgconfig/absl_algorithm_container.pc
-lib/pkgconfig/absl_any.pc
lib/pkgconfig/absl_any_invocable.pc
lib/pkgconfig/absl_atomic_hook.pc
lib/pkgconfig/absl_atomic_hook_test_helper.pc
-lib/pkgconfig/absl_bad_any_cast.pc
-lib/pkgconfig/absl_bad_any_cast_impl.pc
lib/pkgconfig/absl_bad_optional_access.pc
lib/pkgconfig/absl_bad_variant_access.pc
lib/pkgconfig/absl_base.pc
@@ -541,6 +535,7 @@ lib/pkgconfig/absl_bind_front.pc
lib/pkgconfig/absl_bits.pc
lib/pkgconfig/absl_btree.pc
lib/pkgconfig/absl_btree_test_common.pc
+lib/pkgconfig/absl_charset.pc
lib/pkgconfig/absl_check.pc
lib/pkgconfig/absl_city.pc
lib/pkgconfig/absl_civil_time.pc
@@ -565,7 +560,6 @@ lib/pkgconfig/absl_cordz_test_helpers.pc
lib/pkgconfig/absl_cordz_update_scope.pc
lib/pkgconfig/absl_cordz_update_tracker.pc
lib/pkgconfig/absl_core_headers.pc
-lib/pkgconfig/absl_counting_allocator.pc
lib/pkgconfig/absl_crc32c.pc
lib/pkgconfig/absl_crc_cord_state.pc
lib/pkgconfig/absl_crc_cpu_detect.pc
@@ -600,6 +594,7 @@ lib/pkgconfig/absl_flat_hash_map.pc
lib/pkgconfig/absl_flat_hash_set.pc
lib/pkgconfig/absl_function_ref.pc
lib/pkgconfig/absl_graphcycles_internal.pc
+lib/pkgconfig/absl_has_ostream_operator.pc
lib/pkgconfig/absl_hash.pc
lib/pkgconfig/absl_hash_function_defaults.pc
lib/pkgconfig/absl_hash_generator_testing.pc
@@ -626,6 +621,7 @@ lib/pkgconfig/absl_log_internal_check_op
lib/pkgconfig/absl_log_internal_conditions.pc
lib/pkgconfig/absl_log_internal_config.pc
lib/pkgconfig/absl_log_internal_flags.pc
+lib/pkgconfig/absl_log_internal_fnmatch.pc
lib/pkgconfig/absl_log_internal_format.pc
lib/pkgconfig/absl_log_internal_globals.pc
lib/pkgconfig/absl_log_internal_log_impl.pc
@@ -649,6 +645,7 @@ lib/pkgconfig/absl_low_level_hash.pc
lib/pkgconfig/absl_malloc_internal.pc
lib/pkgconfig/absl_memory.pc
lib/pkgconfig/absl_meta.pc
+lib/pkgconfig/absl_no_destructor.pc
lib/pkgconfig/absl_node_hash_map.pc
lib/pkgconfig/absl_node_hash_set.pc
lib/pkgconfig/absl_node_slot_policy.pc
@@ -658,6 +655,7 @@ lib/pkgconfig/absl_nullability.pc
lib/pkgconfig/absl_numeric.pc
lib/pkgconfig/absl_numeric_representation.pc
lib/pkgconfig/absl_optional.pc
+lib/pkgconfig/absl_overload.pc
lib/pkgconfig/absl_per_thread_sem_test_common.pc
lib/pkgconfig/absl_periodic_sampler.pc
lib/pkgconfig/absl_pow10_helper.pc
@@ -715,6 +713,7 @@ lib/pkgconfig/absl_strings.pc
lib/pkgconfig/absl_strings_internal.pc
lib/pkgconfig/absl_symbolize.pc
lib/pkgconfig/absl_synchronization.pc
+lib/pkgconfig/absl_test_allocator.pc
lib/pkgconfig/absl_test_instance_tracker.pc
lib/pkgconfig/absl_thread_pool.pc
lib/pkgconfig/absl_throw_delegate.pc
@@ -733,3 +732,5 @@ lib/pkgconfig/absl_unordered_set_members
lib/pkgconfig/absl_unordered_set_modifiers_test.pc
lib/pkgconfig/absl_utility.pc
lib/pkgconfig/absl_variant.pc
+lib/pkgconfig/absl_vlog_config_internal.pc
+lib/pkgconfig/absl_vlog_is_on.pc
Index: audio/mumble/Makefile
===================================================================
RCS file: /cvs/ports/audio/mumble/Makefile,v
diff -u -p -r1.78 Makefile
--- audio/mumble/Makefile 11 Oct 2023 13:45:59 -0000 1.78
+++ audio/mumble/Makefile 29 Jan 2024 00:33:47 -0000
@@ -4,8 +4,8 @@ COMMENT-server = low-latency voice chat
VERSION = 1.4.287
DISTNAME = mumble-${VERSION}
PKGNAME-server = murmur-${VERSION}
-REVISION-main = 5
-REVISION-server = 5
+REVISION-main = 6
+REVISION-server = 6
CATEGORIES = audio net
@@ -39,14 +39,14 @@ WANTLIB-main += absl_cord absl_cord_inte
WANTLIB-main += absl_cordz_info absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB-main += absl_crc_internal absl_debugging_internal absl_demangle_internal
WANTLIB-main += absl_die_if_null absl_examine_stack absl_exponential_biased
-WANTLIB-main += absl_flags absl_flags_commandlineflag absl_flags_commandlineflag_internal
+WANTLIB-main += absl_flags_commandlineflag absl_flags_commandlineflag_internal
WANTLIB-main += absl_flags_config absl_flags_internal absl_flags_marshalling
WANTLIB-main += absl_flags_private_handle_accessor absl_flags_program_name
WANTLIB-main += absl_flags_reflection absl_graphcycles_internal absl_hash
WANTLIB-main += absl_hashtablez_sampler absl_int128 absl_kernel_timeout_internal
WANTLIB-main += absl_log_entry absl_log_globals absl_log_initialize
WANTLIB-main += absl_log_internal_check_op absl_log_internal_conditions
-WANTLIB-main += absl_log_internal_format absl_log_internal_globals
+WANTLIB-main += absl_log_internal_fnmatch absl_log_internal_format absl_log_internal_globals
WANTLIB-main += absl_log_internal_log_sink_set absl_log_internal_message
WANTLIB-main += absl_log_internal_nullguard absl_log_internal_proto
WANTLIB-main += absl_log_severity absl_log_sink absl_low_level_hash
@@ -54,7 +54,7 @@ WANTLIB-main += absl_malloc_internal abs
WANTLIB-main += absl_spinlock_wait absl_stacktrace absl_status absl_statusor
WANTLIB-main += absl_str_format_internal absl_strerror absl_string_view
WANTLIB-main += absl_strings absl_strings_internal absl_symbolize absl_synchronization
-WANTLIB-main += absl_throw_delegate absl_time absl_time_zone c crypto
+WANTLIB-main += absl_throw_delegate absl_time absl_time_zone absl_vlog_config_internal c crypto
WANTLIB-main += kvm m protobuf sndfile speex speexdsp ssl
# dlopen()'ed
@@ -67,14 +67,14 @@ WANTLIB-server += absl_cordz_functions a
WANTLIB-server += absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB-server += absl_crc_internal absl_debugging_internal absl_demangle_internal
WANTLIB-server += absl_die_if_null absl_examine_stack absl_exponential_biased
-WANTLIB-server += absl_flags absl_flags_commandlineflag absl_flags_commandlineflag_internal
+WANTLIB-server += absl_flags_commandlineflag absl_flags_commandlineflag_internal
WANTLIB-server += absl_flags_config absl_flags_internal absl_flags_marshalling
WANTLIB-server += absl_flags_private_handle_accessor absl_flags_program_name
WANTLIB-server += absl_flags_reflection absl_graphcycles_internal absl_hash
WANTLIB-server += absl_hashtablez_sampler absl_int128 absl_kernel_timeout_internal
WANTLIB-server += absl_log_entry absl_log_globals absl_log_initialize
WANTLIB-server += absl_log_internal_check_op absl_log_internal_conditions
-WANTLIB-server += absl_log_internal_format absl_log_internal_globals
+WANTLIB-server += absl_log_internal_fnmatch absl_log_internal_format absl_log_internal_globals
WANTLIB-server += absl_log_internal_log_sink_set absl_log_internal_message
WANTLIB-server += absl_log_internal_nullguard absl_log_internal_proto
WANTLIB-server += absl_log_severity absl_log_sink absl_low_level_hash
@@ -82,7 +82,7 @@ WANTLIB-server += absl_malloc_internal a
WANTLIB-server += absl_spinlock_wait absl_stacktrace absl_status absl_statusor
WANTLIB-server += absl_str_format_internal absl_strerror absl_string_view
WANTLIB-server += absl_strings absl_strings_internal absl_symbolize absl_synchronization
-WANTLIB-server += absl_throw_delegate absl_time absl_time_zone c crypto
+WANTLIB-server += absl_throw_delegate absl_time absl_time_zone absl_vlog_config_internal c crypto
WANTLIB-server += m protobuf ssl
WRKDIST = ${WRKDIR}/mumble-${VERSION}.src
Index: devel/mtxclient/Makefile
===================================================================
RCS file: /cvs/ports/devel/mtxclient/Makefile,v
diff -u -p -r1.6 Makefile
--- devel/mtxclient/Makefile 12 Aug 2023 12:44:42 -0000 1.6
+++ devel/mtxclient/Makefile 29 Jan 2024 00:10:46 -0000
@@ -6,7 +6,7 @@ SHARED_LIBS += matrix_client 2.0
GH_ACCOUNT = Nheko-Reborn
GH_PROJECT = mtxclient
GH_TAGNAME = v0.9.2
-REVISION = 0
+REVISION = 1
# MIT
PERMIT_PACKAGE = Yes
@@ -16,14 +16,14 @@ WANTLIB += absl_base absl_city absl_civi
WANTLIB += absl_cordz_functions absl_cordz_handle absl_cordz_info
WANTLIB += absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB += absl_crc_internal absl_debugging_internal absl_demangle_internal
-WANTLIB += absl_exponential_biased absl_flags absl_flags_commandlineflag
+WANTLIB += absl_exponential_biased absl_flags_commandlineflag
WANTLIB += absl_flags_commandlineflag_internal absl_flags_config
WANTLIB += absl_flags_internal absl_flags_marshalling absl_flags_private_handle_accessor
WANTLIB += absl_flags_program_name absl_flags_reflection absl_graphcycles_internal
-WANTLIB += absl_hash absl_hashtablez_sampler absl_int128 absl_log_severity
+WANTLIB += absl_hash absl_hashtablez_sampler absl_int128 absl_kernel_timeout_internal absl_log_severity
WANTLIB += absl_low_level_hash absl_malloc_internal absl_raw_hash_set
WANTLIB += absl_raw_logging_internal absl_spinlock_wait absl_stacktrace
-WANTLIB += absl_str_format_internal absl_strings absl_strings_internal
+WANTLIB += absl_str_format_internal absl_string_view absl_strings absl_strings_internal
WANTLIB += absl_symbolize absl_synchronization absl_throw_delegate
WANTLIB += absl_time absl_time_zone coeurl crypto execinfo m olm
WANTLIB += re2 spdlog ssl
Index: devel/protobuf/Makefile
===================================================================
RCS file: /cvs/ports/devel/protobuf/Makefile,v
diff -u -p -r1.71 Makefile
--- devel/protobuf/Makefile 19 Jan 2024 14:09:54 -0000 1.71
+++ devel/protobuf/Makefile 29 Jan 2024 00:12:08 -0000
@@ -7,6 +7,7 @@ TAG = v${PROTOBUF_VERSION:S/rc-/rc/}
DISTNAME = protobuf-${PROTOBUF_VERSION}
PKGNAME = protobuf-${V:S/-//g}
DISTFILES = protobuf-${PROTOBUF_VERSION}.tar.gz
+REVISION = 0
SUBST_VARS += PROTOBUF_VERSION
@@ -31,14 +32,14 @@ WANTLIB += absl_cordz_functions absl_cor
WANTLIB += absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB += absl_crc_internal absl_debugging_internal absl_demangle_internal
WANTLIB += absl_die_if_null absl_examine_stack absl_exponential_biased
-WANTLIB += absl_flags absl_flags_commandlineflag absl_flags_commandlineflag_internal
+WANTLIB += absl_flags_commandlineflag absl_flags_commandlineflag_internal
WANTLIB += absl_flags_config absl_flags_internal absl_flags_marshalling
WANTLIB += absl_flags_private_handle_accessor absl_flags_program_name
WANTLIB += absl_flags_reflection absl_graphcycles_internal absl_hash
WANTLIB += absl_hashtablez_sampler absl_int128 absl_kernel_timeout_internal
WANTLIB += absl_log_entry absl_log_globals absl_log_initialize
WANTLIB += absl_log_internal_check_op absl_log_internal_conditions
-WANTLIB += absl_log_internal_format absl_log_internal_globals
+WANTLIB += absl_log_internal_fnmatch absl_log_internal_format absl_log_internal_globals
WANTLIB += absl_log_internal_log_sink_set absl_log_internal_message
WANTLIB += absl_log_internal_nullguard absl_log_internal_proto
WANTLIB += absl_log_severity absl_log_sink absl_low_level_hash
@@ -46,7 +47,7 @@ WANTLIB += absl_malloc_internal absl_raw
WANTLIB += absl_spinlock_wait absl_stacktrace absl_status absl_statusor
WANTLIB += absl_str_format_internal absl_strerror absl_string_view
WANTLIB += absl_strings absl_strings_internal absl_symbolize absl_synchronization
-WANTLIB += absl_throw_delegate absl_time absl_time_zone c m z
+WANTLIB += absl_throw_delegate absl_time absl_time_zone absl_vlog_config_internal c m z
LIB_DEPENDS += devel/abseil-cpp
Index: devel/protobuf-c/Makefile
===================================================================
RCS file: /cvs/ports/devel/protobuf-c/Makefile,v
diff -u -p -r1.24 Makefile
--- devel/protobuf-c/Makefile 11 Oct 2023 13:45:59 -0000 1.24
+++ devel/protobuf-c/Makefile 29 Jan 2024 00:26:56 -0000
@@ -2,7 +2,7 @@ COMMENT = c protocol buffers
V = 1.4.1
DISTNAME = protobuf-c-$V
-REVISION = 1
+REVISION = 2
SHARED_LIBS = protobuf-c 2.0 # 1.0
@@ -21,14 +21,14 @@ WANTLIB += absl_cordz_functions absl_cor
WANTLIB += absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB += absl_crc_internal absl_debugging_internal absl_demangle_internal
WANTLIB += absl_die_if_null absl_examine_stack absl_exponential_biased
-WANTLIB += absl_flags absl_flags_commandlineflag absl_flags_commandlineflag_internal
+WANTLIB += absl_flags_commandlineflag absl_flags_commandlineflag_internal
WANTLIB += absl_flags_config absl_flags_internal absl_flags_marshalling
WANTLIB += absl_flags_private_handle_accessor absl_flags_program_name
WANTLIB += absl_flags_reflection absl_graphcycles_internal absl_hash
WANTLIB += absl_hashtablez_sampler absl_int128 absl_kernel_timeout_internal
WANTLIB += absl_log_entry absl_log_globals absl_log_initialize
WANTLIB += absl_log_internal_check_op absl_log_internal_conditions
-WANTLIB += absl_log_internal_format absl_log_internal_globals
+WANTLIB += absl_log_internal_fnmatch absl_log_internal_format absl_log_internal_globals
WANTLIB += absl_log_internal_log_sink_set absl_log_internal_message
WANTLIB += absl_log_internal_nullguard absl_log_internal_proto
WANTLIB += absl_log_severity absl_log_sink absl_low_level_hash
@@ -36,7 +36,7 @@ WANTLIB += absl_malloc_internal absl_raw
WANTLIB += absl_spinlock_wait absl_stacktrace absl_status absl_statusor
WANTLIB += absl_str_format_internal absl_strerror absl_string_view
WANTLIB += absl_strings absl_strings_internal absl_symbolize absl_synchronization
-WANTLIB += absl_throw_delegate absl_time absl_time_zone c execinfo
+WANTLIB += absl_throw_delegate absl_time absl_time_zone absl_vlog_config_internal c execinfo
WANTLIB += m protobuf protoc utf8_range utf8_validity z
COMPILER = base-clang ports-gcc
Index: geo/qgis/Makefile
===================================================================
RCS file: /cvs/ports/geo/qgis/Makefile,v
diff -u -p -r1.189 Makefile
--- geo/qgis/Makefile 23 Dec 2023 07:33:46 -0000 1.189
+++ geo/qgis/Makefile 29 Jan 2024 00:18:13 -0000
@@ -10,6 +10,7 @@ DISTNAME = qgis-3.34.2
EXTRACT_SUFX = .tar.bz2
CATEGORIES = geo x11
DEBUG_PACKAGES =${BUILD_PACKAGES}
+REVISION = 0
SHARED_LIBS = qgis_core 72.1 \
qgis_app 47.1 \
@@ -97,7 +98,7 @@ WANTLIB += absl_cordz_functions absl_cor
WANTLIB += absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB += absl_crc_internal absl_debugging_internal absl_demangle_internal
WANTLIB += absl_die_if_null absl_examine_stack absl_exponential_biased
-WANTLIB += absl_flags absl_flags_commandlineflag absl_flags_commandlineflag_internal
+WANTLIB += absl_flags_commandlineflag absl_flags_commandlineflag_internal
WANTLIB += absl_flags_config absl_flags_internal absl_flags_marshalling
WANTLIB += absl_flags_private_handle_accessor absl_flags_program_name
WANTLIB += absl_flags_reflection absl_graphcycles_internal absl_hash
Index: net/mosh/Makefile
===================================================================
RCS file: /cvs/ports/net/mosh/Makefile,v
diff -u -p -r1.27 Makefile
--- net/mosh/Makefile 11 Oct 2023 13:45:59 -0000 1.27
+++ net/mosh/Makefile 29 Jan 2024 00:30:35 -0000
@@ -1,7 +1,7 @@
COMMENT = mobile shell
DISTNAME = mosh-1.4.0
-REVISION = 1
+REVISION = 2
CATEGORIES = net
@@ -19,14 +19,14 @@ WANTLIB += absl_cordz_functions absl_cor
WANTLIB += absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB += absl_crc_internal absl_debugging_internal absl_demangle_internal
WANTLIB += absl_die_if_null absl_examine_stack absl_exponential_biased
-WANTLIB += absl_flags absl_flags_commandlineflag absl_flags_commandlineflag_internal
+WANTLIB += absl_flags_commandlineflag absl_flags_commandlineflag_internal
WANTLIB += absl_flags_config absl_flags_internal absl_flags_marshalling
WANTLIB += absl_flags_private_handle_accessor absl_flags_program_name
WANTLIB += absl_flags_reflection absl_graphcycles_internal absl_hash
WANTLIB += absl_hashtablez_sampler absl_int128 absl_kernel_timeout_internal
WANTLIB += absl_log_entry absl_log_globals absl_log_initialize
WANTLIB += absl_log_internal_check_op absl_log_internal_conditions
-WANTLIB += absl_log_internal_format absl_log_internal_globals
+WANTLIB += absl_log_internal_fnmatch absl_log_internal_format absl_log_internal_globals
WANTLIB += absl_log_internal_log_sink_set absl_log_internal_message
WANTLIB += absl_log_internal_nullguard absl_log_internal_proto
WANTLIB += absl_log_severity absl_log_sink absl_low_level_hash
@@ -34,7 +34,7 @@ WANTLIB += absl_malloc_internal absl_raw
WANTLIB += absl_spinlock_wait absl_stacktrace absl_status absl_statusor
WANTLIB += absl_str_format_internal absl_strerror absl_string_view
WANTLIB += absl_strings absl_strings_internal absl_symbolize absl_synchronization
-WANTLIB += absl_throw_delegate absl_time absl_time_zone c crypto
+WANTLIB += absl_throw_delegate absl_time absl_time_zone absl_vlog_config_internal c crypto
WANTLIB += curses execinfo m protobuf ssl utf8_range utf8_validity
WANTLIB += util z
Index: net/tg_owt/Makefile
===================================================================
RCS file: /cvs/ports/net/tg_owt/Makefile,v
diff -u -p -r1.48 Makefile
--- net/tg_owt/Makefile 4 Nov 2023 15:35:35 -0000 1.48
+++ net/tg_owt/Makefile 28 Jan 2024 23:24:10 -0000
@@ -14,6 +14,7 @@ GH_PROJECT = tg_owt
GH_COMMIT = 71cce98c5fb1d9328892d55f70db711afd5b1aef
DISTNAME = ${GH_PROJECT}-0.0.0.20231101
CATEGORIES = net
+REVISION = 0
DEBUG_PACKAGES = ${BUILD_PACKAGES}
@@ -51,7 +52,7 @@ WANTLIB += absl_base absl_city absl_civi
WANTLIB += absl_cordz_functions absl_cordz_handle absl_cordz_info
WANTLIB += absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB += absl_crc_internal absl_debugging_internal absl_demangle_internal
-WANTLIB += absl_exponential_biased absl_flags absl_flags_commandlineflag
+WANTLIB += absl_exponential_biased absl_flags_commandlineflag
WANTLIB += absl_flags_commandlineflag_internal absl_flags_config
WANTLIB += absl_flags_internal absl_flags_marshalling absl_flags_parse
WANTLIB += absl_flags_private_handle_accessor absl_flags_program_name
Index: productivity/glabels/Makefile
===================================================================
RCS file: /cvs/ports/productivity/glabels/Makefile,v
diff -u -p -r1.81 Makefile
--- productivity/glabels/Makefile 11 Oct 2023 13:45:59 -0000 1.81
+++ productivity/glabels/Makefile 29 Jan 2024 00:15:59 -0000
@@ -2,7 +2,7 @@ COMMENT = labels and business card desi
GNOME_PROJECT = glabels
GNOME_VERSION = 3.4.1
-REVISION = 18
+REVISION = 19
CATEGORIES = productivity graphics
@@ -22,14 +22,14 @@ WANTLIB += absl_cord absl_cord_internal
WANTLIB += absl_cordz_info absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB += absl_crc_internal absl_debugging_internal absl_demangle_internal
WANTLIB += absl_die_if_null absl_examine_stack absl_exponential_biased
-WANTLIB += absl_flags absl_flags_commandlineflag absl_flags_commandlineflag_internal
+WANTLIB += absl_flags_commandlineflag absl_flags_commandlineflag_internal
WANTLIB += absl_flags_config absl_flags_internal absl_flags_marshalling
WANTLIB += absl_flags_private_handle_accessor absl_flags_program_name
WANTLIB += absl_flags_reflection absl_graphcycles_internal absl_hash
WANTLIB += absl_hashtablez_sampler absl_int128 absl_kernel_timeout_internal
WANTLIB += absl_log_entry absl_log_globals absl_log_initialize
WANTLIB += absl_log_internal_check_op absl_log_internal_conditions
-WANTLIB += absl_log_internal_format absl_log_internal_globals
+WANTLIB += absl_log_internal_fnmatch absl_log_internal_format absl_log_internal_globals
WANTLIB += absl_log_internal_log_sink_set absl_log_internal_message
WANTLIB += absl_log_internal_nullguard absl_log_internal_proto
WANTLIB += absl_log_severity absl_log_sink absl_low_level_hash
@@ -37,7 +37,7 @@ WANTLIB += absl_malloc_internal absl_raw
WANTLIB += absl_spinlock_wait absl_stacktrace absl_status absl_statusor
WANTLIB += absl_str_format_internal absl_strerror absl_string_view
WANTLIB += absl_strings absl_strings_internal absl_symbolize absl_synchronization
-WANTLIB += absl_throw_delegate absl_time absl_time_zone atk-1.0
+WANTLIB += absl_throw_delegate absl_time absl_time_zone absl_vlog_config_internal atk-1.0
WANTLIB += atk-bridge-2.0 atspi boost_atomic-mt boost_chrono-mt
WANTLIB += boost_date_time-mt boost_system-mt boost_thread-mt
WANTLIB += brotlicommon brotlidec c cairo cairo-gobject camel-1.2
Index: textproc/re2/Makefile
===================================================================
RCS file: /cvs/ports/textproc/re2/Makefile,v
diff -u -p -r1.5 Makefile
--- textproc/re2/Makefile 19 Jan 2024 07:56:08 -0000 1.5
+++ textproc/re2/Makefile 28 Jan 2024 23:35:49 -0000
@@ -3,6 +3,7 @@ GH_ACCOUNT = google
GH_PROJECT = re2
GH_TAGNAME = 2023-11-01
PKGNAME = ${GH_PROJECT}-${GH_TAGNAME:S/-//g}
+REVISION = 0
SHARED_LIBS = re2 1.0 # 10.0.0
@@ -16,7 +17,7 @@ WANTLIB += absl_base absl_city absl_civi
WANTLIB += absl_cordz_functions absl_cordz_handle absl_cordz_info
WANTLIB += absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB += absl_crc_internal absl_debugging_internal absl_demangle_internal
-WANTLIB += absl_exponential_biased absl_flags absl_flags_commandlineflag
+WANTLIB += absl_exponential_biased absl_flags_commandlineflag
WANTLIB += absl_flags_commandlineflag_internal absl_flags_config
WANTLIB += absl_flags_internal absl_flags_marshalling absl_flags_private_handle_accessor
WANTLIB += absl_flags_program_name absl_flags_reflection absl_graphcycles_internal
Index: x11/qt6/qtgrpc/Makefile
===================================================================
RCS file: /cvs/ports/x11/qt6/qtgrpc/Makefile,v
diff -u -p -r1.3 Makefile
--- x11/qt6/qtgrpc/Makefile 11 Oct 2023 13:45:59 -0000 1.3
+++ x11/qt6/qtgrpc/Makefile 29 Jan 2024 00:19:46 -0000
@@ -1,7 +1,7 @@
QT6NAME = QtgRPC
COMMENT = gRPC support for Qt6
PKGSPEC = qt6-qtgrpc-${QT6_PKGSPEC}
-REVISION = 1
+REVISION = 2
SHARED_LIBS += Qt6Grpc 0.0 # 0.0
SHARED_LIBS += Qt6Protobuf 0.0 # 0.0
@@ -12,14 +12,14 @@ WANTLIB += absl_cord absl_cord_internal
WANTLIB += absl_cordz_info absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB += absl_crc_internal absl_debugging_internal absl_demangle_internal
WANTLIB += absl_die_if_null absl_examine_stack absl_exponential_biased
-WANTLIB += absl_flags absl_flags_commandlineflag absl_flags_commandlineflag_internal
+WANTLIB += absl_flags_commandlineflag absl_flags_commandlineflag_internal
WANTLIB += absl_flags_config absl_flags_internal absl_flags_marshalling
WANTLIB += absl_flags_private_handle_accessor absl_flags_program_name
WANTLIB += absl_flags_reflection absl_graphcycles_internal absl_hash
WANTLIB += absl_hashtablez_sampler absl_int128 absl_kernel_timeout_internal
WANTLIB += absl_log_entry absl_log_globals absl_log_initialize
WANTLIB += absl_log_internal_check_op absl_log_internal_conditions
-WANTLIB += absl_log_internal_format absl_log_internal_globals
+WANTLIB += absl_log_internal_fnmatch absl_log_internal_format absl_log_internal_globals
WANTLIB += absl_log_internal_log_sink_set absl_log_internal_message
WANTLIB += absl_log_internal_nullguard absl_log_internal_proto
WANTLIB += absl_log_severity absl_log_sink absl_low_level_hash
@@ -27,7 +27,7 @@ WANTLIB += absl_malloc_internal absl_raw
WANTLIB += absl_spinlock_wait absl_stacktrace absl_status absl_statusor
WANTLIB += absl_str_format_internal absl_strerror absl_string_view
WANTLIB += absl_strings absl_strings_internal absl_symbolize absl_synchronization
-WANTLIB += absl_throw_delegate absl_time absl_time_zone c m protobuf
+WANTLIB += absl_throw_delegate absl_time absl_time_zone absl_vlog_config_internal c m protobuf
WANTLIB += protoc
BUILD_DEPENDS = graphics/glslang
Index: x11/vlc/Makefile
===================================================================
RCS file: /cvs/ports/x11/vlc/Makefile,v
diff -u -p -r1.267 Makefile
--- x11/vlc/Makefile 11 Oct 2023 13:45:59 -0000 1.267
+++ x11/vlc/Makefile 29 Jan 2024 00:13:44 -0000
@@ -5,7 +5,7 @@ V= 3.0.18
DISTNAME= vlc-${V}
PKGNAME-main= ${DISTNAME}
PKGNAME-jack= vlc-jack-${V}
-REVISION-main= 4
+REVISION-main= 5
CATEGORIES= x11
SITES= https://download.videolan.org/pub/videolan/vlc/${V}/
EXTRACT_SUFX= .tar.xz
@@ -34,14 +34,14 @@ WANTLIB-main += absl_cordz_functions abs
WANTLIB-main += absl_crc32c absl_crc_cord_state absl_crc_cpu_detect
WANTLIB-main += absl_crc_internal absl_debugging_internal absl_demangle_internal
WANTLIB-main += absl_die_if_null absl_examine_stack absl_exponential_biased
-WANTLIB-main += absl_flags absl_flags_commandlineflag absl_flags_commandlineflag_internal
+WANTLIB-main += absl_flags_commandlineflag absl_flags_commandlineflag_internal
WANTLIB-main += absl_flags_config absl_flags_internal absl_flags_marshalling
WANTLIB-main += absl_flags_private_handle_accessor absl_flags_program_name
WANTLIB-main += absl_flags_reflection absl_graphcycles_internal absl_hash
WANTLIB-main += absl_hashtablez_sampler absl_int128 absl_kernel_timeout_internal
WANTLIB-main += absl_log_entry absl_log_globals absl_log_initialize
WANTLIB-main += absl_log_internal_check_op absl_log_internal_conditions
-WANTLIB-main += absl_log_internal_format absl_log_internal_globals
+WANTLIB-main += absl_log_internal_fnmatch absl_log_internal_format absl_log_internal_globals
WANTLIB-main += absl_log_internal_log_sink_set absl_log_internal_message
WANTLIB-main += absl_log_internal_nullguard absl_log_internal_proto
WANTLIB-main += absl_log_severity absl_log_sink absl_low_level_hash
@@ -49,7 +49,7 @@ WANTLIB-main += absl_malloc_internal abs
WANTLIB-main += absl_spinlock_wait absl_stacktrace absl_status absl_statusor
WANTLIB-main += absl_str_format_internal absl_strerror absl_string_view
WANTLIB-main += absl_strings absl_strings_internal absl_symbolize absl_synchronization
-WANTLIB-main += absl_throw_delegate absl_time absl_time_zone aom archive
+WANTLIB-main += absl_throw_delegate absl_time absl_time_zone absl_vlog_config_internal aom archive
WANTLIB-main += ass atk-1.0 atk-bridge-2.0 atspi avahi-client avahi-common
WANTLIB-main += avcodec avformat avutil b2 bluray brotlidec brotlienc
WANTLIB-main += bz2 c cairo cairo-gobject cddb crypto dav1d double-conversion
devel/abseil-cpp: update to 20240116.0, sync consumers (bulk wanted)