diff options
Diffstat (limited to 'net')
164 files changed, 2065 insertions, 620 deletions
diff --git a/net/Makefile b/net/Makefile index 2ade459183ca..1d7962c2c074 100644 --- a/net/Makefile +++ b/net/Makefile @@ -32,6 +32,7 @@ SUBDIR += arprelease SUBDIR += arrowdl SUBDIR += asio + SUBDIR += asio130 SUBDIR += asterisk-chan_sccp SUBDIR += asterisk-g72x SUBDIR += asterisk18 @@ -568,6 +569,7 @@ SUBDIR += olsrd SUBDIR += omnitty SUBDIR += onedrive + SUBDIR += onedrivegui SUBDIR += onenetd SUBDIR += onioncat SUBDIR += onionprobe @@ -1608,6 +1610,8 @@ SUBDIR += tn5250 SUBDIR += toonel SUBDIR += torsocks + SUBDIR += toxiproxy-cli + SUBDIR += toxiproxy-server SUBDIR += traefik SUBDIR += traff SUBDIR += trafshow diff --git a/net/arataga/Makefile b/net/arataga/Makefile index 6154c7d5c2da..941d3271ecd4 100644 --- a/net/arataga/Makefile +++ b/net/arataga/Makefile @@ -1,7 +1,7 @@ PORTNAME= arataga PORTVERSION= 0.5.4 DISTVERSIONPREFIX= v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MASTER_SITES= SF/sobjectizer/oess/oess-2:oess DISTFILES= oess-2.2.3-full.tar.bz2:oess diff --git a/net/arataga/files/patch-git-a8475a4-partial b/net/arataga/files/patch-git-a8475a4-partial new file mode 100644 index 000000000000..c2e0d3db6d4b --- /dev/null +++ b/net/arataga/files/patch-git-a8475a4-partial @@ -0,0 +1,33 @@ +--- restinio/impl/acceptor.hpp.orig 2022-07-11 11:10:14 UTC ++++ restinio/impl/acceptor.hpp +@@ -261,7 +261,7 @@ class acceptor_t final + ep = m_acceptor.local_endpoint(); + + // Now we can switch acceptor to listen state. +- m_acceptor.listen( asio_ns::socket_base::max_connections ); ++ m_acceptor.listen( asio_ns::socket_base::max_listen_connections ); + + // Call accept connections routine. + for( std::size_t i = 0; i< this->concurrent_accept_sockets_count(); ++i ) +@@ -604,7 +604,7 @@ class acceptor_t final + else if( str_addr == "ip6-localhost" ) + str_addr = "::1"; + +- result = asio_ns::ip::address::from_string( str_addr ); ++ result = asio_ns::ip::make_address( str_addr ); + } + else if( auto * addr_v = get_if<asio_ns::ip::address>( &from ) ) + { +--- restinio/impl/connection.hpp.orig 2022-07-11 11:10:14 UTC ++++ restinio/impl/connection.hpp +@@ -1028,8 +1028,8 @@ class connection_t final + m_logger.trace( [&]{ + // Get status line: + const string_view_t status_line{ +- asio_ns::buffer_cast< const char * >( +- next_write_group->first.items().front().buf() ), ++ static_cast< const char * >( ++ next_write_group->first.items().front().buf().data() ), + next_write_group->first.status_line_size() }; + + return fmt::format( diff --git a/net/asio/Makefile b/net/asio/Makefile index fb37ef174fc4..29331499cfda 100644 --- a/net/asio/Makefile +++ b/net/asio/Makefile @@ -1,5 +1,5 @@ PORTNAME= asio -DISTVERSION= 1.30.2 +DISTVERSION= 1.34.2 CATEGORIES= net devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}%20(Stable)/ @@ -14,6 +14,8 @@ USES= tar:bz2 GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-noarch-pkgconfigdir=${PREFIX}/libdata/pkgconfig + NO_BUILD= yes NO_ARCH= yes diff --git a/net/asio/distinfo b/net/asio/distinfo index 19fbd5958c9a..6dccc793fa66 100644 --- a/net/asio/distinfo +++ b/net/asio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1719925331 -SHA256 (asio-1.30.2.tar.bz2) = 9f12cef05c0477eace9c68ccabd19f9e3a04b875d4768c323714cbd3a5fa3c2b -SIZE (asio-1.30.2.tar.bz2) = 3196850 +TIMESTAMP = 1752611977 +SHA256 (asio-1.34.2.tar.bz2) = 9cbe5e8abefcde3cb2705672210548a3e9e82b13682a3d2828bc34d3fe1b5583 +SIZE (asio-1.34.2.tar.bz2) = 3219261 diff --git a/net/asio/files/patch-configure b/net/asio/files/patch-configure index ee74e8c5d0d1..acffb82ad16b 100644 --- a/net/asio/files/patch-configure +++ b/net/asio/files/patch-configure @@ -1,11 +1,11 @@ Since we aren't compiling anything for the port, don't look for boost: ---- configure.orig 2020-04-06 07:06:03 UTC +--- configure.orig 2025-04-10 21:52:03 UTC +++ configure -@@ -4900,7 +4900,6 @@ else +@@ -5628,7 +5628,6 @@ else case e in #( echo "Can't find boost headers. Please check the location of the boost" echo "distribution and rerun configure using the --with-boost=DIR option." echo "Alternatively, run with --without-boost to enable standalone build." - exit 1 - + ;; + esac fi - diff --git a/net/asio/pkg-plist b/net/asio/pkg-plist index b98755110d2f..04b2c9dac3d3 100644 --- a/net/asio/pkg-plist +++ b/net/asio/pkg-plist @@ -44,17 +44,23 @@ include/asio/buffered_stream_fwd.hpp include/asio/buffered_write_stream.hpp include/asio/buffered_write_stream_fwd.hpp include/asio/buffers_iterator.hpp +include/asio/cancel_after.hpp +include/asio/cancel_at.hpp include/asio/cancellation_signal.hpp include/asio/cancellation_state.hpp include/asio/cancellation_type.hpp +include/asio/co_composed.hpp include/asio/co_spawn.hpp include/asio/completion_condition.hpp include/asio/compose.hpp +include/asio/composed.hpp +include/asio/config.hpp include/asio/connect.hpp include/asio/connect_pipe.hpp include/asio/consign.hpp include/asio/coroutine.hpp include/asio/deadline_timer.hpp +include/asio/default_completion_token.hpp include/asio/defer.hpp include/asio/deferred.hpp include/asio/detached.hpp @@ -73,6 +79,9 @@ include/asio/detail/call_stack.hpp include/asio/detail/chrono.hpp include/asio/detail/chrono_time_traits.hpp include/asio/detail/completion_handler.hpp +include/asio/detail/completion_message.hpp +include/asio/detail/completion_payload.hpp +include/asio/detail/completion_payload_handler.hpp include/asio/detail/composed_work.hpp include/asio/detail/concurrency_hint.hpp include/asio/detail/conditionally_enabled_event.hpp @@ -165,6 +174,7 @@ include/asio/detail/impl/winsock_init.ipp include/asio/detail/initiate_defer.hpp include/asio/detail/initiate_dispatch.hpp include/asio/detail/initiate_post.hpp +include/asio/detail/initiation_base.hpp include/asio/detail/io_control.hpp include/asio/detail/io_object_impl.hpp include/asio/detail/io_uring_descriptor_read_at_op.hpp @@ -280,6 +290,7 @@ include/asio/detail/thread_group.hpp include/asio/detail/thread_info_base.hpp include/asio/detail/throw_error.hpp include/asio/detail/throw_exception.hpp +include/asio/detail/timed_cancel_op.hpp include/asio/detail/timer_queue.hpp include/asio/detail/timer_queue_base.hpp include/asio/detail/timer_queue_ptime.hpp @@ -336,6 +347,7 @@ include/asio/detail/winsock_init.hpp include/asio/detail/work_dispatcher.hpp include/asio/detail/wrapped_handler.hpp include/asio/dispatch.hpp +include/asio/disposition.hpp include/asio/error.hpp include/asio/error_code.hpp include/asio/execution.hpp @@ -357,9 +369,7 @@ include/asio/execution/relationship.hpp include/asio/execution_context.hpp include/asio/executor.hpp include/asio/executor_work_guard.hpp -include/asio/experimental/append.hpp include/asio/experimental/as_single.hpp -include/asio/experimental/as_tuple.hpp include/asio/experimental/awaitable_operators.hpp include/asio/experimental/basic_channel.hpp include/asio/experimental/basic_concurrent_channel.hpp @@ -372,11 +382,7 @@ include/asio/experimental/co_spawn.hpp include/asio/experimental/concurrent_channel.hpp include/asio/experimental/coro.hpp include/asio/experimental/coro_traits.hpp -include/asio/experimental/deferred.hpp -include/asio/experimental/detail/channel_handler.hpp -include/asio/experimental/detail/channel_message.hpp include/asio/experimental/detail/channel_operation.hpp -include/asio/experimental/detail/channel_payload.hpp include/asio/experimental/detail/channel_receive_op.hpp include/asio/experimental/detail/channel_send_functions.hpp include/asio/experimental/detail/channel_send_op.hpp @@ -388,14 +394,12 @@ include/asio/experimental/detail/impl/channel_service.hpp include/asio/experimental/detail/partial_promise.hpp include/asio/experimental/impl/as_single.hpp include/asio/experimental/impl/channel_error.ipp -include/asio/experimental/impl/co_composed.hpp include/asio/experimental/impl/coro.hpp include/asio/experimental/impl/parallel_group.hpp include/asio/experimental/impl/promise.hpp include/asio/experimental/impl/use_coro.hpp include/asio/experimental/impl/use_promise.hpp include/asio/experimental/parallel_group.hpp -include/asio/experimental/prepend.hpp include/asio/experimental/promise.hpp include/asio/experimental/use_coro.hpp include/asio/experimental/use_promise.hpp @@ -409,6 +413,7 @@ include/asio/generic/seq_packet_protocol.hpp include/asio/generic/stream_protocol.hpp include/asio/handler_continuation_hook.hpp include/asio/high_resolution_timer.hpp +include/asio/immediate.hpp include/asio/impl/any_completion_executor.ipp include/asio/impl/any_io_executor.ipp include/asio/impl/append.hpp @@ -416,8 +421,12 @@ include/asio/impl/as_tuple.hpp include/asio/impl/awaitable.hpp include/asio/impl/buffered_read_stream.hpp include/asio/impl/buffered_write_stream.hpp +include/asio/impl/cancel_after.hpp +include/asio/impl/cancel_at.hpp include/asio/impl/cancellation_signal.ipp include/asio/impl/co_spawn.hpp +include/asio/impl/config.hpp +include/asio/impl/config.ipp include/asio/impl/connect.hpp include/asio/impl/connect_pipe.hpp include/asio/impl/connect_pipe.ipp @@ -453,8 +462,6 @@ include/asio/impl/write.hpp include/asio/impl/write_at.hpp include/asio/io_context.hpp include/asio/io_context_strand.hpp -include/asio/io_service.hpp -include/asio/io_service_strand.hpp include/asio/ip/address.hpp include/asio/ip/address_v4.hpp include/asio/ip/address_v4_iterator.hpp @@ -558,9 +565,7 @@ include/asio/ssl/impl/context.hpp include/asio/ssl/impl/context.ipp include/asio/ssl/impl/error.ipp include/asio/ssl/impl/host_name_verification.ipp -include/asio/ssl/impl/rfc2818_verification.ipp include/asio/ssl/impl/src.hpp -include/asio/ssl/rfc2818_verification.hpp include/asio/ssl/stream.hpp include/asio/ssl/stream_base.hpp include/asio/ssl/verify_context.hpp diff --git a/net/asio130/Makefile b/net/asio130/Makefile new file mode 100644 index 000000000000..53578a756205 --- /dev/null +++ b/net/asio130/Makefile @@ -0,0 +1,23 @@ +PORTNAME= asio +DISTVERSION= 1.30.2 +CATEGORIES= net devel +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}%20(Stable)/ +PKGNAMESUFFIX= 130 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cross-platform C++ library for network and low-level I/O programming +WWW= https://think-async.com/Asio/ + +LICENSE= BSL +LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt + +USES= tar:bz2 + +GNU_CONFIGURE= yes + +NO_BUILD= yes +NO_ARCH= yes + +INSTALL_TARGET= install-data + +.include <bsd.port.mk> diff --git a/net/asio130/distinfo b/net/asio130/distinfo new file mode 100644 index 000000000000..19fbd5958c9a --- /dev/null +++ b/net/asio130/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1719925331 +SHA256 (asio-1.30.2.tar.bz2) = 9f12cef05c0477eace9c68ccabd19f9e3a04b875d4768c323714cbd3a5fa3c2b +SIZE (asio-1.30.2.tar.bz2) = 3196850 diff --git a/net/asio130/files/patch-configure b/net/asio130/files/patch-configure new file mode 100644 index 000000000000..ee74e8c5d0d1 --- /dev/null +++ b/net/asio130/files/patch-configure @@ -0,0 +1,11 @@ +Since we aren't compiling anything for the port, don't look for boost: +--- configure.orig 2020-04-06 07:06:03 UTC ++++ configure +@@ -4900,7 +4900,6 @@ else + echo "Can't find boost headers. Please check the location of the boost" + echo "distribution and rerun configure using the --with-boost=DIR option." + echo "Alternatively, run with --without-boost to enable standalone build." +- exit 1 + + fi + diff --git a/net/asio130/pkg-descr b/net/asio130/pkg-descr new file mode 100644 index 000000000000..8f95ad5faa7d --- /dev/null +++ b/net/asio130/pkg-descr @@ -0,0 +1,3 @@ +Asio is a cross-platform C++ library for network and low-level I/O programming +that provides developers with a consistent asynchronous model using a modern +C++ approach. diff --git a/net/asio130/pkg-plist b/net/asio130/pkg-plist new file mode 100644 index 000000000000..b98755110d2f --- /dev/null +++ b/net/asio130/pkg-plist @@ -0,0 +1,622 @@ +include/asio.hpp +include/asio/any_completion_executor.hpp +include/asio/any_completion_handler.hpp +include/asio/any_io_executor.hpp +include/asio/append.hpp +include/asio/as_tuple.hpp +include/asio/associated_allocator.hpp +include/asio/associated_cancellation_slot.hpp +include/asio/associated_executor.hpp +include/asio/associated_immediate_executor.hpp +include/asio/associator.hpp +include/asio/async_result.hpp +include/asio/awaitable.hpp +include/asio/basic_datagram_socket.hpp +include/asio/basic_deadline_timer.hpp +include/asio/basic_file.hpp +include/asio/basic_io_object.hpp +include/asio/basic_random_access_file.hpp +include/asio/basic_raw_socket.hpp +include/asio/basic_readable_pipe.hpp +include/asio/basic_seq_packet_socket.hpp +include/asio/basic_serial_port.hpp +include/asio/basic_signal_set.hpp +include/asio/basic_socket.hpp +include/asio/basic_socket_acceptor.hpp +include/asio/basic_socket_iostream.hpp +include/asio/basic_socket_streambuf.hpp +include/asio/basic_stream_file.hpp +include/asio/basic_stream_socket.hpp +include/asio/basic_streambuf.hpp +include/asio/basic_streambuf_fwd.hpp +include/asio/basic_waitable_timer.hpp +include/asio/basic_writable_pipe.hpp +include/asio/bind_allocator.hpp +include/asio/bind_cancellation_slot.hpp +include/asio/bind_executor.hpp +include/asio/bind_immediate_executor.hpp +include/asio/buffer.hpp +include/asio/buffer_registration.hpp +include/asio/buffered_read_stream.hpp +include/asio/buffered_read_stream_fwd.hpp +include/asio/buffered_stream.hpp +include/asio/buffered_stream_fwd.hpp +include/asio/buffered_write_stream.hpp +include/asio/buffered_write_stream_fwd.hpp +include/asio/buffers_iterator.hpp +include/asio/cancellation_signal.hpp +include/asio/cancellation_state.hpp +include/asio/cancellation_type.hpp +include/asio/co_spawn.hpp +include/asio/completion_condition.hpp +include/asio/compose.hpp +include/asio/connect.hpp +include/asio/connect_pipe.hpp +include/asio/consign.hpp +include/asio/coroutine.hpp +include/asio/deadline_timer.hpp +include/asio/defer.hpp +include/asio/deferred.hpp +include/asio/detached.hpp +include/asio/detail/array.hpp +include/asio/detail/array_fwd.hpp +include/asio/detail/assert.hpp +include/asio/detail/atomic_count.hpp +include/asio/detail/base_from_cancellation_state.hpp +include/asio/detail/base_from_completion_cond.hpp +include/asio/detail/bind_handler.hpp +include/asio/detail/blocking_executor_op.hpp +include/asio/detail/buffer_resize_guard.hpp +include/asio/detail/buffer_sequence_adapter.hpp +include/asio/detail/buffered_stream_storage.hpp +include/asio/detail/call_stack.hpp +include/asio/detail/chrono.hpp +include/asio/detail/chrono_time_traits.hpp +include/asio/detail/completion_handler.hpp +include/asio/detail/composed_work.hpp +include/asio/detail/concurrency_hint.hpp +include/asio/detail/conditionally_enabled_event.hpp +include/asio/detail/conditionally_enabled_mutex.hpp +include/asio/detail/config.hpp +include/asio/detail/consuming_buffers.hpp +include/asio/detail/cstddef.hpp +include/asio/detail/cstdint.hpp +include/asio/detail/date_time_fwd.hpp +include/asio/detail/deadline_timer_service.hpp +include/asio/detail/dependent_type.hpp +include/asio/detail/descriptor_ops.hpp +include/asio/detail/descriptor_read_op.hpp +include/asio/detail/descriptor_write_op.hpp +include/asio/detail/dev_poll_reactor.hpp +include/asio/detail/epoll_reactor.hpp +include/asio/detail/event.hpp +include/asio/detail/eventfd_select_interrupter.hpp +include/asio/detail/exception.hpp +include/asio/detail/executor_function.hpp +include/asio/detail/executor_op.hpp +include/asio/detail/fd_set_adapter.hpp +include/asio/detail/fenced_block.hpp +include/asio/detail/functional.hpp +include/asio/detail/future.hpp +include/asio/detail/global.hpp +include/asio/detail/handler_alloc_helpers.hpp +include/asio/detail/handler_cont_helpers.hpp +include/asio/detail/handler_tracking.hpp +include/asio/detail/handler_type_requirements.hpp +include/asio/detail/handler_work.hpp +include/asio/detail/hash_map.hpp +include/asio/detail/impl/buffer_sequence_adapter.ipp +include/asio/detail/impl/descriptor_ops.ipp +include/asio/detail/impl/dev_poll_reactor.hpp +include/asio/detail/impl/dev_poll_reactor.ipp +include/asio/detail/impl/epoll_reactor.hpp +include/asio/detail/impl/epoll_reactor.ipp +include/asio/detail/impl/eventfd_select_interrupter.ipp +include/asio/detail/impl/handler_tracking.ipp +include/asio/detail/impl/io_uring_descriptor_service.ipp +include/asio/detail/impl/io_uring_file_service.ipp +include/asio/detail/impl/io_uring_service.hpp +include/asio/detail/impl/io_uring_service.ipp +include/asio/detail/impl/io_uring_socket_service_base.ipp +include/asio/detail/impl/kqueue_reactor.hpp +include/asio/detail/impl/kqueue_reactor.ipp +include/asio/detail/impl/null_event.ipp +include/asio/detail/impl/pipe_select_interrupter.ipp +include/asio/detail/impl/posix_event.ipp +include/asio/detail/impl/posix_mutex.ipp +include/asio/detail/impl/posix_serial_port_service.ipp +include/asio/detail/impl/posix_thread.ipp +include/asio/detail/impl/posix_tss_ptr.ipp +include/asio/detail/impl/reactive_descriptor_service.ipp +include/asio/detail/impl/reactive_socket_service_base.ipp +include/asio/detail/impl/resolver_service_base.ipp +include/asio/detail/impl/scheduler.ipp +include/asio/detail/impl/select_reactor.hpp +include/asio/detail/impl/select_reactor.ipp +include/asio/detail/impl/service_registry.hpp +include/asio/detail/impl/service_registry.ipp +include/asio/detail/impl/signal_set_service.ipp +include/asio/detail/impl/socket_ops.ipp +include/asio/detail/impl/socket_select_interrupter.ipp +include/asio/detail/impl/strand_executor_service.hpp +include/asio/detail/impl/strand_executor_service.ipp +include/asio/detail/impl/strand_service.hpp +include/asio/detail/impl/strand_service.ipp +include/asio/detail/impl/thread_context.ipp +include/asio/detail/impl/throw_error.ipp +include/asio/detail/impl/timer_queue_ptime.ipp +include/asio/detail/impl/timer_queue_set.ipp +include/asio/detail/impl/win_event.ipp +include/asio/detail/impl/win_iocp_file_service.ipp +include/asio/detail/impl/win_iocp_handle_service.ipp +include/asio/detail/impl/win_iocp_io_context.hpp +include/asio/detail/impl/win_iocp_io_context.ipp +include/asio/detail/impl/win_iocp_serial_port_service.ipp +include/asio/detail/impl/win_iocp_socket_service_base.ipp +include/asio/detail/impl/win_mutex.ipp +include/asio/detail/impl/win_object_handle_service.ipp +include/asio/detail/impl/win_static_mutex.ipp +include/asio/detail/impl/win_thread.ipp +include/asio/detail/impl/win_tss_ptr.ipp +include/asio/detail/impl/winrt_ssocket_service_base.ipp +include/asio/detail/impl/winrt_timer_scheduler.hpp +include/asio/detail/impl/winrt_timer_scheduler.ipp +include/asio/detail/impl/winsock_init.ipp +include/asio/detail/initiate_defer.hpp +include/asio/detail/initiate_dispatch.hpp +include/asio/detail/initiate_post.hpp +include/asio/detail/io_control.hpp +include/asio/detail/io_object_impl.hpp +include/asio/detail/io_uring_descriptor_read_at_op.hpp +include/asio/detail/io_uring_descriptor_read_op.hpp +include/asio/detail/io_uring_descriptor_service.hpp +include/asio/detail/io_uring_descriptor_write_at_op.hpp +include/asio/detail/io_uring_descriptor_write_op.hpp +include/asio/detail/io_uring_file_service.hpp +include/asio/detail/io_uring_null_buffers_op.hpp +include/asio/detail/io_uring_operation.hpp +include/asio/detail/io_uring_service.hpp +include/asio/detail/io_uring_socket_accept_op.hpp +include/asio/detail/io_uring_socket_connect_op.hpp +include/asio/detail/io_uring_socket_recv_op.hpp +include/asio/detail/io_uring_socket_recvfrom_op.hpp +include/asio/detail/io_uring_socket_recvmsg_op.hpp +include/asio/detail/io_uring_socket_send_op.hpp +include/asio/detail/io_uring_socket_sendto_op.hpp +include/asio/detail/io_uring_socket_service.hpp +include/asio/detail/io_uring_socket_service_base.hpp +include/asio/detail/io_uring_wait_op.hpp +include/asio/detail/is_buffer_sequence.hpp +include/asio/detail/is_executor.hpp +include/asio/detail/keyword_tss_ptr.hpp +include/asio/detail/kqueue_reactor.hpp +include/asio/detail/limits.hpp +include/asio/detail/local_free_on_block_exit.hpp +include/asio/detail/memory.hpp +include/asio/detail/mutex.hpp +include/asio/detail/non_const_lvalue.hpp +include/asio/detail/noncopyable.hpp +include/asio/detail/null_event.hpp +include/asio/detail/null_fenced_block.hpp +include/asio/detail/null_global.hpp +include/asio/detail/null_mutex.hpp +include/asio/detail/null_reactor.hpp +include/asio/detail/null_signal_blocker.hpp +include/asio/detail/null_socket_service.hpp +include/asio/detail/null_static_mutex.hpp +include/asio/detail/null_thread.hpp +include/asio/detail/null_tss_ptr.hpp +include/asio/detail/object_pool.hpp +include/asio/detail/old_win_sdk_compat.hpp +include/asio/detail/op_queue.hpp +include/asio/detail/operation.hpp +include/asio/detail/pipe_select_interrupter.hpp +include/asio/detail/pop_options.hpp +include/asio/detail/posix_event.hpp +include/asio/detail/posix_fd_set_adapter.hpp +include/asio/detail/posix_global.hpp +include/asio/detail/posix_mutex.hpp +include/asio/detail/posix_serial_port_service.hpp +include/asio/detail/posix_signal_blocker.hpp +include/asio/detail/posix_static_mutex.hpp +include/asio/detail/posix_thread.hpp +include/asio/detail/posix_tss_ptr.hpp +include/asio/detail/push_options.hpp +include/asio/detail/reactive_descriptor_service.hpp +include/asio/detail/reactive_null_buffers_op.hpp +include/asio/detail/reactive_socket_accept_op.hpp +include/asio/detail/reactive_socket_connect_op.hpp +include/asio/detail/reactive_socket_recv_op.hpp +include/asio/detail/reactive_socket_recvfrom_op.hpp +include/asio/detail/reactive_socket_recvmsg_op.hpp +include/asio/detail/reactive_socket_send_op.hpp +include/asio/detail/reactive_socket_sendto_op.hpp +include/asio/detail/reactive_socket_service.hpp +include/asio/detail/reactive_socket_service_base.hpp +include/asio/detail/reactive_wait_op.hpp +include/asio/detail/reactor.hpp +include/asio/detail/reactor_op.hpp +include/asio/detail/reactor_op_queue.hpp +include/asio/detail/recycling_allocator.hpp +include/asio/detail/regex_fwd.hpp +include/asio/detail/resolve_endpoint_op.hpp +include/asio/detail/resolve_op.hpp +include/asio/detail/resolve_query_op.hpp +include/asio/detail/resolver_service.hpp +include/asio/detail/resolver_service_base.hpp +include/asio/detail/scheduler.hpp +include/asio/detail/scheduler_operation.hpp +include/asio/detail/scheduler_task.hpp +include/asio/detail/scheduler_thread_info.hpp +include/asio/detail/scoped_lock.hpp +include/asio/detail/scoped_ptr.hpp +include/asio/detail/select_interrupter.hpp +include/asio/detail/select_reactor.hpp +include/asio/detail/service_registry.hpp +include/asio/detail/signal_blocker.hpp +include/asio/detail/signal_handler.hpp +include/asio/detail/signal_init.hpp +include/asio/detail/signal_op.hpp +include/asio/detail/signal_set_service.hpp +include/asio/detail/socket_holder.hpp +include/asio/detail/socket_ops.hpp +include/asio/detail/socket_option.hpp +include/asio/detail/socket_select_interrupter.hpp +include/asio/detail/socket_types.hpp +include/asio/detail/source_location.hpp +include/asio/detail/static_mutex.hpp +include/asio/detail/std_event.hpp +include/asio/detail/std_fenced_block.hpp +include/asio/detail/std_global.hpp +include/asio/detail/std_mutex.hpp +include/asio/detail/std_static_mutex.hpp +include/asio/detail/std_thread.hpp +include/asio/detail/strand_executor_service.hpp +include/asio/detail/strand_service.hpp +include/asio/detail/string_view.hpp +include/asio/detail/thread.hpp +include/asio/detail/thread_context.hpp +include/asio/detail/thread_group.hpp +include/asio/detail/thread_info_base.hpp +include/asio/detail/throw_error.hpp +include/asio/detail/throw_exception.hpp +include/asio/detail/timer_queue.hpp +include/asio/detail/timer_queue_base.hpp +include/asio/detail/timer_queue_ptime.hpp +include/asio/detail/timer_queue_set.hpp +include/asio/detail/timer_scheduler.hpp +include/asio/detail/timer_scheduler_fwd.hpp +include/asio/detail/tss_ptr.hpp +include/asio/detail/type_traits.hpp +include/asio/detail/utility.hpp +include/asio/detail/wait_handler.hpp +include/asio/detail/wait_op.hpp +include/asio/detail/win_event.hpp +include/asio/detail/win_fd_set_adapter.hpp +include/asio/detail/win_global.hpp +include/asio/detail/win_iocp_file_service.hpp +include/asio/detail/win_iocp_handle_read_op.hpp +include/asio/detail/win_iocp_handle_service.hpp +include/asio/detail/win_iocp_handle_write_op.hpp +include/asio/detail/win_iocp_io_context.hpp +include/asio/detail/win_iocp_null_buffers_op.hpp +include/asio/detail/win_iocp_operation.hpp +include/asio/detail/win_iocp_overlapped_op.hpp +include/asio/detail/win_iocp_overlapped_ptr.hpp +include/asio/detail/win_iocp_serial_port_service.hpp +include/asio/detail/win_iocp_socket_accept_op.hpp +include/asio/detail/win_iocp_socket_connect_op.hpp +include/asio/detail/win_iocp_socket_recv_op.hpp +include/asio/detail/win_iocp_socket_recvfrom_op.hpp +include/asio/detail/win_iocp_socket_recvmsg_op.hpp +include/asio/detail/win_iocp_socket_send_op.hpp +include/asio/detail/win_iocp_socket_service.hpp +include/asio/detail/win_iocp_socket_service_base.hpp +include/asio/detail/win_iocp_thread_info.hpp +include/asio/detail/win_iocp_wait_op.hpp +include/asio/detail/win_mutex.hpp +include/asio/detail/win_object_handle_service.hpp +include/asio/detail/win_static_mutex.hpp +include/asio/detail/win_thread.hpp +include/asio/detail/win_tss_ptr.hpp +include/asio/detail/winapp_thread.hpp +include/asio/detail/wince_thread.hpp +include/asio/detail/winrt_async_manager.hpp +include/asio/detail/winrt_async_op.hpp +include/asio/detail/winrt_resolve_op.hpp +include/asio/detail/winrt_resolver_service.hpp +include/asio/detail/winrt_socket_connect_op.hpp +include/asio/detail/winrt_socket_recv_op.hpp +include/asio/detail/winrt_socket_send_op.hpp +include/asio/detail/winrt_ssocket_service.hpp +include/asio/detail/winrt_ssocket_service_base.hpp +include/asio/detail/winrt_timer_scheduler.hpp +include/asio/detail/winrt_utils.hpp +include/asio/detail/winsock_init.hpp +include/asio/detail/work_dispatcher.hpp +include/asio/detail/wrapped_handler.hpp +include/asio/dispatch.hpp +include/asio/error.hpp +include/asio/error_code.hpp +include/asio/execution.hpp +include/asio/execution/allocator.hpp +include/asio/execution/any_executor.hpp +include/asio/execution/bad_executor.hpp +include/asio/execution/blocking.hpp +include/asio/execution/blocking_adaptation.hpp +include/asio/execution/context.hpp +include/asio/execution/context_as.hpp +include/asio/execution/executor.hpp +include/asio/execution/impl/bad_executor.ipp +include/asio/execution/invocable_archetype.hpp +include/asio/execution/mapping.hpp +include/asio/execution/occupancy.hpp +include/asio/execution/outstanding_work.hpp +include/asio/execution/prefer_only.hpp +include/asio/execution/relationship.hpp +include/asio/execution_context.hpp +include/asio/executor.hpp +include/asio/executor_work_guard.hpp +include/asio/experimental/append.hpp +include/asio/experimental/as_single.hpp +include/asio/experimental/as_tuple.hpp +include/asio/experimental/awaitable_operators.hpp +include/asio/experimental/basic_channel.hpp +include/asio/experimental/basic_concurrent_channel.hpp +include/asio/experimental/cancellation_condition.hpp +include/asio/experimental/channel.hpp +include/asio/experimental/channel_error.hpp +include/asio/experimental/channel_traits.hpp +include/asio/experimental/co_composed.hpp +include/asio/experimental/co_spawn.hpp +include/asio/experimental/concurrent_channel.hpp +include/asio/experimental/coro.hpp +include/asio/experimental/coro_traits.hpp +include/asio/experimental/deferred.hpp +include/asio/experimental/detail/channel_handler.hpp +include/asio/experimental/detail/channel_message.hpp +include/asio/experimental/detail/channel_operation.hpp +include/asio/experimental/detail/channel_payload.hpp +include/asio/experimental/detail/channel_receive_op.hpp +include/asio/experimental/detail/channel_send_functions.hpp +include/asio/experimental/detail/channel_send_op.hpp +include/asio/experimental/detail/channel_service.hpp +include/asio/experimental/detail/coro_completion_handler.hpp +include/asio/experimental/detail/coro_promise_allocator.hpp +include/asio/experimental/detail/has_signature.hpp +include/asio/experimental/detail/impl/channel_service.hpp +include/asio/experimental/detail/partial_promise.hpp +include/asio/experimental/impl/as_single.hpp +include/asio/experimental/impl/channel_error.ipp +include/asio/experimental/impl/co_composed.hpp +include/asio/experimental/impl/coro.hpp +include/asio/experimental/impl/parallel_group.hpp +include/asio/experimental/impl/promise.hpp +include/asio/experimental/impl/use_coro.hpp +include/asio/experimental/impl/use_promise.hpp +include/asio/experimental/parallel_group.hpp +include/asio/experimental/prepend.hpp +include/asio/experimental/promise.hpp +include/asio/experimental/use_coro.hpp +include/asio/experimental/use_promise.hpp +include/asio/file_base.hpp +include/asio/generic/basic_endpoint.hpp +include/asio/generic/datagram_protocol.hpp +include/asio/generic/detail/endpoint.hpp +include/asio/generic/detail/impl/endpoint.ipp +include/asio/generic/raw_protocol.hpp +include/asio/generic/seq_packet_protocol.hpp +include/asio/generic/stream_protocol.hpp +include/asio/handler_continuation_hook.hpp +include/asio/high_resolution_timer.hpp +include/asio/impl/any_completion_executor.ipp +include/asio/impl/any_io_executor.ipp +include/asio/impl/append.hpp +include/asio/impl/as_tuple.hpp +include/asio/impl/awaitable.hpp +include/asio/impl/buffered_read_stream.hpp +include/asio/impl/buffered_write_stream.hpp +include/asio/impl/cancellation_signal.ipp +include/asio/impl/co_spawn.hpp +include/asio/impl/connect.hpp +include/asio/impl/connect_pipe.hpp +include/asio/impl/connect_pipe.ipp +include/asio/impl/consign.hpp +include/asio/impl/deferred.hpp +include/asio/impl/detached.hpp +include/asio/impl/error.ipp +include/asio/impl/error_code.ipp +include/asio/impl/execution_context.hpp +include/asio/impl/execution_context.ipp +include/asio/impl/executor.hpp +include/asio/impl/executor.ipp +include/asio/impl/io_context.hpp +include/asio/impl/io_context.ipp +include/asio/impl/multiple_exceptions.ipp +include/asio/impl/prepend.hpp +include/asio/impl/read.hpp +include/asio/impl/read_at.hpp +include/asio/impl/read_until.hpp +include/asio/impl/redirect_error.hpp +include/asio/impl/serial_port_base.hpp +include/asio/impl/serial_port_base.ipp +include/asio/impl/spawn.hpp +include/asio/impl/src.hpp +include/asio/impl/system_context.hpp +include/asio/impl/system_context.ipp +include/asio/impl/system_executor.hpp +include/asio/impl/thread_pool.hpp +include/asio/impl/thread_pool.ipp +include/asio/impl/use_awaitable.hpp +include/asio/impl/use_future.hpp +include/asio/impl/write.hpp +include/asio/impl/write_at.hpp +include/asio/io_context.hpp +include/asio/io_context_strand.hpp +include/asio/io_service.hpp +include/asio/io_service_strand.hpp +include/asio/ip/address.hpp +include/asio/ip/address_v4.hpp +include/asio/ip/address_v4_iterator.hpp +include/asio/ip/address_v4_range.hpp +include/asio/ip/address_v6.hpp +include/asio/ip/address_v6_iterator.hpp +include/asio/ip/address_v6_range.hpp +include/asio/ip/bad_address_cast.hpp +include/asio/ip/basic_endpoint.hpp +include/asio/ip/basic_resolver.hpp +include/asio/ip/basic_resolver_entry.hpp +include/asio/ip/basic_resolver_iterator.hpp +include/asio/ip/basic_resolver_query.hpp +include/asio/ip/basic_resolver_results.hpp +include/asio/ip/detail/endpoint.hpp +include/asio/ip/detail/impl/endpoint.ipp +include/asio/ip/detail/socket_option.hpp +include/asio/ip/host_name.hpp +include/asio/ip/icmp.hpp +include/asio/ip/impl/address.hpp +include/asio/ip/impl/address.ipp +include/asio/ip/impl/address_v4.hpp +include/asio/ip/impl/address_v4.ipp +include/asio/ip/impl/address_v6.hpp +include/asio/ip/impl/address_v6.ipp +include/asio/ip/impl/basic_endpoint.hpp +include/asio/ip/impl/host_name.ipp +include/asio/ip/impl/network_v4.hpp +include/asio/ip/impl/network_v4.ipp +include/asio/ip/impl/network_v6.hpp +include/asio/ip/impl/network_v6.ipp +include/asio/ip/multicast.hpp +include/asio/ip/network_v4.hpp +include/asio/ip/network_v6.hpp +include/asio/ip/resolver_base.hpp +include/asio/ip/resolver_query_base.hpp +include/asio/ip/tcp.hpp +include/asio/ip/udp.hpp +include/asio/ip/unicast.hpp +include/asio/ip/v6_only.hpp +include/asio/is_applicable_property.hpp +include/asio/is_contiguous_iterator.hpp +include/asio/is_executor.hpp +include/asio/is_read_buffered.hpp +include/asio/is_write_buffered.hpp +include/asio/local/basic_endpoint.hpp +include/asio/local/connect_pair.hpp +include/asio/local/datagram_protocol.hpp +include/asio/local/detail/endpoint.hpp +include/asio/local/detail/impl/endpoint.ipp +include/asio/local/seq_packet_protocol.hpp +include/asio/local/stream_protocol.hpp +include/asio/multiple_exceptions.hpp +include/asio/packaged_task.hpp +include/asio/placeholders.hpp +include/asio/posix/basic_descriptor.hpp +include/asio/posix/basic_stream_descriptor.hpp +include/asio/posix/descriptor.hpp +include/asio/posix/descriptor_base.hpp +include/asio/posix/stream_descriptor.hpp +include/asio/post.hpp +include/asio/prefer.hpp +include/asio/prepend.hpp +include/asio/query.hpp +include/asio/random_access_file.hpp +include/asio/read.hpp +include/asio/read_at.hpp +include/asio/read_until.hpp +include/asio/readable_pipe.hpp +include/asio/recycling_allocator.hpp +include/asio/redirect_error.hpp +include/asio/registered_buffer.hpp +include/asio/require.hpp +include/asio/require_concept.hpp +include/asio/serial_port.hpp +include/asio/serial_port_base.hpp +include/asio/signal_set.hpp +include/asio/signal_set_base.hpp +include/asio/socket_base.hpp +include/asio/spawn.hpp +include/asio/ssl.hpp +include/asio/ssl/context.hpp +include/asio/ssl/context_base.hpp +include/asio/ssl/detail/buffered_handshake_op.hpp +include/asio/ssl/detail/engine.hpp +include/asio/ssl/detail/handshake_op.hpp +include/asio/ssl/detail/impl/engine.ipp +include/asio/ssl/detail/impl/openssl_init.ipp +include/asio/ssl/detail/io.hpp +include/asio/ssl/detail/openssl_init.hpp +include/asio/ssl/detail/openssl_types.hpp +include/asio/ssl/detail/password_callback.hpp +include/asio/ssl/detail/read_op.hpp +include/asio/ssl/detail/shutdown_op.hpp +include/asio/ssl/detail/stream_core.hpp +include/asio/ssl/detail/verify_callback.hpp +include/asio/ssl/detail/write_op.hpp +include/asio/ssl/error.hpp +include/asio/ssl/host_name_verification.hpp +include/asio/ssl/impl/context.hpp +include/asio/ssl/impl/context.ipp +include/asio/ssl/impl/error.ipp +include/asio/ssl/impl/host_name_verification.ipp +include/asio/ssl/impl/rfc2818_verification.ipp +include/asio/ssl/impl/src.hpp +include/asio/ssl/rfc2818_verification.hpp +include/asio/ssl/stream.hpp +include/asio/ssl/stream_base.hpp +include/asio/ssl/verify_context.hpp +include/asio/ssl/verify_mode.hpp +include/asio/static_thread_pool.hpp +include/asio/steady_timer.hpp +include/asio/strand.hpp +include/asio/stream_file.hpp +include/asio/streambuf.hpp +include/asio/system_context.hpp +include/asio/system_error.hpp +include/asio/system_executor.hpp +include/asio/system_timer.hpp +include/asio/this_coro.hpp +include/asio/thread.hpp +include/asio/thread_pool.hpp +include/asio/time_traits.hpp +include/asio/traits/equality_comparable.hpp +include/asio/traits/execute_member.hpp +include/asio/traits/prefer_free.hpp +include/asio/traits/prefer_member.hpp +include/asio/traits/query_free.hpp +include/asio/traits/query_member.hpp +include/asio/traits/query_static_constexpr_member.hpp +include/asio/traits/require_concept_free.hpp +include/asio/traits/require_concept_member.hpp +include/asio/traits/require_free.hpp +include/asio/traits/require_member.hpp +include/asio/traits/static_query.hpp +include/asio/traits/static_require.hpp +include/asio/traits/static_require_concept.hpp +include/asio/ts/buffer.hpp +include/asio/ts/executor.hpp +include/asio/ts/internet.hpp +include/asio/ts/io_context.hpp +include/asio/ts/net.hpp +include/asio/ts/netfwd.hpp +include/asio/ts/socket.hpp +include/asio/ts/timer.hpp +include/asio/unyield.hpp +include/asio/use_awaitable.hpp +include/asio/use_future.hpp +include/asio/uses_executor.hpp +include/asio/version.hpp +include/asio/wait_traits.hpp +include/asio/windows/basic_object_handle.hpp +include/asio/windows/basic_overlapped_handle.hpp +include/asio/windows/basic_random_access_handle.hpp +include/asio/windows/basic_stream_handle.hpp +include/asio/windows/object_handle.hpp +include/asio/windows/overlapped_handle.hpp +include/asio/windows/overlapped_ptr.hpp +include/asio/windows/random_access_handle.hpp +include/asio/windows/stream_handle.hpp +include/asio/writable_pipe.hpp +include/asio/write.hpp +include/asio/write_at.hpp +include/asio/yield.hpp +libdata/pkgconfig/asio.pc diff --git a/net/asterisk-g72x/Makefile b/net/asterisk-g72x/Makefile index 2889e6b49106..fd000062c799 100644 --- a/net/asterisk-g72x/Makefile +++ b/net/asterisk-g72x/Makefile @@ -1,6 +1,5 @@ PORTNAME= g72x -PORTVERSION= 1.4.3 -PORTREVISION= 5 +DISTVERSION= 1.4.4 CATEGORIES= net MASTER_SITES= http://asterisk.hosting.lv/src/ DISTNAME= asterisk-${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} @@ -9,22 +8,22 @@ MAINTAINER= ports@FreeBSD.org COMMENT= G.729 codec for Asterisk PBX WWW= http://asterisk.hosting.lv/ +LICENSE= GPLv3+ + LIB_DEPENDS= libbcg729.so:audio/bcg729 -FLAVORS= asterisk18 -FLAVOR?= ${FLAVORS:[1]} +FLAVORS= asterisk18 asterisk20 asterisk22 +FLAVOR?= ${FLAVORS:[3]} -asterisk18_PKGNAMEPREFIX= asterisk18- -asterisk18_CONFLICTS_INSTALL= asterisk13-g72x asterisk16-g72x -asterisk18_BUILD_DEPENDS= asterisk:net/asterisk18 -asterisk18_RUN_DEPENDS= asterisk:net/asterisk18 -.if ${FLAVOR} == asterisk18 -CONFIGURE_ARGS+= --with-asterisk160 -.endif +${FLAVOR}_PKGNAMEPREFIX= ${FLAVOR}- +${FLAVOR}_BUILD_DEPENDS= asterisk:net/${FLAVOR} +${FLAVOR}_RUN_DEPENDS= asterisk:net/${FLAVOR} +USES= autoreconf compiler:c11 libtool tar:bzip2 GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-bcg729 -USES= autoreconf compiler:c11 libtool localbase tar:bzip2 +CONFIGURE_ARGS= --with-asterisk160 --with-bcg729 + +CONFLICTS_INSTALL= ${FLAVORS:N${FLAVOR}:C|(.+)|\1-${PORTNAME}|} PLIST_FILES= lib/asterisk/modules/codec_g729.so @@ -34,7 +33,7 @@ PLIST_FILES= lib/asterisk/modules/codec_g729.so CFLAGS+= -fblocks .endif -post-build: - ${STRIP_CMD} ${WRKSRC}/.libs/codec_g729.so +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/asterisk/modules/codec_g729.so .include <bsd.port.post.mk> diff --git a/net/asterisk-g72x/distinfo b/net/asterisk-g72x/distinfo index fbe6aa7f2e35..f506c1888cba 100644 --- a/net/asterisk-g72x/distinfo +++ b/net/asterisk-g72x/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1539248414 -SHA256 (asterisk-g72x-1.4.3.tar.bz2) = ffea55374c2134415569b876a68d9a12ce376146a22fad3963c8edc281052adf -SIZE (asterisk-g72x-1.4.3.tar.bz2) = 126220 +TIMESTAMP = 1753300000 +SHA256 (asterisk-g72x-1.4.4.tar.bz2) = f44bf2758c68e4c14775f99bca2c8b1719f736f1c5ae5c47e2237f36681a795d +SIZE (asterisk-g72x-1.4.4.tar.bz2) = 126735 diff --git a/net/asterisk18/Makefile b/net/asterisk18/Makefile index 3d0dd0fead83..1650decabaa0 100644 --- a/net/asterisk18/Makefile +++ b/net/asterisk18/Makefile @@ -11,6 +11,9 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY:= ${DISTNAME}${EXTRACT_SUFX} +DEPRECATED= Migrate to newer asterisk, security support ends soon +EXPIRATION_DATE=2025-10-20 + MAINTAINER= cmt@FreeBSD.org COMMENT= Open Source PBX and telephony toolkit WWW= https://www.asterisk.org diff --git a/net/asterisk20/Makefile b/net/asterisk20/Makefile index f70792a6ddbf..3b7ed04ad0eb 100644 --- a/net/asterisk20/Makefile +++ b/net/asterisk20/Makefile @@ -1,6 +1,5 @@ PORTNAME= asterisk -DISTVERSION= 20.14.1 -PORTREVISION= 1 +DISTVERSION= 20.15.0 CATEGORIES= net MASTER_SITES= https://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ diff --git a/net/asterisk20/distinfo b/net/asterisk20/distinfo index 43e51311ded1..aa76fe204fb3 100644 --- a/net/asterisk20/distinfo +++ b/net/asterisk20/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1748000917 -SHA256 (asterisk/asterisk-20.14.1.tar.gz) = fa0f953740eed079d5aaadf88f7f7131a053c61e4bc961faed0f30ba77f52ac9 -SIZE (asterisk/asterisk-20.14.1.tar.gz) = 28439201 +TIMESTAMP = 1753243732 +SHA256 (asterisk/asterisk-20.15.0.tar.gz) = 7c45cf254c7442748fa14ba4e31ae8f09cd2ad958168577de091c0bf0b0a2d2e +SIZE (asterisk/asterisk-20.15.0.tar.gz) = 28487002 SHA256 (asterisk/asterisk-core-sounds-en-g729-1.6.tar.gz) = b49dec15e07bb9bff6af0da3a07180651a38ef54d3ea54a3f20c35f081ed8714 SIZE (asterisk/asterisk-core-sounds-en-g729-1.6.tar.gz) = 1557798 SHA256 (asterisk/asterisk-moh-opsound-g729-2.03.tar.gz) = 0147ca9a97f0c550227aacb7793499057c4d2c64e021c95f93722f27d5549585 diff --git a/net/asterisk20/pkg-plist b/net/asterisk20/pkg-plist index 4aed2207e524..4c6262b6fd5e 100644 --- a/net/asterisk20/pkg-plist +++ b/net/asterisk20/pkg-plist @@ -108,6 +108,7 @@ @sample %%ETCDIR%%/unistim.conf.sample @sample %%ETCDIR%%/users.conf.sample @sample %%ETCDIR%%/voicemail.conf.sample +@sample %%ETCDIR%%/websocket_client.conf.sample @sample %%ETCDIR%%/xmpp.conf.sample include/asterisk.h include/asterisk/_private.h @@ -338,6 +339,7 @@ include/asterisk/utils.h include/asterisk/uuid.h include/asterisk/vector.h include/asterisk/version.h +include/asterisk/websocket_client.h include/asterisk/xml.h include/asterisk/xmldoc.h include/asterisk/xmpp.h diff --git a/net/asterisk22/Makefile b/net/asterisk22/Makefile index 9c89dabec6c3..c92cde2a8ad0 100644 --- a/net/asterisk22/Makefile +++ b/net/asterisk22/Makefile @@ -1,6 +1,5 @@ PORTNAME= asterisk -DISTVERSION= 22.4.1 -PORTREVISION= 1 +DISTVERSION= 22.5.0 CATEGORIES= net MASTER_SITES= https://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ diff --git a/net/asterisk22/distinfo b/net/asterisk22/distinfo index 421733b1e607..faa3a6544860 100644 --- a/net/asterisk22/distinfo +++ b/net/asterisk22/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1747994304 -SHA256 (asterisk/asterisk-22.4.1.tar.gz) = 92a6312edb3db16bbd1126423fb88517dca2408d681d53cf09939cb299b4b894 -SIZE (asterisk/asterisk-22.4.1.tar.gz) = 26324437 +TIMESTAMP = 1753416364 +SHA256 (asterisk/asterisk-22.5.0.tar.gz) = 944967288ec01587feeef42869a97baa37ab635bea7d539df16f70d3af48c613 +SIZE (asterisk/asterisk-22.5.0.tar.gz) = 26371254 SHA256 (asterisk/asterisk-core-sounds-en-g729-1.6.tar.gz) = b49dec15e07bb9bff6af0da3a07180651a38ef54d3ea54a3f20c35f081ed8714 SIZE (asterisk/asterisk-core-sounds-en-g729-1.6.tar.gz) = 1557798 SHA256 (asterisk/asterisk-moh-opsound-g729-2.03.tar.gz) = 0147ca9a97f0c550227aacb7793499057c4d2c64e021c95f93722f27d5549585 diff --git a/net/asterisk22/pkg-plist b/net/asterisk22/pkg-plist index 049a56673432..d2a31101c753 100644 --- a/net/asterisk22/pkg-plist +++ b/net/asterisk22/pkg-plist @@ -101,6 +101,7 @@ @sample %%ETCDIR%%/unistim.conf.sample @sample %%ETCDIR%%/users.conf.sample @sample %%ETCDIR%%/voicemail.conf.sample +@sample %%ETCDIR%%/websocket_client.conf.sample @sample %%ETCDIR%%/xmpp.conf.sample include/asterisk.h include/asterisk/_private.h @@ -329,6 +330,7 @@ include/asterisk/utils.h include/asterisk/uuid.h include/asterisk/vector.h include/asterisk/version.h +include/asterisk/websocket_client.h include/asterisk/xml.h include/asterisk/xmldoc.h include/asterisk/xmpp.h diff --git a/net/binkd/Makefile b/net/binkd/Makefile index 96ea3b3bce7e..87761e4d202b 100644 --- a/net/binkd/Makefile +++ b/net/binkd/Makefile @@ -1,5 +1,6 @@ PORTNAME= binkd DISTVERSION= 1.1a-115 +PORTREVISION= 1 CATEGORIES= net MAINTAINER= dz@dolik.dev @@ -16,26 +17,38 @@ GH_TAGNAME= 3bf55d5 USE_RC_SUBR= binkd GNU_CONFIGURE= yes -MAKE_JOBS_UNSAFE=yes +MAKE_JOBS_UNSAFE= yes USERS= fido GROUPS= fido -OPTIONS_DEFINE= ASO DOCS PROXY BWLIM PERL AFF NTLM +OPTIONS_DEFINE= AFF ASO BWLIM DOCS NTLM PERL PROXY -ASO_DESC= Amiga Style Outbound (ASO) support AFF_DESC= Enable soft IP address family force feature +ASO_DESC= Amiga Style Outbound (ASO) support BWLIM_DESC= Bandwidth limiting support NTLM_DESC= Enable NTLM proxy authorization support +AFF_CONFIGURE_WITH= af-force ASO_CONFIGURE_WITH= aso BWLIM_CONFIGURE_WITH= bwlim -AFF_CONFIGURE_WITH= af-force -PROXY_CONFIGURE_WITH= proxy NTLM_CONFIGURE_WITH= ntlm PERL_CONFIGURE_WITH= perl +PROXY_CONFIGURE_WITH= proxy pre-configure: @${CP} ${WRKSRC}/mkfls/unix/* ${WRKSRC}/ +post-install: + ${INSTALL_DATA} ${FILESDIR}/binkd.conf ${STAGEDIR}${PREFIX}/etc/binkd.conf.sample + ${MV} ${STAGEDIR}${PREFIX}/etc/binkd.conf-dist ${STAGEDIR}${PREFIX}/share/doc/binkd + ${MKDIR} ${STAGEDIR}/var/log + ${TOUCH} ${STAGEDIR}/var/log/binkd.log + ${MKDIR} ${STAGEDIR}/var/run/binkd + ${MKDIR} ${STAGEDIR}/var/spool/binkd + ${MKDIR} ${STAGEDIR}/var/spool/binkd/outbound + ${MKDIR} ${STAGEDIR}/var/spool/binkd/inbound-secure + ${MKDIR} ${STAGEDIR}/var/spool/binkd/inbound-unsecure + ${MKDIR} ${STAGEDIR}/var/spool/binkd/inbound-temp + .include <bsd.port.mk> diff --git a/net/binkd/files/binkd.conf b/net/binkd/files/binkd.conf new file mode 100644 index 000000000000..9b047c0fc980 --- /dev/null +++ b/net/binkd/files/binkd.conf @@ -0,0 +1,546 @@ +# Binkd sample configuration file for unix-like enviroment +# Copyright (C) 1996-1997 by Dima Maloff, 2:5047/13 +# Copyright (C) 2013 by Binkd development team +# $Id$ + +# +# Path and name for the logfile, loglevel +# +log /var/log/binkd.log +loglevel 6 + +# +# Your FTN domains: +# domain <name> <main-outbound> <default-zone> [<root-domain>] +# or +# domain <new-name> alias-for <name> +# The first variant specifies a domain as a default domain for 3D/4D addresses. +# +domain fidonet /var/spool/binkd/outbound/fidonet 2 +# +# Aliases to support known wrong 5D configurations +domain fido alias-for fidonet +domain fidorus alias-for fidonet +domain fido7 alias-for fidonet +# +# Aliases to support known DNS domain zones +# (some people mix up the terms "FTN domain" and "DNS internet domain") +domain fidonet.org alias-for fidonet +domain fidonet.net alias-for fidonet + +# +# Your addresses, 5D or 4D or 3D: +# address <addr1> ... +# If the first address is specified as a 3D/4D address, its domain will be +# taken from the domain defined in the first "domain" line. If more addresses +# are specified as 3D/4D ones, their domain will be taken from the first +# address. +# +address -1:-1/-1@fidonet + +# +# Hide or present the specified AKAs if remote AKAs match the address mask +# hide-aka <my-aka> [!]<mask> +# present-aka <add-aka> [!]<mask> +# Mask is compared to the 5d-form of address string, '*' matches any number +# of any symbols (so you have to write '2:5020/*' but not '5020/*') +# Use '!' to invert the mask +# These rules apply in the same order as in config, you can present any address +# +#hide-aka 2:5020/999.* !2:*@fidonet # hide aka from all but fido zone 2 +#present-aka 2:5047/999.1 2:5047/*.0* # present aka to all nodes in 2:5047 + +# +# The name of your system, its location and your name +# +sysname "Ivan's BBS" +location "Magadan, Russia" +sysop "Ivan Ivanov" + +# +# System capabilities +# +nodeinfo 300,TCP,BINKP + +# +# Uncomment it if you want binkd log at your console +# +conlog 4 + +# +# If a log message matches one of these masks, it won't be written to log +# (masks are in shell/glob style, case-insensitive) +# +#nolog "*socket # [0-9]*" +#nolog "*.[bc]sy" + +# +# Uncomment if you want T-Mail(FrontDoor)-style binary log +# (Will work and have sense on PCs only?) +# +#binlog binkd.sts +#fdinhist in.his +#fdouthist out.his + +# +# TCP settings. Leave this unchanged if not sure. +# +# Suffixes for time intervals are w for weeks, d for days, +# h for hours, m for minutes, s or no suffix for seconds. +# You can mix the suffixes, i.e. 1d12h is the same as 36h. +# +#iport binkp +#oport binkp +#oblksize 4096 +#timeout 5m +#connect-timeout 5m +#bindaddr 192.168.0.3 +#listen * + +# +# Zlib compression parameters (if built with zlib support) +# zlevel - compression level (zlib only, bzlib2 uses 100kb always), +# set to 0 to use default value of 6 +# zminsize <size> - files smaller than <size> won't be compressed anyway +# Rules: +# zallow <mask1>[ <mask2>... <maskN>] - allow compression for the masks +# zdeny <mask1>[ <mask2>... <maskN>] - deny compression for the masks +# If remote accepts compressed blocks (OPT GZ), its name will be checked +# against these rules before sending each file. If the name matches a zallow +# rule, the file will be sent with compression. If the name matches a zdeny rule, +# it will be sent as-is. The rule matched first is applied. If a file doesn't +# match any rule, zdeny will be assumed. +# +#zminsize 1024 +# +#zallow *.pkt +#zdeny *.su? *.mo? *.tu? *.we? *.th? *.fr? *.sa? +#zdeny *.zip *.rar *.arj *.ha *.gz *.tgz *.bz2 *.z[0-9][0-9] *.r[0-9][0-9] +#zallow * + +# +# HTTPS or SOCKS settings. +# +# proxy 192.0.2.3:3128 # <- regular http/https proxy (i.e. squid) +# proxy 192.0.2.3:3128/user/password # <- proxy required username/password +# # (as in browser) +# +# proxy 192.168.0.3:3128/user/password/your_host/your_domain +# ^- proxy required NTLM authorization with username/password +# your_host -- Windows host name without domain (i.e. MY_HOST) +# your_domain -- Windows domain name (not FQDN, i.e. DEFAULT_DOMAIN) +# +# socks 192.0.2.3:1080 # <- socks4 proxy +# socks 192.0.2.3:1080/ # <- socks5 proxy without authorization +# socks 192.0.2.3:1080/user/password # <- socks5 proxy with username/password +# # (RFC-1929) + +# +# Delay of calls and outbound rescans in seconds +# +#call-delay 1m +#rescan-delay 1m + +# +# Max. number of inbound/outbound connections +# +#maxservers 2 +#maxclients 2 + +# +# Binkd will try to call a node N times. If failed, it will +# hold the node for S seconds. The feature is off by default. +# +try 10 +hold 10m + +# +# Binkd will remove .try files after successful session. +# The feature is off by default. +# +#remove-try-files + +# +# hold-skipped <S> +# Binkd will hold for S seconds all mail skipped by a node. (Def. -- 1h) +# +#hold-skipped 1h + +# +# Don't send (only receive) files if no password for an inbound session +# +send-if-pwd + +# Tzoff corrects UTC time returned by time() under DOS-derived OS +# Using system TZ variable or tzselect(8) is preferred. +#tzoff 3h + +# +# Use syslog (Only if made with -DHAVE_VSYSLOG and -DHAVE_FACILITYNAMES) +# +#syslog local0 + +# +# Print percents while sending or receiving +# +percents + +# +# List queue after rescans +# +printq + +# +# Perform reverse resolving (for logging only) +# +backresolv + +# +# Log pid: +# +pid-file /var/run/binkd/binkd.pid + +# +# Map paths in flo's: +# ftrans <old-string> <new-string> +# Use as many ftrans's as you want. +# +#ftrans "D:\\fido\\outbound" ~/ftn/outbound +#ftrans "\\" "/" # this replaces all slashes in a path + +# +# Inbound directories for secure and non-secure links +# +inbound /var/spool/binkd/inbound-secure +inbound-nonsecure /var/spool/binkd/inbound-unsecure + +# +# Directory for incomplete receiving files (.hr and .dt), +# default to inbound for the node +# +temp-inbound /var/spool/binkd/inbound-temp + +# +# Binkd will skip all files from a node if +# size_of_the_next_file_for_us_there + minfree < free_space_in_inbound +# The zero value and the value 4294967295 (2**32-1) are equivalent to infinity. +# +minfree 2048 +minfree-nonsecure 2048 + +# +# When trying to receive a new file: remove partial files with this +# name but different size or time from inbound. (If commented out, binkd +# will left old parts as .dt and .hr in the inbound directory). +# +kill-dup-partial-files + +# +# Remove all old partial files from inbound. (OFF if commented out) +# kill-old-partial-files <max-age-in-seconds> +# +kill-old-partial-files 1d + +# +# Remove old .bsy/.csy files (If some are left after a system crash). It would +# be wise to set this to 12h on almost any system. (Note that binkd always +# touches .bsy's/.csy's for active sessions) +# +# kill-old-bsy is OFF by default. +# +kill-old-bsy 12h + +# +# Create a flag file after receiving a file +# +#flag toss!.now *.pkt +#flag toss!.now *.su? *.mo? *.tu? *.we? *.th? *.fr? *.sa? + +# +# Run an external program. +# The "*S" macro in command line substed with S.R.I.F., see !SRIF.TXT +# The "!" before program pathname means immediate program execution +# after receiving the file. +# *** win32 only: +# The "@" before program pathname means execute program in separate console +# The "@@" before program pathname means execute program in hidden console +# *** +# Macros: *F - complete name of received file, +# *A0..*A9 - first 10 AKA of remote system, +# *A*, *A@ - list of all remote AKA separated by spaces +# *P - password protected [0|1], +# *L - listed system [0|1] +# *H - remote hostname or IP, +# *N - short file name (win32 only). +# +#exec "!my-freq-processor /options *S" *.req +#exec "!~/ftn/binkd/srifreq *S" *.req +#exec "my-pkt-unpacker /options *P *A* *F" *.[pP][kK][tT] +#exec "my-tosser /options" /opt/ftn/inbound-secure/*.[STFWMstfwm][ouaherOUAHER][0-9A-Za-z] +#exec "nice -n 19 /usr/bin/hpt toss link" ~/ftn/inbound-secure/*.[STFWMstfwm][ouaherOUAHER][0-9A-Za-z] *.[pP][kK][tT] + +# +# Include a file +# +#include /opt/ftn/binkd.inc + +# +# Overrides root domain for DNS lookups, see 'node' below. +# +#root-domain binkp.net + +# +# Perl hooks file (if built with Perl) +# +#perl-hooks ~/ftn/binkd/nodelist.pl + +# +# Perl DLL file (only matters if compiled with PERLDL=1 for Win32) +# +#perl-dll perl56.dll + +# +# binkd will refuse to start if perl-hooks script has compilation errors. +# Note, that run-time errors still can occur. +# +#perl-strict + +# +# This variables can be used in perl hooks as $cfg{"name"} +# Syntax: perl-var <name> <value> +# +#perl-var nodelist ~/ftn/nodelist/nodelist.[0-9][0-9][0-9] +#perl-var magichost * + +# +# Scan T-Mail boxes (short and long) in CIFS-mounted directory +# +#filebox /mnt/fido/t-mail/boxes + +# +# Scan theBrake! long boxes +# +#brakebox ~/ftn/longbox + +# +# Should binkd delete empty boxes? +# Uncomment the following line if yes +# +#deletebox + +# +# Scan node outbound while connecting and send mail size to remote +# +prescan + +# t-mail or ifcico (qico) password file. +# Format of the password file: +# [password] <FTN address> <inpwd>[,[<pktpwd>][,<outpwd>]] +# where: +# [password] optional "password" token; +# <FTN address> address of a link in the form 1:2/3.4@domain +# or 1:2/3@domain or 1:2/3 or 1:2/3.4; +# <inpwd> password for incoming sessions; +# <pktpwd> packet password, used when "share" token +# is handled; +# <outpwd> password for outgoing sessions. +# Any password is one word without spaces or tabs. If <pktpwd> or <outpwd> +# is omitted, it will be assumed equal to <inpwd>. If a password is defined for +# a node by the "node" token, then the passwords for the node in the password +# file will be ignored. +# +#passwords ~/ftn/binkd/passwords + +# +# Skip files: +# skip [all|listed|unlisted|secure|unsecure] [!]<sizeKb>|- <mask>... +# +# 'all' applies to all sessions (default) +# 'listed' applies to sessions with the nodes defined by 'node' keyword +# 'secure' applies to password-protected sessions +# +# Use '!' before size for destructive skip, default is non-destructive one. +# If <size> > 0, then only files larger than <size> in kilobytes will be skipped; +# zero <size> applies to all files; +# if the <size> is set to '-', then the rule will allow +# any file matching the <mask>. +# +# <mask> is a shell-style mask, case-insensitive (except for symbols in []), +# multiple masks for a rule are permitted. +# +# Policy for rule processing is first-match +# +#skip all 0 *.mp3 *.avi +#skip unsecure 256 *.pkt +#skip unsecure !0 * + +# +# Overwrite the existing file by the new received, +# do not save with the changed extension +# +#overwrite net_*.* + +# +# Inbound filename case: +# inboundcase [save(default)|upper|lower|mixed] +# +# 'save' don't change filename case (default) +# 'upper' uppercase filename (FILE-NAME.EXT) +# 'lower' lowercase filename (file-name.ext) +# 'mixed' make filename pretty (File-Name.Ext) +# +# * tested only with english filenames +# +#inboundcase save + +# +# Rename style if file with the same name already exists in inbound +# rename-style [postix|extension] +# +# 'postfix' append number at the end of filename, after dot (default) +# example: file.ext -> file.ext.1 +# 'extension' change filename extension +# example: file.ext -> file.ex0 +# +# Not applied to *.pkt, arcmail, *.tic, *.req - only filename is changed +# for these file types. +# +#rename-style postfix + +# +# Should binkd send empty files? +# dont-send-empty [no(default)|arcmail|yes] +# +# 'no' inhibit only sending *.?ut (netmail) with size <=60 bytes +# 'arcmail' do not send zero-size arcmail and pkt <= 60 bytes +# 'yes' do not send all zero-size files and pkt <= 60 bytes +# +#dont-send-empty no + +# +# Should binkd delete empty point dirs in BSO? +# Uncomment the following line if yes +# +#deletedirs + +# +# Use Amiga Style Outbound (ASO) +# +#aso + +# +# Limit bandwidth (rate): +# limit-rate [all|listed|unlisted|secure|unsecure] <rate>[kM%]|- <mask>... +# +# <rate> is a max allowed rate in bytes-per-second (k=kbytes, M=Mbytes). +# If '%' is specified, the node -bw rate will be multiplied by this value +# in percents, if '-' is specified, then rate will be unlimited. +# <mask> is a filename mask to apply this rule to. +# +# limit-rate rules are checked in the order they appear in config, first +# matching rule is applied. +# +# IMPORTANT! If a node has no explicitly defined bandwidth limit, the +# defnode's limit will be used. If defnode has no limit, rate will be unlimited. +# +#limit-rate unsecure - *.pkt +#limit-rate unsecure 2k * + +# Define shared aka +# Add a shared-address as aka for any node from this list, so that +# uncompessed netmail for shared aka will be sent in the first session with +# any node listed in shares; packet header will be updated to match this +# node's main aka and pkt password +# share <shared-address> <node1> [<node2> ...] +# example: +#share 2:999/999 2:5020/52 2:5020/238 + +# +# Check the sender's address in incoming pkt's, change the file extension +# to <ext> if the check failed. +# check-pkthdr [all|secure|unsecure|listed|unlisted] <ext> +# +# 'all' applies to all nodes; +# 'listed' will be applied if at least one aka is defined by 'node' keyword; +# 'secure' will be applied if at least one aka is password-protected. +# +# It's ok to specify .<ext> as well as <ext> - the dot before ext is ignored. +# The policy set by check-pkthdr may be overridden by -hc or -nohc flags +# in a 'node' definition (see below). +# Flag order: -nohc (for any aka), -hc (for any aka), check-pkthdr flag +# +#check-pkthdr secure .sec + +# +# Define a link: +# node [[z:]n/]n[.p][@domain] [-nr|-nd] [-md] [-hc|-nohc] [-ip|-sip] [-bw <send_rate>[/<recv_rate>]] [-pipe <cmd>] [-4|-6] [{hosts|-} [{<inpwd>[,[<pktpwd>][,<outpwd>]]|-} [flavour [{obox|-} [{ibox|-}]]]]] +# +# * All non-"-" fields will redefine the values specified for the same node +# earlier in config. +# * The meaning of <inpwd>, <pktpwd> and <outpwd> is the same as in +# the description of the "passwords" token. Any password is one word +# without spaces or tabs. If <pktpwd> or <outpwd> is omitted, it will be +# assumed equal to <inpwd>. +# * Flavour is one of i, c, d, -, h and is the flavour for the outbound +# filebox ("obox"). +# * Binkd sends from obox all non-dir entries NOT matching ".*" wildcard. +# EVERY TIME YOU PUT A FILE INTO OBOX, CHECK IF BINKD IS ABLE TO +# UNLINK IT. Otherwise, the session will never end. +# * Default for ibox is inbound or inbound-nosecure depending on the pwd field. +# * Default for port is oport. +# * '-nr' stands for 'Not Reliable Link', this works only on outbound calls +# with another binkp/1.1 mailer. The option solves the only problem with +# binkd having not enough time to start receiving a file from +# non-zero offset before IP link's down, so don't use it unless you +# have this problem -- really not effective +# * '-nd' means "No Dupe Mode", this works only on outbound calls with +# another binkd 0.9.3 or higher. The option solves the problem with +# duplicating files when connection is lost but link is a bit slower +# than it is with "-nr" option. +# * '-md' means "Must have CRAM-MD5". This works only with the nodes using +# versions of binkd or argus supporting this method. Do not set it if +# your link can use an old version of binkd. +# * '-nomd' - do not use CRAM-MD5 for this node (send plain text password) +# * '-hc' enables check of sender address in pkt header for this node/aka +# (overrides the setting of the 'check-pkthdr' statement) +# * '-nohc' disables check of sender address in pkt header for this node/aka +# (overrides the setting of the 'check-pkthdr' statement) +# * '-ip' means "Remote IP check". In this case the node will be +# rejected if it comes not from one of its IP-addresses. +# Remote AKAs with bad IP-address will be dropped on outgoing calls. +# * '-sip' means "Strict remote IP check". Like "-ip", but node will be +# rejected if no IP-addresses are allowed ("-" or not resolved). +# Remote AKAs with bad IP-address will be dropped on outgoing calls. +# * '-bw' specifies bandwidth (rate) limit for this node. +# If one value is specified, it will be used as both send and recv limit. +# If two values are specified, the first one will be for send and the +# second one for recv. +# The rate values are expected to be in the format '<rate>[kM%]|-' +# (see limit-rate keyword for detailed description). +# * '-noproxy' disables usage of proxy/socks server when calling this node +# (the node is expected to be inside local network). +# * '-pipe' means "run an external command for building a tunnel to the node". +# '*H' macro is substituted by host and '*I' by port number. +# * '-4' only connect via IPv4 +# * '-6' only connect via IPv6 +# * '-64' binkd will first try to connect over IPv6, and in case of failure, +# it will try again over IPv4. Attention! To use the option, you need +# to compile binkd with the "--with-af-force" option. +# * '-46' binkd will first try to connect over IPv4, and in case of failure, +# it will try again over IPv6. Attention! To use the option, you need +# to compile binkd with the "--with-af-force" option. +# * Hosts is a list in form +# host1[:port1][;host2[:port2]] ... +# * Asterisk ('*') in the host list forces Binkd to perform +# 1:2/3.4 --> p4.f3.n2.z1.binkp.net translation for a node's +# Fido-address and IP lookup for the resulting FQDN in DNS. +# Root domain part ("binkp.net") can be changed with root-domain +# keyword. +# +#node 5047/888 - password +#node 5047/999 -md hostname;* password i ~/ftn/personalboxes/to999 ~/ftn/personalboxes/from999 + +# +# Default node flags. Binkd will call an unlisted node if "defnode" is defined. +# +defnode -nd * diff --git a/net/binkd/files/binkd.in b/net/binkd/files/binkd.in index 41e7f06a61ed..1b5395069b47 100644 --- a/net/binkd/files/binkd.in +++ b/net/binkd/files/binkd.in @@ -12,7 +12,7 @@ # DO NOT CHANGE THESE DEFAULT VALUES HERE # binkd_enable=${binkd_enable:-"NO"} -binkd_config=${binkd_config:-"%%PREFIX%%/etc/binkd.cfg"} +binkd_config=${binkd_config:-"%%PREFIX%%/etc/binkd.conf"} binkd_flags=${binkd_flags:-"-D"} binkd_user=${binkd_user:-"fido"} binkd_pidfile=${binkd_pidfile:-"/var/run/binkd/binkd.pid"} diff --git a/net/binkd/pkg-plist b/net/binkd/pkg-plist index 496d34e09448..590267e83537 100644 --- a/net/binkd/pkg-plist +++ b/net/binkd/pkg-plist @@ -1,6 +1,14 @@ -@sample etc/binkd.conf-dist etc/binkd.conf +@sample etc/binkd.conf.sample sbin/binkd sbin/binkd-1.1a-115 share/man/man8/binkd.8.gz %%PORTDOCS%%%%DOCSDIR%%/binkdfaq-en.txt %%PORTDOCS%%%%DOCSDIR%%/binkdfaq-ru.txt +%%PORTDOCS%%%%DOCSDIR%%/binkd.conf-dist +@(fido,fido,644) /var/log/binkd.log +@dir(fido,fido,755) /var/run/binkd +@dir(fido,fido,755) /var/spool/binkd +@dir(fido,fido,755) /var/spool/binkd/outbound +@dir(fido,fido,755) /var/spool/binkd/inbound-secure +@dir(fido,fido,755) /var/spool/binkd/inbound-unsecure +@dir(fido,fido,755) /var/spool/binkd/inbound-temp diff --git a/net/boinc-client/Makefile b/net/boinc-client/Makefile index f3a34674691b..91351cad23b3 100644 --- a/net/boinc-client/Makefile +++ b/net/boinc-client/Makefile @@ -4,7 +4,7 @@ DISTVERSION= 8.0.2 PORTREVISION= 2 CATEGORIES= net -MAINTAINER= alster@vinterdalen.se +MAINTAINER= alven@FreeBSD.org COMMENT= Berkeley Open Infrastructure for Network Computing client WWW= https://boinc.berkeley.edu/ \ https://github.com/BOINC/boinc/ diff --git a/net/boinctui/Makefile b/net/boinctui/Makefile index e70eb6701dc1..81f4266d5ddf 100644 --- a/net/boinctui/Makefile +++ b/net/boinctui/Makefile @@ -4,7 +4,7 @@ CATEGORIES= net MASTER_SITES= SF/${PORTNAME} DISTNAME= ${PORTNAME}_${DISTVERSION} -MAINTAINER= alster@vinterdalen.se +MAINTAINER= alven@FreeBSD.org COMMENT= Fullscreen text-mode manager for BOINC client WWW= https://sourceforge.net/projects/boinctui/ diff --git a/net/dataplaneapi/Makefile b/net/dataplaneapi/Makefile index 4048e1e15ec4..7d869fd5b6d5 100644 --- a/net/dataplaneapi/Makefile +++ b/net/dataplaneapi/Makefile @@ -1,7 +1,7 @@ PORTNAME= dataplaneapi DISTVERSIONPREFIX= v DISTVERSION= 3.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MAINTAINER= dtxdf@FreeBSD.org diff --git a/net/dataplaneapi/files/dataplaneapi.in b/net/dataplaneapi/files/dataplaneapi.in index fb5f74c483c5..4dd4c98df3f1 100644 --- a/net/dataplaneapi/files/dataplaneapi.in +++ b/net/dataplaneapi/files/dataplaneapi.in @@ -19,6 +19,7 @@ load_rc_config $name : ${dataplaneapi_enable:="NO"} +dataplaneapi_env="AUTOMEMLIMIT_EXPERIMENT=system" pidfile="/var/run/${name}.pid" procname="%%LOCALBASE%%/bin/${name}" command="/usr/sbin/daemon" diff --git a/net/ecal/Makefile b/net/ecal/Makefile index e180313b3947..d5f279a59def 100644 --- a/net/ecal/Makefile +++ b/net/ecal/Makefile @@ -1,7 +1,7 @@ PORTNAME= ecal DISTVERSIONPREFIX= v DISTVERSION= 5.13.3 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= net devel MAINTAINER= yuri@FreeBSD.org diff --git a/net/eternalterminal/Makefile b/net/eternalterminal/Makefile index cc8bb4d2e1f5..66a40e4d888e 100644 --- a/net/eternalterminal/Makefile +++ b/net/eternalterminal/Makefile @@ -1,7 +1,6 @@ PORTNAME= eternalterminal DISTVERSIONPREFIX= et-v -DISTVERSION= 6.2.9 -PORTREVISION= 8 +DISTVERSION= 6.2.11 CATEGORIES= net MAINTAINER= eduardo@FreeBSD.org diff --git a/net/eternalterminal/distinfo b/net/eternalterminal/distinfo index 4cbf6c2fe83e..00cae1d9d5c3 100644 --- a/net/eternalterminal/distinfo +++ b/net/eternalterminal/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1714591736 -SHA256 (MisterTea-EternalTerminal-et-v6.2.9_GH0.tar.gz) = 13bfb2722b011b5f0a28fa619508deca96deec9eee5e42b922add0c166d8185a -SIZE (MisterTea-EternalTerminal-et-v6.2.9_GH0.tar.gz) = 25948460 +TIMESTAMP = 1753277599 +SHA256 (MisterTea-EternalTerminal-et-v6.2.11_GH0.tar.gz) = e8e80800babc026be610d50d402a8ecbdfbd39e130d1cfeb51fb102c1ad63b0f +SIZE (MisterTea-EternalTerminal-et-v6.2.11_GH0.tar.gz) = 28959778 diff --git a/net/fb303/Makefile b/net/fb303/Makefile index c3f035832cd3..3a041c8f8fe6 100644 --- a/net/fb303/Makefile +++ b/net/fb303/Makefile @@ -1,6 +1,6 @@ PORTNAME= fb303 DISTVERSIONPREFIX= v -DISTVERSION= 2025.07.07.00 +DISTVERSION= 2025.07.28.00 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/fb303/distinfo b/net/fb303/distinfo index b0e2cc1e9595..304335562528 100644 --- a/net/fb303/distinfo +++ b/net/fb303/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1752053905 -SHA256 (facebook-fb303-v2025.07.07.00_GH0.tar.gz) = 473b232cac6dac0d78768a72b7fd7970f25840135c2045418dbe582f29d1eda5 -SIZE (facebook-fb303-v2025.07.07.00_GH0.tar.gz) = 264344 +TIMESTAMP = 1753765042 +SHA256 (facebook-fb303-v2025.07.28.00_GH0.tar.gz) = 7c12d68c1921ccfcab43ed9ae5dc465df92d115a28017c211097731f2618b057 +SIZE (facebook-fb303-v2025.07.28.00_GH0.tar.gz) = 265572 diff --git a/net/fb303/pkg-plist b/net/fb303/pkg-plist index c87b087b757a..ae936078dad7 100644 --- a/net/fb303/pkg-plist +++ b/net/fb303/pkg-plist @@ -34,7 +34,6 @@ include/fb303/detail/QuantileStatMap.h include/fb303/detail/QuantileStatWrappers-inl.h include/fb303/detail/QuantileStatWrappers.h include/fb303/detail/RegexUtil.h -@dir include/fb303/thrift/clients include/fb303/thrift/gen-cpp2/BaseService.h include/fb303/thrift/gen-cpp2/BaseService.tcc include/fb303/thrift/gen-cpp2/BaseServiceAsyncClient.h @@ -44,8 +43,12 @@ include/fb303/thrift/gen-cpp2/fb303_core_metadata.h include/fb303/thrift/gen-cpp2/fb303_core_types.h include/fb303/thrift/gen-cpp2/fb303_core_types.tcc include/fb303/thrift/gen-cpp2/fb303_core_types_custom_protocol.h -@dir include/fb303/thrift/mocks -@dir include/fb303/thrift/services +@dir include/fb303/thrift/rust/clients +@dir include/fb303/thrift/rust/gen_safe_patch/clients +@dir include/fb303/thrift/rust/gen_safe_patch/mocks +@dir include/fb303/thrift/rust/gen_safe_patch/services +@dir include/fb303/thrift/rust/mocks +@dir include/fb303/thrift/rust/services include/thrift-files/fb303/thrift/fb303_core.thrift lib/cmake/fb303/fb303-config.cmake lib/cmake/fb303/fb303-targets-%%CMAKE_BUILD_TYPE%%.cmake diff --git a/net/freerdp/Makefile b/net/freerdp/Makefile index c5c72868fb74..8dbf4fdca3de 100644 --- a/net/freerdp/Makefile +++ b/net/freerdp/Makefile @@ -1,6 +1,6 @@ PORTNAME= freerdp DISTVERSION= 2.11.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net comms MASTER_SITES= https://pub.freerdp.com/releases/ \ https://github.com/FreeRDP/FreeRDP/releases/download/${DISTVERSION}/ diff --git a/net/freerdp3/Makefile b/net/freerdp3/Makefile index 7564c95ef968..cf1dd9e422df 100644 --- a/net/freerdp3/Makefile +++ b/net/freerdp3/Makefile @@ -1,5 +1,6 @@ PORTNAME= freerdp DISTVERSION= 3.16.0 +PORTREVISION= 1 CATEGORIES= net comms MASTER_SITES+= https://pub.freerdp.com/releases/:freerdp \ https://github.com/FreeRDP/FreeRDP/releases/download/${DISTVERSION}/:freerdp diff --git a/net/frr10/Makefile b/net/frr10/Makefile index 913f3b5eafe1..2124dd3a4305 100644 --- a/net/frr10/Makefile +++ b/net/frr10/Makefile @@ -1,7 +1,6 @@ PORTNAME= frr DISTVERSIONPREFIX= frr- -DISTVERSION= 10.3.1 -PORTREVISION= 1 +DISTVERSION= 10.4.0 CATEGORIES= net .if defined(PYTHONTOOLS) PKGNAMESUFFIX= 10-pythontools diff --git a/net/frr10/distinfo b/net/frr10/distinfo index 861cba85c571..433a165f2f5b 100644 --- a/net/frr10/distinfo +++ b/net/frr10/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748886868 -SHA256 (FRRouting-frr-frr-10.3.1_GH0.tar.gz) = df4bc4f644f93be09f75c0e0e325b2f6a3ee6d1c6db429b6f36874e88a66ee33 -SIZE (FRRouting-frr-frr-10.3.1_GH0.tar.gz) = 11379856 +TIMESTAMP = 1753644991 +SHA256 (FRRouting-frr-frr-10.4.0_GH0.tar.gz) = a9fd19a629361a758621a0ffc02c7ae07fdfdbfe5cba7d0b6c58cad0a980c6f5 +SIZE (FRRouting-frr-frr-10.4.0_GH0.tar.gz) = 11550413 diff --git a/net/frr10/pkg-plist b/net/frr10/pkg-plist index a84c89c6dd63..ffad316f2bf7 100644 --- a/net/frr10/pkg-plist +++ b/net/frr10/pkg-plist @@ -41,6 +41,7 @@ include/frr/frrstr.h include/frr/graph.h include/frr/hash.h include/frr/hook.h +include/frr/host_nb.h include/frr/iana_afi.h include/frr/id_alloc.h include/frr/if.h @@ -64,13 +65,11 @@ include/frr/log.h include/frr/log_vty.h include/frr/md5.h include/frr/memory.h -include/frr/mgmt.pb-c.h include/frr/mgmt_be_client.h include/frr/mgmt_defines.h include/frr/mgmt_fe_client.h include/frr/mgmt_msg.h include/frr/mgmt_msg_native.h -include/frr/mgmt_pb.h include/frr/mlag.h include/frr/module.h include/frr/monotime.h @@ -176,6 +175,10 @@ lib/libmgmt_be_nb.a lib/libmgmt_be_nb.so lib/libmgmt_be_nb.so.0 lib/libmgmt_be_nb.so.0.0.0 +lib/libmlag_pb.a +lib/libmlag_pb.so +lib/libmlag_pb.so.0 +lib/libmlag_pb.so.0.0.0 %%SNMP%%lib/frr/modules/bgpd_bmp.so %%RPKI%%lib/frr/modules/bgpd_rpki.so %%SNMP%%lib/frr/modules/bgpd_snmp.so @@ -237,6 +240,7 @@ share/yang/frr-deviations-bgp-datacenter.yang share/yang/frr-deviations-ietf-key-chain.yang share/yang/frr-eigrpd.yang share/yang/frr-filter.yang +share/yang/frr-host.yang share/yang/frr-if-rmap.yang share/yang/frr-interface.yang share/yang/frr-isisd.yang @@ -262,4 +266,5 @@ share/yang/ietf-netconf-acm.yang share/yang/ietf-netconf-with-defaults.yang share/yang/ietf-netconf.yang share/yang/ietf-routing-types.yang +share/yang/ietf-srv6-types.yang @dir(frr,frr,755) /var/run/frr diff --git a/net/frr8/files/patch-configure.ac b/net/frr8/files/patch-configure.ac new file mode 100644 index 000000000000..a8a56bdb4ed3 --- /dev/null +++ b/net/frr8/files/patch-configure.ac @@ -0,0 +1,11 @@ +--- configure.ac.orig 2024-12-27 21:06:42 UTC ++++ configure.ac +@@ -1921,7 +1921,7 @@ if test "$enable_snmp" != "" -a "$enable_snmp" != "no" + # net-snmp lists all of its own dependencies. we absolutely do not want that + # among other things we avoid a GPL vs. OpenSSL license conflict here + for removelib in crypto ssl sensors pci wrap; do +- SNMP_LIBS="`echo $SNMP_LIBS | sed -e 's/\(^\|\s\)-l'$removelib'\b/ /g' -e 's/\(^\|\s\)\([^\s]*\/\)\?lib'$removelib'\.[^\s]\+\b/ /g'`" ++ SNMP_LIBS="`echo $SNMP_LIBS | sed -e 's/-l'$removelib'/ /g'`" + done + AC_MSG_CHECKING([whether we can link to Net-SNMP]) + AC_LINK_IFELSE_FLAGS([$SNMP_CFLAGS], [$SNMP_LIBS], [AC_LANG_PROGRAM([ diff --git a/net/frr9/files/patch-configure.ac b/net/frr9/files/patch-configure.ac new file mode 100644 index 000000000000..a8a56bdb4ed3 --- /dev/null +++ b/net/frr9/files/patch-configure.ac @@ -0,0 +1,11 @@ +--- configure.ac.orig 2024-12-27 21:06:42 UTC ++++ configure.ac +@@ -1921,7 +1921,7 @@ if test "$enable_snmp" != "" -a "$enable_snmp" != "no" + # net-snmp lists all of its own dependencies. we absolutely do not want that + # among other things we avoid a GPL vs. OpenSSL license conflict here + for removelib in crypto ssl sensors pci wrap; do +- SNMP_LIBS="`echo $SNMP_LIBS | sed -e 's/\(^\|\s\)-l'$removelib'\b/ /g' -e 's/\(^\|\s\)\([^\s]*\/\)\?lib'$removelib'\.[^\s]\+\b/ /g'`" ++ SNMP_LIBS="`echo $SNMP_LIBS | sed -e 's/-l'$removelib'/ /g'`" + done + AC_MSG_CHECKING([whether we can link to Net-SNMP]) + AC_LINK_IFELSE_FLAGS([$SNMP_CFLAGS], [$SNMP_LIBS], [AC_LANG_PROGRAM([ diff --git a/net/gitlab-agent/Makefile b/net/gitlab-agent/Makefile index 8aae2990842e..9013daf97fef 100644 --- a/net/gitlab-agent/Makefile +++ b/net/gitlab-agent/Makefile @@ -1,7 +1,7 @@ PORTNAME= gitlab-agent PORTVERSION= ${GITLAB_VERSION} -PORTREVISION= ${GITLAB_PORTREVISION} # modify it in www/gitlab/Makefile.common DISTVERSIONPREFIX= v +PORTREVISION= ${GITLAB_PORTREVISION} # modify it in www/gitlab/Makefile.common CATEGORIES= net MAINTAINER= mfechner@FreeBSD.org @@ -14,7 +14,7 @@ LICENSE= MIT BUILD_DEPENDS= git>=0:devel/git \ golangci-lint>=0:devel/golangci-lint -USES= go:modules,1.23 +USES= go:modules,1.24 GO_MODULE= gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v18 _BUILD_DATE= $$(date -u "+%Y-%m-%d-%H%M UTC") diff --git a/net/gitlab-agent/distinfo b/net/gitlab-agent/distinfo index 8edb80da5733..b57e09ee5cb9 100644 --- a/net/gitlab-agent/distinfo +++ b/net/gitlab-agent/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1752120725 -SHA256 (go/net_gitlab-agent/gitlab-agent-v18.1.2/v18.1.2.mod) = 2739a9f4b5204729b51ad90bd66634bab4c4a4f2db5a8f3ec80c7eda733484db -SIZE (go/net_gitlab-agent/gitlab-agent-v18.1.2/v18.1.2.mod) = 9688 -SHA256 (go/net_gitlab-agent/gitlab-agent-v18.1.2/v18.1.2.zip) = a96cd3e050611991f370b95c284ecb3e8b8d5f0a460988abde5b7ef8c25b8c51 -SIZE (go/net_gitlab-agent/gitlab-agent-v18.1.2/v18.1.2.zip) = 1672549 +TIMESTAMP = 1753327147 +SHA256 (go/net_gitlab-agent/gitlab-agent-v18.2.1/v18.2.1.mod) = 4772214d0f7667ed5a2f465d728888c258c09e89afb5e4b0e6e5a087b77057fd +SIZE (go/net_gitlab-agent/gitlab-agent-v18.2.1/v18.2.1.mod) = 9809 +SHA256 (go/net_gitlab-agent/gitlab-agent-v18.2.1/v18.2.1.zip) = 7ab07ce329dd3e34591233ee00192068064752f61b577f2bfed86c285576cc0f +SIZE (go/net_gitlab-agent/gitlab-agent-v18.2.1/v18.2.1.zip) = 1708969 diff --git a/net/google-cloud-sdk/Makefile b/net/google-cloud-sdk/Makefile index 5bc90613502a..6d417b1ec192 100644 --- a/net/google-cloud-sdk/Makefile +++ b/net/google-cloud-sdk/Makefile @@ -1,5 +1,5 @@ PORTNAME= google-cloud-sdk -DISTVERSION= 529.0.0 +DISTVERSION= 531.0.0 CATEGORIES= net MASTER_SITES= https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/ DISTNAME= google-cloud-sdk-${PORTVERSION}-linux-x86_64 diff --git a/net/google-cloud-sdk/distinfo b/net/google-cloud-sdk/distinfo index 996cdae18a14..ca8412179583 100644 --- a/net/google-cloud-sdk/distinfo +++ b/net/google-cloud-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751534406 -SHA256 (google-cloud-sdk-529.0.0-linux-x86_64.tar.gz) = b9038c39e5833e659c25b6634198f20e2780535ef69ec1ffff14a6fcf380b16b -SIZE (google-cloud-sdk-529.0.0-linux-x86_64.tar.gz) = 149671543 +TIMESTAMP = 1753284941 +SHA256 (google-cloud-sdk-531.0.0-linux-x86_64.tar.gz) = e6bd499f9977e0ddbd8efb53a0636641c8d304a1f0e97d158a8d42f0914b0b2e +SIZE (google-cloud-sdk-531.0.0-linux-x86_64.tar.gz) = 149800869 diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index a35094a5278b..939274a8f2e5 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -1,5 +1,5 @@ PORTNAME= haproxy -DISTVERSION= 3.2.2 +DISTVERSION= 3.2.3 CATEGORIES= net www MASTER_SITES= http://www.haproxy.org/download/3.2/src/ diff --git a/net/haproxy/distinfo b/net/haproxy/distinfo index e24a2a474883..d96b51b389cf 100644 --- a/net/haproxy/distinfo +++ b/net/haproxy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751573051 -SHA256 (haproxy-3.2.2.tar.gz) = be64ed565c320e670bb909c5834f90303c3ec0c97af5befa45994961aaa6c6ec -SIZE (haproxy-3.2.2.tar.gz) = 5090977 +TIMESTAMP = 1752578728 +SHA256 (haproxy-3.2.3.tar.gz) = af8ef64286bdddc93232c5dbe4ea436a8ccb5dc8417cfa1e885bec52884f9347 +SIZE (haproxy-3.2.3.tar.gz) = 5089103 diff --git a/net/kf6-kcalendarcore/distinfo b/net/kf6-kcalendarcore/distinfo index 13a3c443291b..282b4205af3d 100644 --- a/net/kf6-kcalendarcore/distinfo +++ b/net/kf6-kcalendarcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749476625 -SHA256 (KDE/frameworks/6.15/kcalendarcore-6.15.0.tar.xz) = 131434f19c931742d84f07113fbb053ea1a3db610130253e2bb927e8eacd1d39 -SIZE (KDE/frameworks/6.15/kcalendarcore-6.15.0.tar.xz) = 315956 +TIMESTAMP = 1752529513 +SHA256 (KDE/frameworks/6.16/kcalendarcore-6.16.0.tar.xz) = 521d1d2b356e3d7cd2e0bf687919c98655c626cde9ed520e42fc730e7a95bd9b +SIZE (KDE/frameworks/6.16/kcalendarcore-6.16.0.tar.xz) = 315836 diff --git a/net/kf6-kcontacts/distinfo b/net/kf6-kcontacts/distinfo index 7b5f07af497b..8618b9a2b9ed 100644 --- a/net/kf6-kcontacts/distinfo +++ b/net/kf6-kcontacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749476626 -SHA256 (KDE/frameworks/6.15/kcontacts-6.15.0.tar.xz) = 9b180955c80f7a09f8f552df7a708501fdb4c4f0bcee10c2e473ac67ea2b457a -SIZE (KDE/frameworks/6.15/kcontacts-6.15.0.tar.xz) = 211136 +TIMESTAMP = 1752529514 +SHA256 (KDE/frameworks/6.16/kcontacts-6.16.0.tar.xz) = ff57a9ab119b95895335d427481009cff72ae9cf6d0fc2fa9a504f96cfac6a5e +SIZE (KDE/frameworks/6.16/kcontacts-6.16.0.tar.xz) = 211132 diff --git a/net/kf6-kdav/distinfo b/net/kf6-kdav/distinfo index f44d2ea7b198..1799948b6ce5 100644 --- a/net/kf6-kdav/distinfo +++ b/net/kf6-kdav/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749476626 -SHA256 (KDE/frameworks/6.15/kdav-6.15.0.tar.xz) = fce5ac661bf20e99ae07d43fb56656718f909fb98bf62756c81f16240c53579e -SIZE (KDE/frameworks/6.15/kdav-6.15.0.tar.xz) = 69820 +TIMESTAMP = 1752529515 +SHA256 (KDE/frameworks/6.16/kdav-6.16.0.tar.xz) = 58a1c76646b3b52746a7690ecb9860448a59df77fca69199831352745706b325 +SIZE (KDE/frameworks/6.16/kdav-6.16.0.tar.xz) = 69828 diff --git a/net/kf6-kholidays/distinfo b/net/kf6-kholidays/distinfo index 16b3d4b9e169..3a5f057be75a 100644 --- a/net/kf6-kholidays/distinfo +++ b/net/kf6-kholidays/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749476626 -SHA256 (KDE/frameworks/6.15/kholidays-6.15.0.tar.xz) = 396860b9d63d3bb8f0cb0c433e0bb3cf7721394842f3fb8389c83e07ba0ae695 -SIZE (KDE/frameworks/6.15/kholidays-6.15.0.tar.xz) = 264684 +TIMESTAMP = 1752529515 +SHA256 (KDE/frameworks/6.16/kholidays-6.16.0.tar.xz) = 57029c35bd08c360f88453b202e0c67b9aabdd6f9f93f2ea066b6a8678dd0501 +SIZE (KDE/frameworks/6.16/kholidays-6.16.0.tar.xz) = 265516 diff --git a/net/kf6-syndication/distinfo b/net/kf6-syndication/distinfo index fd919ed47fc4..76f630a6fce2 100644 --- a/net/kf6-syndication/distinfo +++ b/net/kf6-syndication/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749476626 -SHA256 (KDE/frameworks/6.15/syndication-6.15.0.tar.xz) = 8d6ade8812295a9d3978ac1b2cd46cc0fb1819c598001562582851d9442ee01a -SIZE (KDE/frameworks/6.15/syndication-6.15.0.tar.xz) = 569248 +TIMESTAMP = 1752529516 +SHA256 (KDE/frameworks/6.16/syndication-6.16.0.tar.xz) = 901f5270720911818174024e6cd2fe44c94c752f36db0ce18d3a7dcd9a6cb6de +SIZE (KDE/frameworks/6.16/syndication-6.16.0.tar.xz) = 569416 diff --git a/net/knxd/Makefile b/net/knxd/Makefile index e7220f2ff481..0e220b2ef861 100644 --- a/net/knxd/Makefile +++ b/net/knxd/Makefile @@ -1,5 +1,5 @@ PORTNAME= knxd -PORTVERSION= 0.14.66 +PORTVERSION= 0.14.72 CATEGORIES= net # make is compatible with fmt >= 10, https://github.com/knxd/knxd/pull/549 diff --git a/net/knxd/distinfo b/net/knxd/distinfo index 4b85f1ac8719..2226494275b9 100644 --- a/net/knxd/distinfo +++ b/net/knxd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1730186276 -SHA256 (knxd-knxd-0.14.66_GH0.tar.gz) = aec3887a69a07a764fedf48f295e39887255f69a3c6e05987bbf0b9bcde6c7a1 -SIZE (knxd-knxd-0.14.66_GH0.tar.gz) = 291998 +TIMESTAMP = 1753710106 +SHA256 (knxd-knxd-0.14.72_GH0.tar.gz) = f90cad2dd1adc9116bdafa60bec9a7613c6991a37a7f967aec3a03cb1f7c00e2 +SIZE (knxd-knxd-0.14.72_GH0.tar.gz) = 300695 diff --git a/net/knxd/files/patch-src_libserver_tcptunserver.cpp b/net/knxd/files/patch-src_libserver_tcptunserver.cpp new file mode 100644 index 000000000000..b9d8fab73c6d --- /dev/null +++ b/net/knxd/files/patch-src_libserver_tcptunserver.cpp @@ -0,0 +1,10 @@ +--- src/libserver/tcptunserver.cpp.orig 2025-07-28 13:47:46 UTC ++++ src/libserver/tcptunserver.cpp +@@ -23,6 +23,7 @@ + + #include <unistd.h> + #include <netinet/tcp.h> ++#include <sys/socket.h> + #include <sys/un.h> + #include <arpa/inet.h> + diff --git a/net/krakend-ce/Makefile b/net/krakend-ce/Makefile index 041020e5a939..f5505a2223d9 100644 --- a/net/krakend-ce/Makefile +++ b/net/krakend-ce/Makefile @@ -1,10 +1,9 @@ PORTNAME= krakend-ce DISTVERSIONPREFIX= v -DISTVERSION= 2.10.0 -PORTREVISION= 1 +DISTVERSION= 2.10.2 CATEGORIES= net -MAINTAINER= alster@vinterdalen.se +MAINTAINER= alven@FreeBSD.org COMMENT= High-performance, stateless, declarative, API Gateway WWW= https://www.krakend.io/ \ https://github.com/krakend/krakend-ce/ diff --git a/net/krakend-ce/distinfo b/net/krakend-ce/distinfo index 3ad378ebde4a..e6e5828eb941 100644 --- a/net/krakend-ce/distinfo +++ b/net/krakend-ce/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1749830993 -SHA256 (go/net_krakend-ce/krakend-ce-v2.10.0/v2.10.0.mod) = e2950c3476439f37655342b300326fb003e7c9120563f99ed1b59fae80a5732a -SIZE (go/net_krakend-ce/krakend-ce-v2.10.0/v2.10.0.mod) = 14999 -SHA256 (go/net_krakend-ce/krakend-ce-v2.10.0/v2.10.0.zip) = 595680d8d00b0f516abe43f24c462fd7b0c83a5ccf912f2534d6ab1b583a8408 -SIZE (go/net_krakend-ce/krakend-ce-v2.10.0/v2.10.0.zip) = 141680 +TIMESTAMP = 1753272650 +SHA256 (go/net_krakend-ce/krakend-ce-v2.10.2/v2.10.2.mod) = bd911f791a23ae2eaef727c5c5973fde88330b7969148793df644795555018e9 +SIZE (go/net_krakend-ce/krakend-ce-v2.10.2/v2.10.2.mod) = 14999 +SHA256 (go/net_krakend-ce/krakend-ce-v2.10.2/v2.10.2.zip) = 5c8d711d4d5e87c932767d9ccdd30fe83fe0d89a661dd791b25824542ec4bfea +SIZE (go/net_krakend-ce/krakend-ce-v2.10.2/v2.10.2.zip) = 142230 diff --git a/net/ktcplist/Makefile b/net/ktcplist/Makefile index 82252f4c6ba4..d91a627a8cc7 100644 --- a/net/ktcplist/Makefile +++ b/net/ktcplist/Makefile @@ -1,5 +1,5 @@ PORTNAME= ktcplist -DISTVERSION= 1.0.1 +DISTVERSION= 1.0.2 CATEGORIES= net sysutils MAINTAINER= arrowd@FreeBSD.org diff --git a/net/ktcplist/distinfo b/net/ktcplist/distinfo index 1b6aa616fdd5..875334afd660 100644 --- a/net/ktcplist/distinfo +++ b/net/ktcplist/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1752161531 +TIMESTAMP = 1752564005 SHA256 (rust/crates/anstream-0.6.19.crate) = 301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933 SIZE (rust/crates/anstream-0.6.19.crate) = 28767 SHA256 (rust/crates/anstyle-1.0.11.crate) = 862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd @@ -71,5 +71,5 @@ SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270 SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 SHA256 (rust-lang-libc-ec44bd2fb146dd55e4ed2c169887f7d1a3f02e3c_GH0.tar.gz) = b4516ecd95532e6cce6a114fb72abfc97f26465d6f70d794f091211a632daa53 SIZE (rust-lang-libc-ec44bd2fb146dd55e4ed2c169887f7d1a3f02e3c_GH0.tar.gz) = 1003682 -SHA256 (kostikbel-ktcplist-1.0.1-ktcplist-1.0.1_GH0.tar.gz) = 4608ca4c3eb00d7cc42e07348068bd43233d91765bb22026cd8ae764833ea3d1 -SIZE (kostikbel-ktcplist-1.0.1-ktcplist-1.0.1_GH0.tar.gz) = 4737 +SHA256 (kostikbel-ktcplist-1.0.2-ktcplist-1.0.2_GH0.tar.gz) = bb1b73623122814c1dafe101983e9ebb2c2b8c888585b7d92ea76e1cade07959 +SIZE (kostikbel-ktcplist-1.0.2-ktcplist-1.0.2_GH0.tar.gz) = 4746 diff --git a/net/minidlna/Makefile b/net/minidlna/Makefile index a364ad12a7cc..73ae8aadbb1f 100644 --- a/net/minidlna/Makefile +++ b/net/minidlna/Makefile @@ -1,6 +1,6 @@ PORTNAME= minidlna PORTVERSION= 1.3.3 -PORTREVISION= 6 +PORTREVISION= 8 PORTEPOCH= 1 CATEGORIES= net multimedia www @@ -27,7 +27,7 @@ CPE_VENDOR= minidlna_project USE_GITHUB= yes GH_ACCOUNT= glebius -GH_TAGNAME= 5b88c1b +GH_TAGNAME= 967337d PKGMESSAGE= ${WRKSRC}/pkg-message SUB_FILES+= pkg-message diff --git a/net/minidlna/distinfo b/net/minidlna/distinfo index 8e53a7d8b7ec..99061cd2aa91 100644 --- a/net/minidlna/distinfo +++ b/net/minidlna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746631052 -SHA256 (glebius-minidlna-1.3.3-5b88c1b_GH0.tar.gz) = 383b252f538afa607b4c29239d996f709350fecdaa35e45377c698b08c3f8cae -SIZE (glebius-minidlna-1.3.3-5b88c1b_GH0.tar.gz) = 300079 +TIMESTAMP = 1753408630 +SHA256 (glebius-minidlna-1.3.3-967337d_GH0.tar.gz) = 62357bd276e44f0e74a96f539331c0c63bb290b47fa15e5bd92dd82b9808d0bd +SIZE (glebius-minidlna-1.3.3-967337d_GH0.tar.gz) = 300068 diff --git a/net/mosquitto/Makefile b/net/mosquitto/Makefile index 4ccc5523b4be..948a1b6cc1a5 100644 --- a/net/mosquitto/Makefile +++ b/net/mosquitto/Makefile @@ -1,19 +1,18 @@ PORTNAME= mosquitto -DISTVERSION= 2.0.21 -PORTREVISION= 1 +DISTVERSION= 2.0.22 CATEGORIES= net MASTER_SITES= https://mosquitto.org/files/source/ -MAINTAINER= joe@thrallingpenguin.com +MAINTAINER= leres@FreeBSD.org COMMENT= Open source MQTT broker WWW= https://mosquitto.org/ LICENSE= EPL -BUILD_DEPENDS= xsltproc:textproc/libxslt \ - docbook-xsl>0:textproc/docbook-xsl -LIB_DEPENDS= libuuid.so:misc/libuuid \ - libcjson.so:devel/libcjson +BUILD_DEPENDS= docbook-xsl>0:textproc/docbook-xsl \ + xsltproc:textproc/libxslt +LIB_DEPENDS= libcjson.so:devel/libcjson \ + libuuid.so:misc/libuuid RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss USES= cmake cpe ssl @@ -26,8 +25,8 @@ USERS= nobody PLIST_SUB= DISTVERSION=${DISTVERSION} -OPTIONS_DEFINE= CARES WEBSOCKET -OPTIONS_DEFAULT=CARES WEBSOCKET +OPTIONS_DEFINE= CARES WEBSOCKET +OPTIONS_DEFAULT= CARES WEBSOCKET CARES_LIB_DEPENDS= libcares.so:dns/c-ares CARES_CMAKE_ON= -DWITH_SRV:BOOL=ON diff --git a/net/mosquitto/distinfo b/net/mosquitto/distinfo index bd1058f85e74..8935947337eb 100644 --- a/net/mosquitto/distinfo +++ b/net/mosquitto/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749062322 -SHA256 (mosquitto-2.0.21.tar.gz) = 7ad5e84caeb8d2bb6ed0c04614b2a7042def961af82d87f688ba33db857b899d -SIZE (mosquitto-2.0.21.tar.gz) = 804168 +TIMESTAMP = 1753476242 +SHA256 (mosquitto-2.0.22.tar.gz) = 2f752589ef7db40260b633fbdb536e9a04b446a315138d64a7ff3c14e2de6b68 +SIZE (mosquitto-2.0.22.tar.gz) = 805967 diff --git a/net/mosquitto/files/patch-CMakeLists.txt b/net/mosquitto/files/patch-CMakeLists.txt index 960fae8651ba..f9d012481893 100644 --- a/net/mosquitto/files/patch-CMakeLists.txt +++ b/net/mosquitto/files/patch-CMakeLists.txt @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2020-12-28 11:28:48 UTC +--- CMakeLists.txt.orig 2025-07-11 21:32:27 UTC +++ CMakeLists.txt -@@ -14,6 +14,9 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cma +@@ -13,6 +13,9 @@ add_definitions (-DCMAKE -DVERSION=\"${VERSION}\") add_definitions (-DCMAKE -DVERSION=\"${VERSION}\") diff --git a/net/mosquitto/files/patch-config.mk b/net/mosquitto/files/patch-config.mk index 2dd082af0371..770ab63d9ce1 100644 --- a/net/mosquitto/files/patch-config.mk +++ b/net/mosquitto/files/patch-config.mk @@ -1,6 +1,6 @@ ---- config.mk.orig 2020-12-28 13:24:40 UTC +--- config.mk.orig 2025-07-11 21:32:27 UTC +++ config.mk -@@ -329,7 +329,7 @@ ifeq ($(WITH_WEBSOCKETS),static) +@@ -347,7 +347,7 @@ INSTALL?=install endif INSTALL?=install diff --git a/net/mosquitto/files/patch-mosquitto.conf b/net/mosquitto/files/patch-mosquitto.conf index d748d5b1171e..b20b04014aa1 100644 --- a/net/mosquitto/files/patch-mosquitto.conf +++ b/net/mosquitto/files/patch-mosquitto.conf @@ -1,4 +1,4 @@ ---- mosquitto.conf.orig 2025-03-06 16:25:31 UTC +--- mosquitto.conf.orig 2025-07-11 21:32:27 UTC +++ mosquitto.conf @@ -167,7 +167,7 @@ # This should be set to /var/run/mosquitto/mosquitto.pid if mosquitto is diff --git a/net/mosquitto/files/patch-src_CMakeLists.txt b/net/mosquitto/files/patch-src_CMakeLists.txt index 7ce42f56b518..8f024918eedc 100644 --- a/net/mosquitto/files/patch-src_CMakeLists.txt +++ b/net/mosquitto/files/patch-src_CMakeLists.txt @@ -1,6 +1,6 @@ ---- src/CMakeLists.txt.orig 2024-12-18 09:43:22.511844000 +0200 -+++ src/CMakeLists.txt 2024-12-18 09:45:34.368783000 +0200 -@@ -194,7 +194,7 @@ +--- src/CMakeLists.txt.orig 2025-07-11 21:32:27 UTC ++++ src/CMakeLists.txt +@@ -200,7 +200,7 @@ if (WITH_WEBSOCKETS) if (WITH_WEBSOCKETS) if (STATIC_WEBSOCKETS) diff --git a/net/mtr/Makefile b/net/mtr/Makefile index 8c9aecf484d2..d786f96bad56 100644 --- a/net/mtr/Makefile +++ b/net/mtr/Makefile @@ -1,7 +1,6 @@ PORTNAME= mtr -PORTVERSION= 0.95 +PORTVERSION= 0.96 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= net MAINTAINER= sunpoet@FreeBSD.org diff --git a/net/mtr/distinfo b/net/mtr/distinfo index 1140d445491d..dea1181bf98d 100644 --- a/net/mtr/distinfo +++ b/net/mtr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1643178478 -SHA256 (traviscross-mtr-v0.95_GH0.tar.gz) = 12490fb660ba5fb34df8c06a0f62b4f9cbd11a584fc3f6eceda0a99124e8596f -SIZE (traviscross-mtr-v0.95_GH0.tar.gz) = 144541 +TIMESTAMP = 1752266022 +SHA256 (traviscross-mtr-v0.96_GH0.tar.gz) = 73e6aef3fb6c8b482acb5b5e2b8fa7794045c4f2420276f035ce76c5beae632d +SIZE (traviscross-mtr-v0.96_GH0.tar.gz) = 158043 diff --git a/net/mvfst/Makefile b/net/mvfst/Makefile index f27bf3ef3c6d..29b0d9f9640b 100644 --- a/net/mvfst/Makefile +++ b/net/mvfst/Makefile @@ -1,6 +1,6 @@ PORTNAME= mvfst DISTVERSIONPREFIX= v -DISTVERSION= 2025.07.07.00 +DISTVERSION= 2025.07.28.00 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/mvfst/distinfo b/net/mvfst/distinfo index 21b7e8d92026..0c6e0f2e8f98 100644 --- a/net/mvfst/distinfo +++ b/net/mvfst/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1752053910 -SHA256 (facebook-mvfst-v2025.07.07.00_GH0.tar.gz) = 11831c322feab8039dfff363de035d3cda10a29709d18a17117481c34de2533b -SIZE (facebook-mvfst-v2025.07.07.00_GH0.tar.gz) = 2094844 +TIMESTAMP = 1753765045 +SHA256 (facebook-mvfst-v2025.07.28.00_GH0.tar.gz) = 2170aba0615cc6c907d0b25fa8afe4f49d3b96cf1cf2bd32c5faeffb65e35afd +SIZE (facebook-mvfst-v2025.07.28.00_GH0.tar.gz) = 2100524 diff --git a/net/mvfst/pkg-plist b/net/mvfst/pkg-plist index 7dec706efd12..dcfba88934ae 100644 --- a/net/mvfst/pkg-plist +++ b/net/mvfst/pkg-plist @@ -74,6 +74,7 @@ include/quic/common/events/QuicEventBase.h include/quic/common/events/QuicTimer.h include/quic/common/testutil/MockAsyncUDPSocket.h include/quic/common/third-party/enum.h +include/quic/common/third-party/expected.hpp include/quic/common/third-party/optional.h include/quic/common/third-party/optional_flag_manipulator_fwd.h include/quic/common/udpsocket/FollyQuicAsyncUDPSocket.h diff --git a/net/natscli/Makefile b/net/natscli/Makefile index 6c6c8fdaf29d..5a2909d7cf56 100644 --- a/net/natscli/Makefile +++ b/net/natscli/Makefile @@ -1,7 +1,6 @@ PORTNAME= natscli -PORTVERSION= 0.2.3 +PORTVERSION= 0.2.4 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= net MAINTAINER= olgeni@FreeBSD.org diff --git a/net/natscli/distinfo b/net/natscli/distinfo index f5aa0a6fffa9..80ea54fac29c 100644 --- a/net/natscli/distinfo +++ b/net/natscli/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1749232486 -SHA256 (go/net_natscli/natscli-v0.2.3/v0.2.3.mod) = d2f0230eaff86efd23c6e8b6de5b5388f0fe785ae3dc2872fe105e9a70c2b2bd -SIZE (go/net_natscli/natscli-v0.2.3/v0.2.3.mod) = 2850 -SHA256 (go/net_natscli/natscli-v0.2.3/v0.2.3.zip) = 6089a69703a165510aac9dc0a712d6ff9c22e19c4e4908a4476718204199eeb1 -SIZE (go/net_natscli/natscli-v0.2.3/v0.2.3.zip) = 395738 +TIMESTAMP = 1752859477 +SHA256 (go/net_natscli/natscli-v0.2.4/v0.2.4.mod) = bf4c5ebf062da307404586d65ddee7ccb755e044b52d78d5ff77628beb2c8b9c +SIZE (go/net_natscli/natscli-v0.2.4/v0.2.4.mod) = 2991 +SHA256 (go/net_natscli/natscli-v0.2.4/v0.2.4.zip) = f36d9461d831258b83b184560f633842223cb2b29a3473efa92e3007d2f61d90 +SIZE (go/net_natscli/natscli-v0.2.4/v0.2.4.zip) = 404524 diff --git a/net/neatvnc/Makefile b/net/neatvnc/Makefile index 3e5006f2ba33..617d06be75c8 100644 --- a/net/neatvnc/Makefile +++ b/net/neatvnc/Makefile @@ -1,6 +1,6 @@ PORTNAME= neatvnc DISTVERSIONPREFIX= v -DISTVERSION= 0.9.4 +DISTVERSION= 0.9.5 CATEGORIES= net MAINTAINER= jbeich@FreeBSD.org diff --git a/net/neatvnc/distinfo b/net/neatvnc/distinfo index 21543fbdfc5c..75eaf2e87a86 100644 --- a/net/neatvnc/distinfo +++ b/net/neatvnc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1740951219 -SHA256 (any1-neatvnc-v0.9.4_GH0.tar.gz) = 806e8420a1b9479c7f289ab01146affb320fce724cec3fda66242fd7e5eced0b -SIZE (any1-neatvnc-v0.9.4_GH0.tar.gz) = 826434 +TIMESTAMP = 1753735068 +SHA256 (any1-neatvnc-v0.9.5_GH0.tar.gz) = 8150a30bfbd350b046680650b52afcce5ae44d328cb396fb571c6f9b99811357 +SIZE (any1-neatvnc-v0.9.5_GH0.tar.gz) = 826418 diff --git a/net/ntpd-rs/Makefile b/net/ntpd-rs/Makefile index 1f8bea2dea3b..eb63cef4ab41 100644 --- a/net/ntpd-rs/Makefile +++ b/net/ntpd-rs/Makefile @@ -1,7 +1,6 @@ PORTNAME= ntpd-rs DISTVERSIONPREFIX= v -DISTVERSION= 1.6.0 -PORTREVISION= 1 +DISTVERSION= 1.6.1 CATEGORIES= net MAINTAINER= mikael@FreeBSD.org diff --git a/net/ntpd-rs/distinfo b/net/ntpd-rs/distinfo index 89203b8ecd2c..904a8a10fd2c 100644 --- a/net/ntpd-rs/distinfo +++ b/net/ntpd-rs/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1751028696 +TIMESTAMP = 1752665084 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa @@ -335,5 +335,5 @@ SHA256 (rust/crates/zerocopy-derive-0.8.26.crate) = 9ecf5b4cc5364572d7f4c329661b SIZE (rust/crates/zerocopy-derive-0.8.26.crate) = 88080 SHA256 (rust/crates/zeroize-1.8.1.crate) = ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde SIZE (rust/crates/zeroize-1.8.1.crate) = 20029 -SHA256 (pendulum-project-ntpd-rs-v1.6.0_GH0.tar.gz) = 7d7fc946c8683b6411c9e93a355d8e20b1640e17f58dc33c1eb3414854c0cf1e -SIZE (pendulum-project-ntpd-rs-v1.6.0_GH0.tar.gz) = 1434096 +SHA256 (pendulum-project-ntpd-rs-v1.6.1_GH0.tar.gz) = 71d5ca4078124fc00b57f565dd3a77bc6152f9dc8787f3018cc204a8e4e6b9c5 +SIZE (pendulum-project-ntpd-rs-v1.6.1_GH0.tar.gz) = 1434202 diff --git a/net/onedrivegui/Makefile b/net/onedrivegui/Makefile new file mode 100644 index 000000000000..d261549201f7 --- /dev/null +++ b/net/onedrivegui/Makefile @@ -0,0 +1,50 @@ +PORTNAME= onedrivegui +DISTVERSION= 1.2.1 +DISTVERSIONPREFIX= v +CATEGORIES= net python + +MAINTAINER= acm@FreeBSD.org +COMMENT= simple GUI for OneDrive client with multi-account support +WWW= https://github.com/bpozdena/OneDriveGUI + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= onedrive:net/onedrive \ + ${PYTHON_PKGNAMEPREFIX}pyside6>0:devel/pyside6@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}urllib3>0:net/py-urllib3@${PY_FLAVOR} + +USE_GITHUB= yes +GH_ACCOUNT= bpozdena +GH_PROJECT= OneDriveGUI + +USES= desktop-file-utils python shebangfix + +NO_ARCH= yes +NO_BUILD= yes + +SHEBANG_LANG= python +SHEBANG_GLOB= *.py + +SUB_FILES= onedrivegui.sh + +post-patch: + ${REINPLACE_CMD} -i "" -e "s|%%DATADIR%%|${DATADIR}|g" ${WRKSRC}/src/global_config.py + ${REINPLACE_CMD} -i "" -e "s|%%PYTHON_CMD%%|${PYTHON_CMD}|g" \ + -e "s|%%DATADIR%%|${DATADIR}|g" ${WRKSRC}/src/resources/OneDriveGUI.desktop + ${RM} ${WRKSRC}/src/resources/OneDriveGUI.desktop.orig + ${RM} ${WRKSRC}/src/global_config.py.orig + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/48x48/apps + @${MKDIR} ${STAGEDIR}${DATADIR} + + ${INSTALL_DATA} ${WRKSRC}/src/resources/images/OneDriveGUI.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/48x48/apps/onedrivegui.png + ${INSTALL_DATA} ${WRKSRC}/src/resources/OneDriveGUI.desktop ${STAGEDIR}${DESKTOPDIR} + + @cd ${WRKSRC}/src && ${COPYTREE_SHARE} "resources settings ui utils" ${STAGEDIR}${DATADIR}/ + ${INSTALL_SCRIPT} ${WRKSRC}/src/*.py ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include <bsd.port.mk> diff --git a/net/onedrivegui/distinfo b/net/onedrivegui/distinfo new file mode 100644 index 000000000000..3cbd1a2282e4 --- /dev/null +++ b/net/onedrivegui/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1752769251 +SHA256 (bpozdena-OneDriveGUI-v1.2.1_GH0.tar.gz) = 50320c5df5ad599da673af35a0f5d0c80a0f9d4f979333a06a762017a64224c5 +SIZE (bpozdena-OneDriveGUI-v1.2.1_GH0.tar.gz) = 112478 diff --git a/net/onedrivegui/files/onedrivegui.sh.in b/net/onedrivegui/files/onedrivegui.sh.in new file mode 100644 index 000000000000..224e2878df1e --- /dev/null +++ b/net/onedrivegui/files/onedrivegui.sh.in @@ -0,0 +1,4 @@ +#!/bin/sh + +cd %%DATADIR%% || exit 1 +exec %%DATADIR%%/OneDriveGUI.py "$@" diff --git a/net/onedrivegui/files/patch-src_global__config.py b/net/onedrivegui/files/patch-src_global__config.py new file mode 100644 index 000000000000..3455329b4b49 --- /dev/null +++ b/net/onedrivegui/files/patch-src_global__config.py @@ -0,0 +1,11 @@ +--- src/global_config.py.orig 2025-06-16 11:23:57 UTC ++++ src/global_config.py +@@ -7,7 +7,7 @@ from configparser import ConfigParser + from configparser import ConfigParser + + +-DIR_PATH = os.path.dirname(os.path.realpath(__file__)) ++DIR_PATH = "/usr/local/share/onedrivegui" + PROFILES_FILE = os.path.expanduser("~/.config/onedrive-gui/profiles") + + diff --git a/net/onedrivegui/files/patch-src_resources_OneDriveGUI.desktop b/net/onedrivegui/files/patch-src_resources_OneDriveGUI.desktop new file mode 100644 index 000000000000..02801c7b71da --- /dev/null +++ b/net/onedrivegui/files/patch-src_resources_OneDriveGUI.desktop @@ -0,0 +1,18 @@ +--- src/resources/OneDriveGUI.desktop.orig 2025-06-16 11:23:57 UTC ++++ src/resources/OneDriveGUI.desktop +@@ -1,8 +1,10 @@ Name=OneDriveGUI + [Desktop Entry] + Name=OneDriveGUI ++GenericName=OneDrive Client for FreeBSD + StartupNotify=true +-Exec=/usr/bin/python3 /home/bob/host_share/Python/OneDriveGUI/src/OneDriveGUI.py ++Exec=onedrivegui + Terminal=false +-Path=/home/bob/host_share/Python/OneDriveGUI/src/resources/images +-Icon=/home/bob/host_share/Python/OneDriveGUI/src/resources/images/icons8-clouds-48.png +-Type=Application +\ No newline at end of file ++Icon=onedrivegui ++Categories=Network; ++Type=Application ++ diff --git a/net/onedrivegui/pkg-descr b/net/onedrivegui/pkg-descr new file mode 100644 index 000000000000..4d09332bf7ba --- /dev/null +++ b/net/onedrivegui/pkg-descr @@ -0,0 +1,17 @@ +A GUI for FreeBSD/Linux OneDrive Client with multi-account support. + +Feature Highlights +- Management and configuration of multiple OneDrive accounts. +- Asynchronous real-time monitoring of multiple OneDrive accounts. +- Setup wizard for easy OneDrive profile creation and import. +- Auto-sync on GUI startup. +- Support for GUI-based login process. +- System tray (if supported by your desktop environment). +- Start minimized to tray/dock. +- Input validation to prevent configuration of incompatible OneDrive client + options. +- Progress monitoring of multiple simultaneous file transfers. +- Import and management of SharePoint Shared Libraries. +- Tooltips with brief explanations of various OneDrive Client configuration + options. +- Prompt for re-sync authorization to prevent unexpected data loss. diff --git a/net/onedrivegui/pkg-plist b/net/onedrivegui/pkg-plist new file mode 100644 index 000000000000..0f2a60537438 --- /dev/null +++ b/net/onedrivegui/pkg-plist @@ -0,0 +1,65 @@ +bin/onedrivegui +share/applications/OneDriveGUI.desktop +share/icons/hicolor/48x48/apps/onedrivegui.png +%%DATADIR%%/OneDriveGUI.py +%%DATADIR%%/global_config.py +%%DATADIR%%/gui_settings_window.py +%%DATADIR%%/logger.py +%%DATADIR%%/main_window.py +%%DATADIR%%/options.py +%%DATADIR%%/profile_settings_window.py +%%DATADIR%%/resources/OneDriveGUI.desktop +%%DATADIR%%/resources/default_config +%%DATADIR%%/resources/images/OneDriveGUI.ico +%%DATADIR%%/resources/images/OneDriveGUI.png +%%DATADIR%%/resources/images/account.png +%%DATADIR%%/resources/images/close-filled.png +%%DATADIR%%/resources/images/folder.png +%%DATADIR%%/resources/images/gear.png +%%DATADIR%%/resources/images/icons8-cloud-cross-40_2.png +%%DATADIR%%/resources/images/icons8-cloud-done-40_2.png +%%DATADIR%%/resources/images/icons8-cloud-sync-40_2.png +%%DATADIR%%/resources/images/icons8-clouds-48.ico +%%DATADIR%%/resources/images/icons8-clouds-48.png +%%DATADIR%%/resources/images/icons8-clouds-80-dark-edge.png +%%DATADIR%%/resources/images/icons8-green-circle-48.png +%%DATADIR%%/resources/images/icons8-red-circle-48.png +%%DATADIR%%/resources/images/menu.png +%%DATADIR%%/resources/images/pause.png +%%DATADIR%%/resources/images/play.png +%%DATADIR%%/resources/images/quit.png +%%DATADIR%%/resources/images/stop.png +%%DATADIR%%/resources/images/storage.png +%%DATADIR%%/resources/images/user-account.png +%%DATADIR%%/resources/images/warning.png +%%DATADIR%%/settings/__init__.py +%%DATADIR%%/settings/gui_settings.py +%%DATADIR%%/ui/create_new_profile.ui +%%DATADIR%%/ui/external_login.ui +%%DATADIR%%/ui/gui_settings_window.ui +%%DATADIR%%/ui/import_existing_profile.ui +%%DATADIR%%/ui/list_item_widget.ui +%%DATADIR%%/ui/login.ui +%%DATADIR%%/ui/mainwindow.ui +%%DATADIR%%/ui/mainwindow.ui.autosave +%%DATADIR%%/ui/mainwindow_ui.py +%%DATADIR%%/ui/process_status_page.ui +%%DATADIR%%/ui/profile_settings_page.ui +%%DATADIR%%/ui/profile_settings_window.ui +%%DATADIR%%/ui/profile_settings_window_ui.py +%%DATADIR%%/ui/setup_wizard.ui +%%DATADIR%%/ui/test.ui +%%DATADIR%%/ui/ui_create_new_profile.py +%%DATADIR%%/ui/ui_external_login.py +%%DATADIR%%/ui/ui_gui_settings_window.py +%%DATADIR%%/ui/ui_import_existing_profile.py +%%DATADIR%%/ui/ui_list_item_widget.py +%%DATADIR%%/ui/ui_login.py +%%DATADIR%%/ui/ui_mainwindow.py +%%DATADIR%%/ui/ui_process_status_page.py +%%DATADIR%%/ui/ui_profile_settings_page.py +%%DATADIR%%/ui/ui_profile_settings_window.py +%%DATADIR%%/utils/__init__.py +%%DATADIR%%/utils/utils.py +%%DATADIR%%/wizard.py +%%DATADIR%%/workers.py diff --git a/net/openldap25-server/Makefile b/net/openldap25-server/Makefile index a67c7c5c9618..0deaa6d39afb 100644 --- a/net/openldap25-server/Makefile +++ b/net/openldap25-server/Makefile @@ -115,6 +115,8 @@ OPTIONS_DEFINE+= OUTLOOK OPTIONS_DEFINE+= ARGON2 OPTIONS_DEFINE+= LLOADD +OPTIONS_EXCLUDE_FreeBSD_15= SMBPWD # Only works with Heimdal + OPTIONS_DEFAULT+= ${BKNDS_DEFAULTS} OPTIONS_DEFAULT+= ${OPTIONS_GROUP_OVLYS} OPTIONS_DEFAULT+= ARGON2 LLOADD diff --git a/net/openldap26-server/Makefile b/net/openldap26-server/Makefile index 68ab7a2079fb..b05c13c76075 100644 --- a/net/openldap26-server/Makefile +++ b/net/openldap26-server/Makefile @@ -116,6 +116,8 @@ OPTIONS_DEFINE+= OUTLOOK OPTIONS_DEFINE+= ARGON2 OPTIONS_DEFINE+= LLOADD +OPTIONS_EXCLUDE_FreeBSD_15= SMBPWD # Only works with Heimdal + OPTIONS_DEFAULT+= ${BKNDS_DEFAULTS} OPTIONS_DEFAULT+= ${OPTIONS_GROUP_OVLYS} OPTIONS_DEFAULT+= ARGON2 LLOADD diff --git a/net/p5-Net-Whois-Raw/Makefile b/net/p5-Net-Whois-Raw/Makefile index a0262db97faf..ca090345ff1e 100644 --- a/net/p5-Net-Whois-Raw/Makefile +++ b/net/p5-Net-Whois-Raw/Makefile @@ -1,5 +1,5 @@ PORTNAME= Net-Whois-Raw -PORTVERSION= 2.99041 +PORTVERSION= 2.99042 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/net/p5-Net-Whois-Raw/distinfo b/net/p5-Net-Whois-Raw/distinfo index 98d0423d72ad..53d73848225b 100644 --- a/net/p5-Net-Whois-Raw/distinfo +++ b/net/p5-Net-Whois-Raw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748588716 -SHA256 (Net-Whois-Raw-2.99041.tar.gz) = 53cd327bde352fe73e76ee709cab042410237dcc73944dd26048773657c133d2 -SIZE (Net-Whois-Raw-2.99041.tar.gz) = 76340 +TIMESTAMP = 1753252034 +SHA256 (Net-Whois-Raw-2.99042.tar.gz) = 92a36754b5118d57ee561e282d113e59fdd1e7437828e20872a1fbfe41d61726 +SIZE (Net-Whois-Raw-2.99042.tar.gz) = 76393 diff --git a/net/p5-Socket/Makefile b/net/p5-Socket/Makefile index 9a1b4891dbd7..5eb54b8b5a60 100644 --- a/net/p5-Socket/Makefile +++ b/net/p5-Socket/Makefile @@ -1,5 +1,5 @@ PORTNAME= Socket -PORTVERSION= 2.039 +PORTVERSION= 2.040 CATEGORIES= net perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PEVANS diff --git a/net/p5-Socket/distinfo b/net/p5-Socket/distinfo index ba86eb47dca3..effdfd31c1dd 100644 --- a/net/p5-Socket/distinfo +++ b/net/p5-Socket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750954160 -SHA256 (Socket-2.039.tar.gz) = 5dc61ae6e049e50d1052d656341b6091dc9f884464a78e2afdc2b989ff4390bb -SIZE (Socket-2.039.tar.gz) = 46242 +TIMESTAMP = 1753265734 +SHA256 (Socket-2.040.tar.gz) = be0102fdcea8d43f1b02ef2ef94345ac4bbc7b6c66ece2ddd1a3593d8371ba1b +SIZE (Socket-2.040.tar.gz) = 46278 diff --git a/net/p5-URI/Makefile b/net/p5-URI/Makefile index a1a920cade44..57790b203ef9 100644 --- a/net/p5-URI/Makefile +++ b/net/p5-URI/Makefile @@ -1,5 +1,6 @@ PORTNAME= URI PORTVERSION= 5.32 +PORTREVISION= 1 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -12,6 +13,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE +RUN_DEPENDS= p5-MIME-Base32>=0:converters/p5-MIME-Base32 \ + p5-MIME-Base64>=0:converters/p5-MIME-Base64 TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Needs>=0:devel/p5-Test-Needs \ p5-Test-Warnings>=0:devel/p5-Test-Warnings diff --git a/net/py-blobfile/Makefile b/net/py-blobfile/Makefile index 0dc6e2a19543..a97e845ab102 100644 --- a/net/py-blobfile/Makefile +++ b/net/py-blobfile/Makefile @@ -1,5 +1,6 @@ PORTNAME= blobfile PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=61.0:devel/py-setuptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}filelock>=3.0:sysutils/py-filelock@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}lxml>=4.9:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml5>=4.9:devel/py-lxml5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pycryptodomex>=3.8:security/py-pycryptodomex@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}urllib3>=1.25.3,1<3,1:net/py-urllib3@${PY_FLAVOR} diff --git a/net/py-eventlet/Makefile b/net/py-eventlet/Makefile index 1dd22befe991..f98e115b7d8c 100644 --- a/net/py-eventlet/Makefile +++ b/net/py-eventlet/Makefile @@ -1,5 +1,5 @@ PORTNAME= eventlet -PORTVERSION= 0.40.1 +PORTVERSION= 0.40.2 CATEGORIES= net python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net/py-eventlet/distinfo b/net/py-eventlet/distinfo index a16b75462557..1ba6aeaff366 100644 --- a/net/py-eventlet/distinfo +++ b/net/py-eventlet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750954218 -SHA256 (eventlet-0.40.1.tar.gz) = aee74de74ac6634a1dac1ed58dc93b5dc2abaef3c7b5e76fd7f195f1662f25ef -SIZE (eventlet-0.40.1.tar.gz) = 565260 +TIMESTAMP = 1753369400 +SHA256 (eventlet-0.40.2.tar.gz) = 42636c277f761d026905cd0ba0a11edec7600001be401d6ae7e9546559c8d8b0 +SIZE (eventlet-0.40.2.tar.gz) = 565548 diff --git a/net/py-maxminddb/Makefile b/net/py-maxminddb/Makefile index bf467698fb04..40f6378dfbac 100644 --- a/net/py-maxminddb/Makefile +++ b/net/py-maxminddb/Makefile @@ -1,5 +1,5 @@ PORTNAME= maxminddb -PORTVERSION= 2.7.0 +PORTVERSION= 2.8.2 DISTVERSIONPREFIX= v CATEGORIES= net python geography PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net/py-maxminddb/distinfo b/net/py-maxminddb/distinfo index 87df39922aef..f94d16e7a6c9 100644 --- a/net/py-maxminddb/distinfo +++ b/net/py-maxminddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746559870 -SHA256 (maxmind-MaxMind-DB-Reader-python-v2.7.0_GH0.tar.gz) = bf4a2bf9c4e03711800c9ce91720d4d799c66f06c46884ab437073765026162a -SIZE (maxmind-MaxMind-DB-Reader-python-v2.7.0_GH0.tar.gz) = 56688 +TIMESTAMP = 1753697225 +SHA256 (maxmind-MaxMind-DB-Reader-python-v2.8.2_GH0.tar.gz) = 6fe304264a2092a169ef99a9eb256bfc25f0ca3df5bf8e6da54e1066b68ada22 +SIZE (maxmind-MaxMind-DB-Reader-python-v2.8.2_GH0.tar.gz) = 54359 diff --git a/net/py-paho-mqtt/Makefile b/net/py-paho-mqtt/Makefile index 3b8afc0287e3..9245871d4ba7 100644 --- a/net/py-paho-mqtt/Makefile +++ b/net/py-paho-mqtt/Makefile @@ -5,7 +5,7 @@ MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= paho_mqtt-${DISTVERSION} -MAINTAINER= joe@thrallingpenguin.com +MAINTAINER= ports@FreeBSD.org COMMENT= MQTT version 3.1/3.1.1 client class WWW= https://www.eclipse.org/paho/ diff --git a/net/py-pyshark/Makefile b/net/py-pyshark/Makefile index ef6992a9ff29..1e314b116c47 100644 --- a/net/py-pyshark/Makefile +++ b/net/py-pyshark/Makefile @@ -1,6 +1,6 @@ PORTNAME= pyshark PORTVERSION= 0.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ LICENSE= MIT BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>=0:devel/py-appdirs@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml5>=0:devel/py-lxml5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}termcolor>=0:devel/py-termcolor@${PY_FLAVOR} \ tshark:net/wireshark@nox11 diff --git a/net/py-s3transfer/Makefile b/net/py-s3transfer/Makefile index eb137e594c74..44da8b88083c 100644 --- a/net/py-s3transfer/Makefile +++ b/net/py-s3transfer/Makefile @@ -1,5 +1,5 @@ PORTNAME= s3transfer -PORTVERSION= 0.13.0 +PORTVERSION= 0.13.1 CATEGORIES= net python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net/py-s3transfer/distinfo b/net/py-s3transfer/distinfo index e86da7445315..3d9846273584 100644 --- a/net/py-s3transfer/distinfo +++ b/net/py-s3transfer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748495837 -SHA256 (s3transfer-0.13.0.tar.gz) = f5e6db74eb7776a37208001113ea7aa97695368242b364d73e91c981ac522177 -SIZE (s3transfer-0.13.0.tar.gz) = 150232 +TIMESTAMP = 1753265784 +SHA256 (s3transfer-0.13.1.tar.gz) = c3fdba22ba1bd367922f27ec8032d6a1cf5f10c934fb5d68cf60fd5a23d936cf +SIZE (s3transfer-0.13.1.tar.gz) = 150589 diff --git a/net/py-scamper/Makefile b/net/py-scamper/Makefile index c0e2b2c5807f..e453f4d54a68 100644 --- a/net/py-scamper/Makefile +++ b/net/py-scamper/Makefile @@ -24,7 +24,8 @@ BUILD_WRKSRC= ${WRKSRC}/lib/python INSTALL_WRKSRC= ${BUILD_WRKSRC} PLIST_FILES= ${PYTHONPREFIX_SITELIBDIR:S,^${PREFIX}/,,}/scamper.a \ - ${PYTHONPREFIX_SITELIBDIR:S,^${PREFIX}/,,}/scamper.so + ${PYTHONPREFIX_SITELIBDIR:S,^${PREFIX}/,,}/scamper.so \ + ${PYTHONPREFIX_SITELIBDIR:S,^${PREFIX}/,,}/scamper.pyi post-patch: @${REINPLACE_CMD} \ diff --git a/net/py-zeep/Makefile b/net/py-zeep/Makefile index 900193adb5af..41017551a1f7 100644 --- a/net/py-zeep/Makefile +++ b/net/py-zeep/Makefile @@ -1,5 +1,6 @@ PORTNAME= zeep DISTVERSION= 4.3.1 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +18,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.4.0,1:textproc/py-sphinx@${PY_FL ${PY_SETUPTOOLS} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>=17.2.0:devel/py-attrs@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}isodate>=0.5.4:devel/py-isodate@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}lxml>=4.6.0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml5>=4.6.0:devel/py-lxml5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}platformdirs>=1.4.0:devel/py-platformdirs@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.7.0:www/py-requests@${PY_FLAVOR} \ diff --git a/net/rclone/Makefile b/net/rclone/Makefile index 08adca33ff76..2d70e0d40aed 100644 --- a/net/rclone/Makefile +++ b/net/rclone/Makefile @@ -1,7 +1,6 @@ PORTNAME= rclone DISTVERSIONPREFIX= v -DISTVERSION= 1.70.2 -PORTREVISION= 1 +DISTVERSION= 1.70.3 CATEGORIES= net MAINTAINER= tremere@cainites.net diff --git a/net/rclone/distinfo b/net/rclone/distinfo index 2e9b66f1621d..555f9f7355a4 100644 --- a/net/rclone/distinfo +++ b/net/rclone/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1751038584 -SHA256 (go/net_rclone/rclone-v1.70.2/v1.70.2.mod) = 0f533205ddb5dcadda6e80dacfac7ac144769c1e15fd10e90ba80f0a36347cd0 -SIZE (go/net_rclone/rclone-v1.70.2/v1.70.2.mod) = 12114 -SHA256 (go/net_rclone/rclone-v1.70.2/v1.70.2.zip) = 6d0feda30e8baa320cda208bef4602ec107e278cfd0251b3f66bd62d0378a276 -SIZE (go/net_rclone/rclone-v1.70.2/v1.70.2.zip) = 18337828 +TIMESTAMP = 1752436837 +SHA256 (go/net_rclone/rclone-v1.70.3/v1.70.3.mod) = 0f533205ddb5dcadda6e80dacfac7ac144769c1e15fd10e90ba80f0a36347cd0 +SIZE (go/net_rclone/rclone-v1.70.3/v1.70.3.mod) = 12114 +SHA256 (go/net_rclone/rclone-v1.70.3/v1.70.3.zip) = 6e3813694bb603029a0365c9afc921feaae336687b809e71eaff0feb00c9a6f0 +SIZE (go/net_rclone/rclone-v1.70.3/v1.70.3.zip) = 18341022 diff --git a/net/redpanda-connect/Makefile b/net/redpanda-connect/Makefile index 875204592873..5ac95569b594 100644 --- a/net/redpanda-connect/Makefile +++ b/net/redpanda-connect/Makefile @@ -1,6 +1,6 @@ PORTNAME= connect DISTVERSIONPREFIX= v -DISTVERSION= 4.60.1 +DISTVERSION= 4.61.0 CATEGORIES= net PKGNAMEPREFIX= redpanda- diff --git a/net/redpanda-connect/distinfo b/net/redpanda-connect/distinfo index ac29b8d00ff6..3affba249741 100644 --- a/net/redpanda-connect/distinfo +++ b/net/redpanda-connect/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1752329135 -SHA256 (go/net_redpanda-connect/connect-v4.60.1/v4.60.1.mod) = 1b37bd61125b3b38b710b9c2819f8daf6fadbed10ac18f22d2840e237b37f42f -SIZE (go/net_redpanda-connect/connect-v4.60.1/v4.60.1.mod) = 24329 -SHA256 (go/net_redpanda-connect/connect-v4.60.1/v4.60.1.zip) = 09a32c8c03683cf2f8db534d72b3b34e29c6bc5a720395841977b078237623fb -SIZE (go/net_redpanda-connect/connect-v4.60.1/v4.60.1.zip) = 2813484 +TIMESTAMP = 1752913928 +SHA256 (go/net_redpanda-connect/connect-v4.61.0/v4.61.0.mod) = 5e49767f388d02662a2e10ab7124c78522b5248bc5033826833aee04aeb1cd4e +SIZE (go/net_redpanda-connect/connect-v4.61.0/v4.61.0.mod) = 24341 +SHA256 (go/net_redpanda-connect/connect-v4.61.0/v4.61.0.zip) = ed997944cbe4fb225f86d94c7215a2f373cc9cf4a8bccfa4fd28fc67dafe8bd5 +SIZE (go/net_redpanda-connect/connect-v4.61.0/v4.61.0.zip) = 2825956 diff --git a/net/rsync/Makefile b/net/rsync/Makefile index 5977ac517199..e495116560b8 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -1,6 +1,6 @@ PORTNAME= rsync DISTVERSION= 3.4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= https://www.mirrorservice.org/sites/rsync.samba.org/src/ \ http://rsync.mirror.garr.it/src/ \ diff --git a/net/rsync/files/patch-lib_sysxattrs.c b/net/rsync/files/patch-lib_sysxattrs.c new file mode 100644 index 000000000000..16a307a83ad6 --- /dev/null +++ b/net/rsync/files/patch-lib_sysxattrs.c @@ -0,0 +1,42 @@ +--- a/lib/sysxattrs.c.orig 2022-01-16 01:21:01.000000000 +0000 ++++ b/lib/sysxattrs.c 2025-07-28 12:05:43.501532000 +0000 +@@ -126,22 +126,29 @@ + unsigned char keylen; + ssize_t off, len = extattr_list_link(path, EXTATTR_NAMESPACE_USER, list, size); + +- if (len <= 0 || (size_t)len > size) ++ if (len <= 0 || size == 0) + return len; + ++ if ((size_t)len == size) { ++ /* extattr_list_link fills a buffer with a list of file attributes. ++ * If the buffer size is too small the content is truncated and ++ * extattr_list_link returns the number of written bytes and no ++ * error is raised. If size == len assumes the buffer was too small ++ * and behave like Linux requesting a larger buffer. */ ++ errno = ERANGE; ++ return -1; ++ } ++ + /* FreeBSD puts a single-byte length before each string, with no '\0' + * terminator. We need to change this into a series of null-terminted + * strings. Since the size is the same, we can simply transform the + * output in place. */ +- for (off = 0; off < len; off += keylen + 1) { +- keylen = ((unsigned char*)list)[off]; +- if (off + keylen >= len) { +- /* Should be impossible, but kernel bugs happen! */ +- errno = EINVAL; +- return -1; +- } +- memmove(list+off, list+off+1, keylen); +- list[off+keylen] = '\0'; ++ keylen = (unsigned char)list[0]; ++ memmove(list, list+1, len-1); ++ list[len-1] = '\0'; ++ for (off = keylen; off < (len - 1); off += (keylen + 1)) { ++ keylen = (unsigned char)list[off]; ++ list[off] = '\0'; + } + + return len; diff --git a/net/rsync/files/patch-testsuite_xattrs.test b/net/rsync/files/patch-testsuite_xattrs.test new file mode 100644 index 000000000000..95a1a285d96b --- /dev/null +++ b/net/rsync/files/patch-testsuite_xattrs.test @@ -0,0 +1,67 @@ +--- a/testsuite/xattrs.test.orig 2022-10-20 16:09:26.000000000 +0000 ++++ b/testsuite/xattrs.test 2025-06-29 07:49:45.880992000 +0000 +@@ -10,7 +10,14 @@ + + $RSYNC -VV | grep '"xattrs": true' >/dev/null || test_skipped "Rsync is configured without xattr support" + ++CYGWIN=0 ++ + case "$HOST_OS" in ++cygwin*) ++ CYGWIN=1 ++esac ++ ++case "$HOST_OS" in + darwin*) + xset() { + xnam="$1" +@@ -80,6 +87,9 @@ + echo deep >"$fromdir/foo/file3" + echo normal >"$fromdir/file4" + echo deeper >"$fromdir/foo/bar/file5" ++if [ $CYGWIN -eq 0 ]; then ++ echo longxattrname >"$fromdir/file7" ++fi + + makepath "$chkdir/foo" + echo wow >"$chkdir/file1" +@@ -87,6 +97,10 @@ + + dirs='foo foo/bar' + files='file0 file1 file2 foo/file3 file4 foo/bar/file5' ++if [ $CYGWIN -eq 0 ] ++then ++ files="$files file7" ++fi + + uid_gid=`"$TOOLDIR/tls" "$fromdir/foo" | sed 's/^.* \([0-9][0-9]*\)\.\([0-9][0-9]*\) .*/\1:\2/'` + +@@ -125,6 +139,16 @@ + xset user.foo 'old foo' "$chkdir/foo/file3" + xset $RUSR.equal 'this long attribute should remain the same and not need to be transferred' "$chkdir/foo/file3" + ++if [ $CYGWIN -eq 0 ] ; then ++# Generate xattr names ++SEQ=`seq 1 200` ++xset user."`printf -- 'A%0.s' $SEQ`" 'first xattr' file7 ++xset user."`printf -- 'B%0.s' $SEQ`" 'second xattr' file7 ++xset user."`printf -- 'C%0.s' $SEQ`" 'third xattr' file7 ++xset user."`printf -- 'D%0.s' $SEQ`" 'another xattr' file7 ++xset user."`printf -- 'E%0.s' $SEQ`" 'final xattr' file7 ++fi ++ + case $0 in + *hlink*) + ln foo/bar/file5 foo/bar/file6 || test_skipped "Can't create hardlink" +@@ -234,6 +258,11 @@ + + cd "$todir" + xls file1 file2 | diff $diffopt "$scratchdir/xattrs.txt" - ++ ++cd "$fromdir" ++rm -rf "$todir" ++mkfifo fifo1 ++checktee "$RSYNC -avX --specials $XFILT $dashH --super . '$chkdir/'" "$fromdir" "$chkdir" + + # The script would have aborted on error, so getting here means we've won. + exit 0 diff --git a/net/rubygem-gitaly/Makefile b/net/rubygem-gitaly/Makefile index 0b4ff68cc031..b0dad500647d 100644 --- a/net/rubygem-gitaly/Makefile +++ b/net/rubygem-gitaly/Makefile @@ -1,5 +1,5 @@ PORTNAME= gitaly -PORTVERSION= 18.1.0 +PORTVERSION= 18.2.1 CATEGORIES= net rubygems MASTER_SITES= RG diff --git a/net/rubygem-gitaly/distinfo b/net/rubygem-gitaly/distinfo index ebbf3d3cdf11..7796ac38fe37 100644 --- a/net/rubygem-gitaly/distinfo +++ b/net/rubygem-gitaly/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750222113 -SHA256 (rubygem/gitaly-18.1.0.gem) = 80f8dd89005ad5788a7af07f101484c1b1dad423e90cc0405daaa85c27d1b7fc -SIZE (rubygem/gitaly-18.1.0.gem) = 53248 +TIMESTAMP = 1753336806 +SHA256 (rubygem/gitaly-18.2.1.gem) = 7409135d7dbc29ec8021e694420963e1da86dcc45252065fce813c19cb5c9bb3 +SIZE (rubygem/gitaly-18.2.1.gem) = 53248 diff --git a/net/rubygem-gitlab-kas-grpc/distinfo b/net/rubygem-gitlab-kas-grpc/distinfo index 68d91d8cd5df..3787efb94b44 100644 --- a/net/rubygem-gitlab-kas-grpc/distinfo +++ b/net/rubygem-gitlab-kas-grpc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1752120745 -SHA256 (rubygem/gitlab-kas-grpc-18.1.2.gem) = 4624830b22b0918570b73fd99a5a9464518b4715d0ef51a6343dc8d1b030bcd1 -SIZE (rubygem/gitlab-kas-grpc-18.1.2.gem) = 10752 +TIMESTAMP = 1753327162 +SHA256 (rubygem/gitlab-kas-grpc-18.2.1.gem) = 971519aaaf9b34097c9a919312361c9686997fab22e09cfb50d951ed5ab245e2 +SIZE (rubygem/gitlab-kas-grpc-18.2.1.gem) = 10752 diff --git a/net/rubygem-google-cloud-bigtable-admin-v2/Makefile b/net/rubygem-google-cloud-bigtable-admin-v2/Makefile index 2ebfa986ddf0..18d54e7441ea 100644 --- a/net/rubygem-google-cloud-bigtable-admin-v2/Makefile +++ b/net/rubygem-google-cloud-bigtable-admin-v2/Makefile @@ -1,5 +1,5 @@ PORTNAME= google-cloud-bigtable-admin-v2 -PORTVERSION= 1.11.0 +PORTVERSION= 1.11.1 CATEGORIES= net rubygems MASTER_SITES= RG diff --git a/net/rubygem-google-cloud-bigtable-admin-v2/distinfo b/net/rubygem-google-cloud-bigtable-admin-v2/distinfo index ffed67c79817..160df86b6110 100644 --- a/net/rubygem-google-cloud-bigtable-admin-v2/distinfo +++ b/net/rubygem-google-cloud-bigtable-admin-v2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750954426 -SHA256 (rubygem/google-cloud-bigtable-admin-v2-1.11.0.gem) = 025efa2eca188d08caeb5a3ef9fa71f32555f9d003e012780cb88cb4cdc9234a -SIZE (rubygem/google-cloud-bigtable-admin-v2-1.11.0.gem) = 136192 +TIMESTAMP = 1753265932 +SHA256 (rubygem/google-cloud-bigtable-admin-v2-1.11.1.gem) = 4e403a3000dc023bc5a0ef49182da8eeb6309438b7762e3546e6fb83d5164390 +SIZE (rubygem/google-cloud-bigtable-admin-v2-1.11.1.gem) = 136192 diff --git a/net/rubygem-google-cloud-bigtable-v2/Makefile b/net/rubygem-google-cloud-bigtable-v2/Makefile index da9a831ae6d0..42bf0605ff65 100644 --- a/net/rubygem-google-cloud-bigtable-v2/Makefile +++ b/net/rubygem-google-cloud-bigtable-v2/Makefile @@ -1,5 +1,5 @@ PORTNAME= google-cloud-bigtable-v2 -PORTVERSION= 1.7.0 +PORTVERSION= 1.8.0 CATEGORIES= net rubygems MASTER_SITES= RG diff --git a/net/rubygem-google-cloud-bigtable-v2/distinfo b/net/rubygem-google-cloud-bigtable-v2/distinfo index 1b676bc30a64..c3a443e39cae 100644 --- a/net/rubygem-google-cloud-bigtable-v2/distinfo +++ b/net/rubygem-google-cloud-bigtable-v2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1747716370 -SHA256 (rubygem/google-cloud-bigtable-v2-1.7.0.gem) = 2ee1a476a6284c192f489b1a188a4f392ac2939d647d23b9bbda66a11231fbf0 -SIZE (rubygem/google-cloud-bigtable-v2-1.7.0.gem) = 74752 +TIMESTAMP = 1753265934 +SHA256 (rubygem/google-cloud-bigtable-v2-1.8.0.gem) = c64b20f81bd8bed5ccd13bece558b51de9e320cad3ac2877ff838ec1437f0170 +SIZE (rubygem/google-cloud-bigtable-v2-1.8.0.gem) = 75264 diff --git a/net/rubygem-google-cloud-monitoring-v3/Makefile b/net/rubygem-google-cloud-monitoring-v3/Makefile index c6b7edcd3e73..761aeea4d3a9 100644 --- a/net/rubygem-google-cloud-monitoring-v3/Makefile +++ b/net/rubygem-google-cloud-monitoring-v3/Makefile @@ -1,5 +1,5 @@ PORTNAME= google-cloud-monitoring-v3 -PORTVERSION= 1.6.0 +PORTVERSION= 1.6.1 CATEGORIES= net rubygems MASTER_SITES= RG diff --git a/net/rubygem-google-cloud-monitoring-v3/distinfo b/net/rubygem-google-cloud-monitoring-v3/distinfo index 59034e18e2d1..64c51c6968a8 100644 --- a/net/rubygem-google-cloud-monitoring-v3/distinfo +++ b/net/rubygem-google-cloud-monitoring-v3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1747716380 -SHA256 (rubygem/google-cloud-monitoring-v3-1.6.0.gem) = f03055ac6612a0f3d7205fb3502144d402bd1e09055430abf34663c69c9e646c -SIZE (rubygem/google-cloud-monitoring-v3-1.6.0.gem) = 175616 +TIMESTAMP = 1753265936 +SHA256 (rubygem/google-cloud-monitoring-v3-1.6.1.gem) = b9cbb25b943e42d0de6bae2932ed879fc9e9f12caa9b8c329886e88ae68129c8 +SIZE (rubygem/google-cloud-monitoring-v3-1.6.1.gem) = 175616 diff --git a/net/rubygem-google-cloud-pubsub-v1/Makefile b/net/rubygem-google-cloud-pubsub-v1/Makefile index 0b3fff41b74f..99c08a6d67e5 100644 --- a/net/rubygem-google-cloud-pubsub-v1/Makefile +++ b/net/rubygem-google-cloud-pubsub-v1/Makefile @@ -1,5 +1,5 @@ PORTNAME= google-cloud-pubsub-v1 -PORTVERSION= 1.11.0 +PORTVERSION= 1.11.1 CATEGORIES= net rubygems MASTER_SITES= RG diff --git a/net/rubygem-google-cloud-pubsub-v1/distinfo b/net/rubygem-google-cloud-pubsub-v1/distinfo index cf5b4fcdb002..3befb8bf9e38 100644 --- a/net/rubygem-google-cloud-pubsub-v1/distinfo +++ b/net/rubygem-google-cloud-pubsub-v1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751622401 -SHA256 (rubygem/google-cloud-pubsub-v1-1.11.0.gem) = 7f9e050df1c9d357b0ca8d8b65094d38365ab29536849f20f371243a2f03b2be -SIZE (rubygem/google-cloud-pubsub-v1-1.11.0.gem) = 96256 +TIMESTAMP = 1753265938 +SHA256 (rubygem/google-cloud-pubsub-v1-1.11.1.gem) = bdeb55e26ae272963d0a2d917705647be7cfa72fe8aa2f36684e7ccb5da57d5a +SIZE (rubygem/google-cloud-pubsub-v1-1.11.1.gem) = 96256 diff --git a/net/rubygem-google-cloud-pubsub/Makefile b/net/rubygem-google-cloud-pubsub/Makefile index b616d5fc656e..f426c1cd3d88 100644 --- a/net/rubygem-google-cloud-pubsub/Makefile +++ b/net/rubygem-google-cloud-pubsub/Makefile @@ -1,5 +1,5 @@ PORTNAME= google-cloud-pubsub -PORTVERSION= 2.22.0 +PORTVERSION= 2.23.0 CATEGORIES= net rubygems MASTER_SITES= RG @@ -13,9 +13,9 @@ WWW= https://cloud.google.com/ruby/docs/reference/google-cloud-pubsub/latest/ \ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= rubygem-concurrent-ruby>=1.1<2:devel/rubygem-concurrent-ruby \ - rubygem-google-cloud-core>=1.5<2:net/rubygem-google-cloud-core \ - rubygem-google-cloud-pubsub-v1>=1.7<2:net/rubygem-google-cloud-pubsub-v1 \ +RUN_DEPENDS= rubygem-concurrent-ruby>=1.3<2:devel/rubygem-concurrent-ruby \ + rubygem-google-cloud-core>=1.8<2:net/rubygem-google-cloud-core \ + rubygem-google-cloud-pubsub-v1>=1.11<2:net/rubygem-google-cloud-pubsub-v1 \ rubygem-retriable>=3.1<4:devel/rubygem-retriable USES= gem diff --git a/net/rubygem-google-cloud-pubsub/distinfo b/net/rubygem-google-cloud-pubsub/distinfo index 8bbf7e6da99a..1aab9b49ea84 100644 --- a/net/rubygem-google-cloud-pubsub/distinfo +++ b/net/rubygem-google-cloud-pubsub/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1744289328 -SHA256 (rubygem/google-cloud-pubsub-2.22.0.gem) = 12b27c4d4253821de016c5d912f13fdbb589caaa89fcea5f2fee842a94391356 -SIZE (rubygem/google-cloud-pubsub-2.22.0.gem) = 92160 +TIMESTAMP = 1752266248 +SHA256 (rubygem/google-cloud-pubsub-2.23.0.gem) = 171d11c1cb15e1462f9dc22afead2c23eea6c77a067b52c4e7c7de3e7cd2fbc7 +SIZE (rubygem/google-cloud-pubsub-2.23.0.gem) = 92160 diff --git a/net/rubygem-google-cloud-spanner-v1/Makefile b/net/rubygem-google-cloud-spanner-v1/Makefile index 1327a525d9cc..eb0f6810308d 100644 --- a/net/rubygem-google-cloud-spanner-v1/Makefile +++ b/net/rubygem-google-cloud-spanner-v1/Makefile @@ -1,5 +1,5 @@ PORTNAME= google-cloud-spanner-v1 -PORTVERSION= 1.9.0 +PORTVERSION= 1.9.1 CATEGORIES= net rubygems MASTER_SITES= RG diff --git a/net/rubygem-google-cloud-spanner-v1/distinfo b/net/rubygem-google-cloud-spanner-v1/distinfo index b2d08b6e98de..a01cc868487a 100644 --- a/net/rubygem-google-cloud-spanner-v1/distinfo +++ b/net/rubygem-google-cloud-spanner-v1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1750188246 -SHA256 (rubygem/google-cloud-spanner-v1-1.9.0.gem) = f486e51408ad535dfcee11edba546bdb6ec0bb4aadf3e5cfae5ea798f97e906c -SIZE (rubygem/google-cloud-spanner-v1-1.9.0.gem) = 88576 +TIMESTAMP = 1753265940 +SHA256 (rubygem/google-cloud-spanner-v1-1.9.1.gem) = 46442b0baaa352892c1632ad24b0007a5bca1a080e2ffcaa7644ed98a108cf21 +SIZE (rubygem/google-cloud-spanner-v1-1.9.1.gem) = 88576 diff --git a/net/rubygem-omniauth-google-oauth2/Makefile b/net/rubygem-omniauth-google-oauth2/Makefile index 5db143c24cfa..6cafc65f66cc 100644 --- a/net/rubygem-omniauth-google-oauth2/Makefile +++ b/net/rubygem-omniauth-google-oauth2/Makefile @@ -1,5 +1,5 @@ PORTNAME= omniauth-google-oauth2 -PORTVERSION= 1.1.2 +PORTVERSION= 1.2.1 CATEGORIES= net rubygems MASTER_SITES= RG @@ -9,7 +9,7 @@ WWW= https://github.com/zquestz/omniauth-google-oauth2 LICENSE= MIT -RUN_DEPENDS= rubygem-jwt>=2.0:www/rubygem-jwt \ +RUN_DEPENDS= rubygem-jwt>=2.9.2:www/rubygem-jwt \ rubygem-oauth2>=2.0<3:net/rubygem-oauth2 \ rubygem-omniauth>=2.0<3:security/rubygem-omniauth \ rubygem-omniauth-oauth2>=1.8<2:net/rubygem-omniauth-oauth2 diff --git a/net/rubygem-omniauth-google-oauth2/distinfo b/net/rubygem-omniauth-google-oauth2/distinfo index 216a0047011a..61dbbe7b0d88 100644 --- a/net/rubygem-omniauth-google-oauth2/distinfo +++ b/net/rubygem-omniauth-google-oauth2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1711860639 -SHA256 (rubygem/omniauth-google-oauth2-1.1.2.gem) = cd205b9b60f4f2c4805f1c6b548eebd3e843d049e1029b7e0b90fb8d6e5f310c -SIZE (rubygem/omniauth-google-oauth2-1.1.2.gem) = 23552 +TIMESTAMP = 1752566800 +SHA256 (rubygem/omniauth-google-oauth2-1.2.1.gem) = c81c50b680fc3372d0c18147cdaf9764a67ace9e7e4e6afe7b869a01fa1aaedd +SIZE (rubygem/omniauth-google-oauth2-1.2.1.gem) = 24064 diff --git a/net/rubygem-opennebula/Makefile b/net/rubygem-opennebula/Makefile index 8a991c899d7d..893d9e5bd016 100644 --- a/net/rubygem-opennebula/Makefile +++ b/net/rubygem-opennebula/Makefile @@ -1,5 +1,5 @@ PORTNAME= opennebula -PORTVERSION= 6.8.3 +PORTVERSION= 7.0.0 CATEGORIES= net rubygems MASTER_SITES= RG @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-ipaddress>=0:net/rubygem-ipaddress \ rubygem-json>=0:devel/rubygem-json \ rubygem-nokogiri>=0:textproc/rubygem-nokogiri \ rubygem-parse-cron>=0:textproc/rubygem-parse-cron \ - rubygem-rbvmomi2>=0:net/rubygem-rbvmomi2 \ rubygem-treetop>=0:devel/rubygem-treetop \ rubygem-xmlrpc>=0:net/rubygem-xmlrpc diff --git a/net/rubygem-opennebula/distinfo b/net/rubygem-opennebula/distinfo index 9f221af8a26a..a2d0d2f91b32 100644 --- a/net/rubygem-opennebula/distinfo +++ b/net/rubygem-opennebula/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1715843766 -SHA256 (rubygem/opennebula-6.8.3.gem) = 642929196697ff0c4f1c15d659858e7f9e6bbf969af39f0b23c60c08e7695876 -SIZE (rubygem/opennebula-6.8.3.gem) = 224256 +TIMESTAMP = 1752266250 +SHA256 (rubygem/opennebula-7.0.0.gem) = f5cfc7277bea36c1b7f297f52aa812046471e97db4287f7b723b84e8aa97fe2c +SIZE (rubygem/opennebula-7.0.0.gem) = 114688 diff --git a/net/rustdesk-server/Makefile b/net/rustdesk-server/Makefile index 48c66c29316a..5bb6e5a2f87f 100644 --- a/net/rustdesk-server/Makefile +++ b/net/rustdesk-server/Makefile @@ -1,6 +1,6 @@ PORTNAME= rustdesk-server DISTVERSION= 1.1.14 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MAINTAINER= madpilot@FreeBSD.org diff --git a/net/rustdesk-server/files/rustdesk-hbbs.in b/net/rustdesk-server/files/rustdesk-hbbs.in index 44a66de1bf25..4d6d0ac38437 100644 --- a/net/rustdesk-server/files/rustdesk-hbbs.in +++ b/net/rustdesk-server/files/rustdesk-hbbs.in @@ -9,7 +9,7 @@ # # rustdesk_hbbs_enable (bool): Set to NO by default. # Set it to YES to enable rustdesk_hbbs. -# rustdesk_hbbs_ip (string): Set IP address/hostname to listen on +# rustdesk_hbbs_ip (string): Set IP address/hostname of relay server to use # Defaults to "127.0.0.1", please replace with your server hostname/IP. # rustdesk_hbbs_args (string): Set extra arguments to pass to rustdesk_hbbs # Default is "-r ${rustdesk_hbbs_ip} -k _". diff --git a/net/rustdesk-server/files/rustdesk-server.newsyslog b/net/rustdesk-server/files/rustdesk-server.newsyslog index 4c3f0f9f481f..54b68a8ee90b 100644 --- a/net/rustdesk-server/files/rustdesk-server.newsyslog +++ b/net/rustdesk-server/files/rustdesk-server.newsyslog @@ -3,5 +3,5 @@ # see newsyslog.conf(5) for details # # logfilename [owner:group] mode count size when flags -/var/log/rustdesk-hbbr.log rustdesk:rustdesk 640 5 100 * JC -/var/log/rustdesk-hbbs.log rustdesk:rustdesk 640 5 100 * JC +/var/log/rustdesk-hbbr.log rustdesk:rustdesk 660 5 1000 * JC +/var/log/rustdesk-hbbs.log rustdesk:rustdesk 660 5 1000 * JC diff --git a/net/rustdesk-server/files/rustdesk-server.syslog b/net/rustdesk-server/files/rustdesk-server.syslog index e9822abe6e19..563dbe37acfe 100644 --- a/net/rustdesk-server/files/rustdesk-server.syslog +++ b/net/rustdesk-server/files/rustdesk-server.syslog @@ -1,4 +1,4 @@ -!rustdesk-hbbr +!rustdesk_hbbr *.* /var/log/rustdesk-hbbr.log -!rustdesk-hbbs +!rustdesk_hbbs *.* /var/log/rustdesk-hbbs.log diff --git a/net/ryu/Makefile b/net/ryu/Makefile index 41cc822787aa..68291659bba3 100644 --- a/net/ryu/Makefile +++ b/net/ryu/Makefile @@ -1,7 +1,7 @@ PORTNAME= ryu PORTVERSION= 4.26 DISTVERSIONPREFIX= v -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}eventlet>0:net/py-eventlet@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}webob>=1.2:www/py-webob@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}paramiko>0:security/py-paramiko@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}netaddr>0:net/py-netaddr@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml5>0:devel/py-lxml5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}msgpack>=0.3.0:devel/py-msgpack@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.4.0:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ovs>0:devel/py-ovs@${PY_FLAVOR} \ diff --git a/net/samba416/Makefile b/net/samba416/Makefile index a45b7bc71ce4..42beeddbe2ac 100644 --- a/net/samba416/Makefile +++ b/net/samba416/Makefile @@ -1,6 +1,6 @@ PORTNAME= ${SAMBA4_BASENAME}416 PORTVERSION= ${SAMBA4_VERSION} -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -381,7 +381,7 @@ GPGME_CONFIGURE_WITH= gpgme GPGME_LIB_DEPENDS= libgpgme.so:security/gpgme GPGME_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gpg>=2.0.0:security/py-gpg@${PY_FLAVOR} -GSSAPI_BUILTIN_USES= bison +GSSAPI_BUILTIN_USES= bison gssapi GSSAPI_BUILTIN_BUILD_DEPENDS= p5-JSON>=4.0:converters/p5-JSON GSSAPI_MIT_CONFIGURE_ON= --with-system-mitkrb5 ${GSSAPIBASEDIR} \ diff --git a/net/samba419/Makefile b/net/samba419/Makefile index f79f2b7c5376..68aea9f072ad 100644 --- a/net/samba419/Makefile +++ b/net/samba419/Makefile @@ -1,6 +1,6 @@ PORTNAME= ${SAMBA4_BASENAME}419 PORTVERSION= ${SAMBA4_VERSION} -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -366,8 +366,15 @@ GPGME_CONFIGURE_WITH= gpgme GPGME_LIB_DEPENDS= libgpgme.so:security/gpgme GPGME_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gpg>=2.0.0:security/py-gpg@${PY_FLAVOR} +.if exists(/usr/libexec/krb5kdc) +GSSAPI_BUILTIN_USES= bison gssapi +GSSAPI_BUILTIN_BUILD_DEPENDS= p5-JSON>=4.0:converters/p5-JSON +GSSAPI_MIT_CONFIGURE_ON= --with-system-mitkrb5 ${GSSAPIBASEDIR} \ + --with-system-mitkdc=${GSSAPIBASEDIR}/libexec/krb5kdc +.else GSSAPI_BUILTIN_USES= bison GSSAPI_BUILTIN_BUILD_DEPENDS= p5-JSON>=4.0:converters/p5-JSON +.endif GSSAPI_MIT_CONFIGURE_ON= --with-system-mitkrb5 ${GSSAPIBASEDIR} \ --with-system-mitkdc=${GSSAPIBASEDIR}/sbin/krb5kdc \ diff --git a/net/samba420/Makefile b/net/samba420/Makefile index 42e525f6bb3f..68e4623196b2 100644 --- a/net/samba420/Makefile +++ b/net/samba420/Makefile @@ -1,6 +1,6 @@ PORTNAME= ${SAMBA4_BASENAME}420 PORTVERSION= ${SAMBA4_VERSION} -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -368,6 +368,12 @@ GPGME_CONFIGURE_WITH= gpgme GPGME_LIB_DEPENDS= libgpgme.so:security/gpgme GPGME_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gpg>=2.0.0:security/py-gpg@${PY_FLAVOR} +.if exists(/usr/libexec/krb5kdc) +GSSAPI_BUILTIN_USES= gssapi +GSSAPI_MIT_CONFIGURE_ON= --with-system-mitkrb5 ${GSSAPIBASEDIR} \ + --with-system-mitkdc=${GSSAPIBASEDIR}/libexec/krb5kdc +.endif + GSSAPI_BUILTIN_BUILD_DEPENDS= p5-JSON>=4.0:converters/p5-JSON GSSAPI_MIT_CONFIGURE_ON= --with-system-mitkrb5 ${GSSAPIBASEDIR} \ diff --git a/net/samba420/pkg-plist b/net/samba420/pkg-plist index 202c599cd024..7bec423fb4bc 100644 --- a/net/samba420/pkg-plist +++ b/net/samba420/pkg-plist @@ -449,6 +449,7 @@ libexec/samba/samba-dcerpcd %%MANPAGES%%%%SAMBA4_BUNDLED_LDB%%share/man/man1/samba-ldbmodify.1.gz %%MANPAGES%%%%SAMBA4_BUNDLED_LDB%%share/man/man1/samba-ldbrename.1.gz %%MANPAGES%%%%SAMBA4_BUNDLED_LDB%%share/man/man1/samba-ldbsearch.1.gz +%%MANPAGES%%%%SAMBA4_BUNDLED_TALLOC%%share/man/man3/samba-talloc.3.gz %%MANPAGES%%%%SAMBA4_BUNDLED_TDB%%share/man/man8/samba-tdbbackup.8.gz %%MANPAGES%%%%SAMBA4_BUNDLED_TDB%%share/man/man8/samba-tdbdump.8.gz %%MANPAGES%%%%SAMBA4_BUNDLED_TDB%%share/man/man8/samba-tdbrestore.8.gz @@ -456,7 +457,6 @@ libexec/samba/samba-dcerpcd %%SAMBA4_BUNDLED_TALLOC%%%%PYTHON3%%%%PYTHON_SITELIBDIR%%/talloc%%PYTHON_TAG%%.so %%SAMBA4_BUNDLED_TALLOC%%%%PYTHON3%%%%SAMBA4_LIBDIR%%/private/libpytalloc-util%%PYTHON_TAG%%-private-samba.so %%SAMBA4_BUNDLED_TALLOC%%%%SAMBA4_LIBDIR%%/private/libtalloc-private-samba.so -%%SAMBA4_BUNDLED_TALLOC%%share/man/man3/samba-talloc.3.gz %%SAMBA4_BUNDLED_TDB%%%%PYTHON3%%%%PYTHON_SITELIBDIR%%/_tdb_text.py %%SAMBA4_BUNDLED_TDB%%%%PYTHON3%%%%PYTHON_SITELIBDIR%%/tdb%%PYTHON_TAG%%.so %%SAMBA4_BUNDLED_TDB%%bin/tdbbackup diff --git a/net/scamper/Makefile b/net/scamper/Makefile index c69575a3165f..991ac83d05a0 100644 --- a/net/scamper/Makefile +++ b/net/scamper/Makefile @@ -1,5 +1,5 @@ PORTNAME= scamper -DISTVERSION= 20250227 +DISTVERSION= 20250729 CATEGORIES= net MASTER_SITES= https://www.caida.org/catalog/software/scamper/code/ DISTNAME= ${PORTNAME}-cvs-${DISTVERSION} @@ -20,12 +20,13 @@ SLAVE_PORT?= no .if ${SLAVE_PORT} == no -OPTIONS_DEFINE= HOIHO MINRTT UPTIME +OPTIONS_DEFINE= HOIHO MINRTT SUID_SCAMPER UPTIME OPTIONS_SUB= yes -HOIHO_DESC= Install sc_hoiho -MINRTT_DESC= Install sc_minrtt -UPTIME_DESC= Install sc_uptime +HOIHO_DESC= Install sc_hoiho +MINRTT_DESC= Install sc_minrtt +SUID_SCAMPER_DESC= Install scamper with setuid bit to allow non-root use +UPTIME_DESC= Install sc_uptime HOIHO_LIB_DEPENDS= libpcre2-8.so:devel/pcre2 HOIHO_USES= localbase:ldflags diff --git a/net/scamper/distinfo b/net/scamper/distinfo index cde51fb0f010..5272b240e947 100644 --- a/net/scamper/distinfo +++ b/net/scamper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1740683252 -SHA256 (scamper-cvs-20250227.tar.gz) = 26b641e0b3c9c45d5189136f469cbbf017e5d559790e375a50f08d7e8cb7713c -SIZE (scamper-cvs-20250227.tar.gz) = 3216225 +TIMESTAMP = 1753756989 +SHA256 (scamper-cvs-20250729.tar.gz) = 153c0580ab4bf96549d62d3c49e6faa82708e7da6f877dadb15c8cf89c8648dd +SIZE (scamper-cvs-20250729.tar.gz) = 3260686 diff --git a/net/scamper/pkg-plist b/net/scamper/pkg-plist index 6f64f8e163b9..0379467c76d4 100644 --- a/net/scamper/pkg-plist +++ b/net/scamper/pkg-plist @@ -1,4 +1,5 @@ -bin/scamper +%%SUID_SCAMPER%%@(,,4555) bin/scamper +%%NO_SUID_SCAMPER%%bin/scamper bin/sc_ally bin/sc_analysis_dump bin/sc_attach @@ -29,11 +30,11 @@ bin/sc_wartsfilter bin/sc_wartsfix lib/libscamperctrl.a lib/libscamperctrl.so.4 -lib/libscamperctrl.so.4.0.0 +lib/libscamperctrl.so.4.0.1 lib/libscamperctrl.so lib/libscamperfile.a -lib/libscamperfile.so.12 -lib/libscamperfile.so.12.0.0 +lib/libscamperfile.so.13 +lib/libscamperfile.so.13.2.1 lib/libscamperfile.so share/man/man1/sc_ally.1.gz share/man/man1/sc_analysis_dump.1.gz diff --git a/net/tayga/Makefile b/net/tayga/Makefile index 02a89ae1d446..8b2cb4e6c453 100644 --- a/net/tayga/Makefile +++ b/net/tayga/Makefile @@ -1,17 +1,28 @@ PORTNAME= tayga -DISTVERSION= 0.9.2 -PORTREVISION= 2 +DISTVERSION= 0.9.5 CATEGORIES= net -MASTER_SITES= http://www.litech.org/tayga/ + +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/commit/ +PATCHFILES= 49f64b0.patch:-p1 \ + 32cd0a7.patch:-p1 \ + b62e33f.patch:-p1 \ + 6c298f2.patch:-p1 MAINTAINER= franco@opnsense.org COMMENT= Userland stateless NAT64 daemon -WWW= http://www.litech.org/tayga/ +WWW= https://github.com/apalrd/tayga/ LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= gmake +USE_GITHUB= yes +GH_ACCOUNT= apalrd +MAKE_ENV= RELEASE=${DISTVERSION} +CFLAGS+= -DTAYGA_CONF_PATH='\"${PREFIX}/etc/tayga.conf\"' -USES= gmake tar:bzip2 -GNU_CONFIGURE= yes +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/tayga + ${INSTALL_DATA} ${WRKSRC}/tayga.conf.example ${STAGEDIR}${PREFIX}/etc .include <bsd.port.mk> diff --git a/net/tayga/distinfo b/net/tayga/distinfo index a86e674e658d..3a160994ac27 100644 --- a/net/tayga/distinfo +++ b/net/tayga/distinfo @@ -1,2 +1,11 @@ -SHA256 (tayga-0.9.2.tar.bz2) = 2b1f7927a9d2dcff9095aff3c271924b052ccfd2faca9588b277431a44f0009c -SIZE (tayga-0.9.2.tar.bz2) = 86022 +TIMESTAMP = 1750316784 +SHA256 (apalrd-tayga-0.9.5_GH0.tar.gz) = d44cc1158f60623d1bcd245f811957a162092c8f5e725489438de12e5500ae49 +SIZE (apalrd-tayga-0.9.5_GH0.tar.gz) = 143392 +SHA256 (49f64b0.patch) = 42fb7ddcfa84f6f9bf324246a21ca2701d9cf03058ccfbbff8311dbac355e915 +SIZE (49f64b0.patch) = 889 +SHA256 (32cd0a7.patch) = d4ad301fdbb588d2a5840e769600236dac911dcf5602cdc519fef26b696d2e0e +SIZE (32cd0a7.patch) = 4237 +SHA256 (b62e33f.patch) = 907b34695d250c4cec1246697677f8b7330c69d1123f7d7e9a5e9540c9298cb7 +SIZE (b62e33f.patch) = 1209 +SHA256 (6c298f2.patch) = 951542917809f794a0b692c9c15daedfdfdc0314639c22e07663e4c1344011a4 +SIZE (6c298f2.patch) = 654 diff --git a/net/tayga/files/patch-freebsd b/net/tayga/files/patch-freebsd deleted file mode 100644 index a0771c8b798e..000000000000 --- a/net/tayga/files/patch-freebsd +++ /dev/null @@ -1,250 +0,0 @@ ---- nat64.c.orig 2011-05-25 14:11:30 UTC -+++ nat64.c -@@ -94,8 +94,7 @@ static void host_send_icmp4(uint8_t tos, struct in_add - } __attribute__ ((__packed__)) header; - struct iovec iov[2]; - -- header.pi.flags = 0; -- header.pi.proto = htons(ETH_P_IP); -+ TUN_SET_PROTO(&header.pi, ETH_P_IP); - header.ip4.ver_ihl = 0x45; - header.ip4.tos = tos; - header.ip4.length = htons(sizeof(header.ip4) + sizeof(header.icmp) + -@@ -156,6 +155,7 @@ static void host_handle_icmp4(struct pkt *p) - } - } - -+ - static void xlate_header_4to6(struct pkt *p, struct ip6 *ip6, - int payload_length) - { -@@ -266,8 +266,7 @@ static void xlate_4to6_data(struct pkt *p) - if (dest) - dest->flags |= CACHE_F_SEEN_4TO6; - -- header.pi.flags = 0; -- header.pi.proto = htons(ETH_P_IPV6); -+ TUN_SET_PROTO(&header.pi, ETH_P_IPV6); - - if (no_frag_hdr) { - iov[0].iov_base = &header; -@@ -514,8 +513,7 @@ static void xlate_4to6_icmp_error(struct pkt *p) - sizeof(header.ip6_em)), - ip_checksum(p_em.data, p_em.data_len))); - -- header.pi.flags = 0; -- header.pi.proto = htons(ETH_P_IPV6); -+ TUN_SET_PROTO(&header.pi, ETH_P_IPV6); - - iov[0].iov_base = &header; - iov[0].iov_len = sizeof(header); -@@ -566,8 +564,7 @@ static void host_send_icmp6(uint8_t tc, struct in6_add - } __attribute__ ((__packed__)) header; - struct iovec iov[2]; - -- header.pi.flags = 0; -- header.pi.proto = htons(ETH_P_IPV6); -+ TUN_SET_PROTO(&header.pi, ETH_P_IPV6); - header.ip6.ver_tc_fl = htonl((0x6 << 28) | (tc << 20)); - header.ip6.payload_length = htons(sizeof(header.icmp) + data_len); - header.ip6.next_header = 58; -@@ -728,8 +725,7 @@ static void xlate_6to4_data(struct pkt *p) - if (dest) - dest->flags |= CACHE_F_SEEN_6TO4; - -- header.pi.flags = 0; -- header.pi.proto = htons(ETH_P_IP); -+ TUN_SET_PROTO(&header.pi, ETH_P_IP); - - header.ip4.cksum = ip_checksum(&header.ip4, sizeof(header.ip4)); - -@@ -932,8 +928,7 @@ static void xlate_6to4_icmp_error(struct pkt *p) - sizeof(header.ip4_em)), - ip_checksum(p_em.data, p_em.data_len)); - -- header.pi.flags = 0; -- header.pi.proto = htons(ETH_P_IP); -+ TUN_SET_PROTO(&header.pi, ETH_P_IP); - - iov[0].iov_base = &header; - iov[0].iov_len = sizeof(header); ---- tayga.c.orig 2011-05-25 14:11:30 UTC -+++ tayga.c -@@ -84,6 +84,7 @@ void read_random_bytes(void *d, int len) - } - } - -+#ifdef __Linux__ - static void tun_setup(int do_mktun, int do_rmtun) - { - struct ifreq ifr; -@@ -161,7 +162,114 @@ static void tun_setup(int do_mktun, int do_rmtun) - slog(LOG_INFO, "Using tun device %s with MTU %d\n", gcfg->tundev, - gcfg->mtu); - } -+#endif - -+#ifdef __FreeBSD__ -+static void tun_setup(int do_mktun, int do_rmtun) -+{ -+ struct ifreq ifr; -+ int fd, do_rename = 0, multi_af; -+ char devname[64]; -+ -+ if (strncmp(gcfg->tundev, "tun", 3)) -+ do_rename = 1; -+ -+ if ((do_mktun || do_rmtun) && do_rename) -+ { -+ slog(LOG_CRIT, -+ "tunnel interface name needs to match tun[0-9]+ pattern " -+ "for --mktun to work\n"); -+ exit(1); -+ } -+ -+ snprintf(devname, sizeof(devname), "/dev/%s", do_rename ? "tun" : gcfg->tundev); -+ -+ gcfg->tun_fd = open(devname, O_RDWR); -+ if (gcfg->tun_fd < 0) { -+ slog(LOG_CRIT, "Unable to open %s, aborting: %s\n", -+ devname, strerror(errno)); -+ exit(1); -+ } -+ -+ if (do_mktun) { -+ slog(LOG_NOTICE, "Created persistent tun device %s\n", -+ gcfg->tundev); -+ return; -+ } else if (do_rmtun) { -+ -+ /* Close socket before removal */ -+ close(gcfg->tun_fd); -+ -+ fd = socket(PF_INET, SOCK_DGRAM, 0); -+ if (fd < 0) { -+ slog(LOG_CRIT, "Unable to create control socket, aborting: %s\n", -+ strerror(errno)); -+ exit(1); -+ } -+ -+ memset(&ifr, 0, sizeof(ifr)); -+ strcpy(ifr.ifr_name, gcfg->tundev); -+ if (ioctl(fd, SIOCIFDESTROY, &ifr) < 0) { -+ slog(LOG_CRIT, "Unable to destroy interface %s, aborting: %s\n", -+ gcfg->tundev, strerror(errno)); -+ exit(1); -+ } -+ -+ close(fd); -+ -+ slog(LOG_NOTICE, "Removed persistent tun device %s\n", -+ gcfg->tundev); -+ return; -+ } -+ -+ /* Set multi-AF mode */ -+ multi_af = 1; -+ if (ioctl(gcfg->tun_fd, TUNSIFHEAD, &multi_af) < 0) { -+ slog(LOG_CRIT, "Unable to set multi-AF on %s, " -+ "aborting: %s\n", gcfg->tundev, -+ strerror(errno)); -+ exit(1); -+ } -+ -+ slog(LOG_CRIT, "Multi-AF mode set on %s\n", gcfg->tundev); -+ -+ set_nonblock(gcfg->tun_fd); -+ -+ fd = socket(PF_INET, SOCK_DGRAM, 0); -+ if (fd < 0) { -+ slog(LOG_CRIT, "Unable to create socket, aborting: %s\n", -+ strerror(errno)); -+ exit(1); -+ } -+ -+ if (do_rename) { -+ memset(&ifr, 0, sizeof(ifr)); -+ strcpy(ifr.ifr_name, fdevname(gcfg->tun_fd)); -+ ifr.ifr_data = gcfg->tundev; -+ if (ioctl(fd, SIOCSIFNAME, &ifr) < 0) { -+ slog(LOG_CRIT, "Unable to rename interface %s to %s, aborting: %s\n", -+ fdevname(gcfg->tun_fd), gcfg->tundev, -+ strerror(errno)); -+ exit(1); -+ } -+ } -+ -+ memset(&ifr, 0, sizeof(ifr)); -+ strcpy(ifr.ifr_name, gcfg->tundev); -+ if (ioctl(fd, SIOCGIFMTU, &ifr) < 0) { -+ slog(LOG_CRIT, "Unable to query MTU, aborting: %s\n", -+ strerror(errno)); -+ exit(1); -+ } -+ close(fd); -+ -+ gcfg->mtu = ifr.ifr_mtu; -+ -+ slog(LOG_INFO, "Using tun device %s with MTU %d\n", gcfg->tundev, -+ gcfg->mtu); -+} -+#endif -+ - static void signal_handler(int signal) - { - write(signalfds[1], &signal, sizeof(signal)); -@@ -214,7 +322,7 @@ static void read_from_tun(void) - memset(p, 0, sizeof(struct pkt)); - p->data = gcfg->recv_buf + sizeof(struct tun_pi); - p->data_len = ret - sizeof(struct tun_pi); -- switch (ntohs(pi->proto)) { -+ switch (TUN_GET_PROTO(pi)) { - case ETH_P_IP: - handle_ip4(p); - break; ---- tayga.h.orig 2011-05-25 14:11:30 UTC -+++ tayga.h -@@ -31,13 +31,43 @@ - #include <syslog.h> - #include <errno.h> - #include <time.h> -+#ifdef __Linux__ - #include <linux/if.h> - #include <linux/if_tun.h> - #include <linux/if_ether.h> -+#endif -+#ifdef __FreeBSD__ -+#include <net/if.h> -+#include <net/if_tun.h> -+#include <netinet/if_ether.h> -+#include <net/ethernet.h> -+#include <sys/uio.h> -+#endif - -+ - #include "list.h" - #include "config.h" - -+ -+#ifdef __Linux__ -+#define TUN_SET_PROTO(_pi, _af) { (_pi)->flags = 0; (_pi)->proto = htons(_af); } -+#define TUN_GET_PROTO(_pi) ntohs((_pi)->proto) -+#endif -+ -+#ifdef __FreeBSD__ -+#define s6_addr8 __u6_addr.__u6_addr8 -+#define s6_addr16 __u6_addr.__u6_addr16 -+#define s6_addr32 __u6_addr.__u6_addr32 -+ -+struct tun_pi { -+ int proto; -+}; -+ -+#define ETH_P_IP AF_INET -+#define ETH_P_IPV6 AF_INET6 -+#define TUN_SET_PROTO(_pi, _af) { (_pi)->proto = htonl(_af); } -+#define TUN_GET_PROTO(_pi) ntohl((_pi)->proto) -+#endif - - /* Configuration knobs */ - diff --git a/net/toxiproxy-cli/Makefile b/net/toxiproxy-cli/Makefile new file mode 100644 index 000000000000..d25545da1342 --- /dev/null +++ b/net/toxiproxy-cli/Makefile @@ -0,0 +1,11 @@ +PORTNAME= toxiproxy-cli + +COMMENT= TCP proxy to simulate network and system conditions (client) + +GO_TARGET= ./cmd/cli:${PORTNAME} + +MASTERDIR= ${.CURDIR}/../toxiproxy-server + +DISTINFO_FILE= ${.CURDIR}/distinfo + +.include "${MASTERDIR}/Makefile" diff --git a/net/toxiproxy-cli/distinfo b/net/toxiproxy-cli/distinfo new file mode 100644 index 000000000000..9447408399e8 --- /dev/null +++ b/net/toxiproxy-cli/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1752818445 +SHA256 (go/net_toxiproxy-cli/shopify-toxiproxy-v2.12.0_GH0/go.mod) = efe7eee8e60cbef1c8283f1d9becf20e6abf051716e8cd1ed83e88d65d581825 +SIZE (go/net_toxiproxy-cli/shopify-toxiproxy-v2.12.0_GH0/go.mod) = 1079 +SHA256 (go/net_toxiproxy-cli/shopify-toxiproxy-v2.12.0_GH0/shopify-toxiproxy-v2.12.0_GH0.tar.gz) = 9332a884c559fbcf96cbe2c1b46312eb1e1b7191eb9a73a3d3b857d4e9789eb1 +SIZE (go/net_toxiproxy-cli/shopify-toxiproxy-v2.12.0_GH0/shopify-toxiproxy-v2.12.0_GH0.tar.gz) = 73037 diff --git a/net/toxiproxy-server/Makefile b/net/toxiproxy-server/Makefile new file mode 100644 index 000000000000..bc056daa6cb4 --- /dev/null +++ b/net/toxiproxy-server/Makefile @@ -0,0 +1,30 @@ +PORTNAME?= toxiproxy-server +DISTVERSIONPREFIX= v +DISTVERSION= 2.12.0 +CATEGORIES= net + +MAINTAINER= dtxdf@FreeBSD.org +COMMENT?= TCP proxy to simulate network and system conditions (server) +WWW= https://github.com/shopify/toxiproxy + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go:modules +USE_GITHUB= yes +GH_ACCOUNT= shopify +GH_PROJECT= toxiproxy + +.if ${PORTNAME} == toxiproxy-server +USE_RC_SUBR= ${PORTNAME} +.endif + +GO_MOD_DIST= github +GO_MODULE= github.com/shopify/toxiproxy +GO_TARGET?= ./cmd/server:${PORTNAME} +GO_BUILDFLAGS= -ldflags "\ + -X 'github.com/Shopify/toxiproxy/v2.Version=${DISTVERSION}'" + +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.mk> diff --git a/net/toxiproxy-server/distinfo b/net/toxiproxy-server/distinfo new file mode 100644 index 000000000000..8e3218b983a7 --- /dev/null +++ b/net/toxiproxy-server/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1752818561 +SHA256 (go/net_toxiproxy-server/shopify-toxiproxy-v2.12.0_GH0/go.mod) = efe7eee8e60cbef1c8283f1d9becf20e6abf051716e8cd1ed83e88d65d581825 +SIZE (go/net_toxiproxy-server/shopify-toxiproxy-v2.12.0_GH0/go.mod) = 1079 +SHA256 (go/net_toxiproxy-server/shopify-toxiproxy-v2.12.0_GH0/shopify-toxiproxy-v2.12.0_GH0.tar.gz) = 9332a884c559fbcf96cbe2c1b46312eb1e1b7191eb9a73a3d3b857d4e9789eb1 +SIZE (go/net_toxiproxy-server/shopify-toxiproxy-v2.12.0_GH0/shopify-toxiproxy-v2.12.0_GH0.tar.gz) = 73037 diff --git a/net/toxiproxy-server/files/toxiproxy-server.in b/net/toxiproxy-server/files/toxiproxy-server.in new file mode 100644 index 000000000000..f503424c5934 --- /dev/null +++ b/net/toxiproxy-server/files/toxiproxy-server.in @@ -0,0 +1,34 @@ +#!/bin/sh + +# PROVIDE: toxiproxy_server +# REQUIRE: LOGIN +# KEYWORD: shutdown +# +# Configuration settings for Toxiproxy in /etc/rc.conf +# +# toxiproxy_server_enable (bool): Enable Toxiproxy. +# toxiproxy_server_log (str): Log output. +# toxiproxy_server_runas (str): User to run Toxiproxy as. +# toxiproxy_server_config (str): Toxiproxy configuration file. +# toxiproxy_server_args (str): Arguments used by Toxiproxy. +# + +. /etc/rc.subr + +name="toxiproxy_server" +desc="TCP proxy to simulate network and system conditions" +rcvar="${name}_enable" + +load_rc_config $name + +: ${toxiproxy_server_enable:="NO"} +: ${toxiproxy_server_config:="%%PREFIX%%/etc/toxiproxy.json"} +: ${toxiproxy_server_log:="/var/log/toxiproxy-server.log"} +: ${toxiproxy_server_runas:="nobody"} + +pidfile="/var/run/${name}.pid" +procname="%%LOCALBASE%%/bin/toxiproxy-server" +command="/usr/sbin/daemon" +command_args="-u '${toxiproxy_server_runas}' -p '${pidfile}' -t '${desc}' -o '${toxiproxy_server_log}' '${procname}' -config '${toxiproxy_server_config}' ${toxiproxy_server_args}" + +run_rc_command "$1" diff --git a/net/toxiproxy-server/pkg-descr b/net/toxiproxy-server/pkg-descr new file mode 100644 index 000000000000..e5aab1ff5358 --- /dev/null +++ b/net/toxiproxy-server/pkg-descr @@ -0,0 +1,6 @@ +Toxiproxy is a framework for simulating network conditions. It's +made specifically to work in testing, CI and development environments, +supporting deterministic tampering with connections, but with support +for randomized chaos and customization. Toxiproxy is the tool you +need to prove with tests that your application doesn't have single +points of failure. diff --git a/net/traefik/Makefile b/net/traefik/Makefile index 9de9b6462a41..24ca606086f7 100644 --- a/net/traefik/Makefile +++ b/net/traefik/Makefile @@ -1,5 +1,5 @@ PORTNAME= traefik -PORTVERSION= 3.4.4 +PORTVERSION= 3.4.5 CATEGORIES= net MASTER_SITES= LOCAL/riggs/${PORTNAME} diff --git a/net/traefik/distinfo b/net/traefik/distinfo index 6ff67ab5bb84..2aa96457bfc1 100644 --- a/net/traefik/distinfo +++ b/net/traefik/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1752271247 -SHA256 (traefik-3.4.4.tar.xz) = 8722c49ad2b443ac17fe1faefb980a3d3f0e104f4eca3815985f0cfac1279c77 -SIZE (traefik-3.4.4.tar.xz) = 28819044 +TIMESTAMP = 1753538104 +SHA256 (traefik-3.4.5.tar.xz) = 3754c36ac0cb29879407a9b80399a1cb4effd95627ef7fb76f9c7e83007094f5 +SIZE (traefik-3.4.5.tar.xz) = 28590920 diff --git a/net/tsclient/Makefile b/net/tsclient/Makefile index 51246c41f470..81a239d0aab2 100644 --- a/net/tsclient/Makefile +++ b/net/tsclient/Makefile @@ -1,6 +1,6 @@ PORTNAME= tsclient PORTVERSION= 0.150 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= net gnome MASTER_SITES= SF @@ -10,7 +10,7 @@ WWW= https://sourceforge.net/projects/tsclient/ RUN_DEPENDS= rdesktop:net/rdesktop -USES= gettext gmake gnome libtool pathfix pkgconfig +USES= gettext gmake gnome libtool pkgconfig USE_GNOME= gtk20 intltool GNU_CONFIGURE= yes GNU_CONFIGURE_MANPREFIX=${PREFIX}/share @@ -24,26 +24,18 @@ OPTIONS_DEFINE= TIGHTVNC XNEST DOCS TIGHTVNC_DESC= vncviewer support XNEST_DESC= X via Xnest support -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MTIGHTVNC} -RUN_DEPENDS+= vncviewer:net/tightvnc -.endif - -.if ${PORT_OPTIONS:MXNEST} -RUN_DEPENDS+= Xnest:x11-servers/xorg-server@xnest -.endif - -.include <bsd.port.pre.mk> +TIGHTVNC_RUN_DEPENDS= vncviewer:net/tightvnc +XNEST_RUN_DEPENDS= Xnest:x11-servers/xorg-server@xnest post-install: @${LN} -sf tsclient/tsclient.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/tsclient.png -.if ${PORT_OPTIONS:MDOCS} + @${RM} -r ${STAGEDIR}${PREFIX}/lib/bonobo + +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} . for doc in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} . endfor -.endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/net/tsclient/pkg-plist b/net/tsclient/pkg-plist index 7806152d11a3..16870db68257 100644 --- a/net/tsclient/pkg-plist +++ b/net/tsclient/pkg-plist @@ -1,5 +1,4 @@ bin/tsclient -libdata/bonobo/servers/GNOME_TSClientApplet.server libexec/tsclient-applet share/man/man1/tsclient.1.gz share/application-registry/tsclient.applications diff --git a/net/v2ray/Makefile b/net/v2ray/Makefile index 4355b5a97e13..6fa6d350525b 100644 --- a/net/v2ray/Makefile +++ b/net/v2ray/Makefile @@ -1,7 +1,6 @@ PORTNAME= v2ray DISTVERSIONPREFIX= v -DISTVERSION= 5.30.0 -PORTREVISION= 3 +DISTVERSION= 5.35.0 CATEGORIES= net MAINTAINER= shen.elf@gmail.com @@ -12,7 +11,7 @@ WWW= https://www.v2fly.org/ \ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cpe go:1.24,modules +USES= cpe go:modules CPE_VENDOR= v2fly CPE_PRODUCT= v2ray-core USE_GITHUB= yes @@ -20,22 +19,24 @@ GH_ACCOUNT= v2fly GH_PROJECT= v2ray-core USE_RC_SUBR= v2ray +GO_MOD_DIST= github # https://github.com/v2fly/v2ray-core/issues/3187 GO_MODULE= github.com/v2fly/v2ray-core GO_TARGET= ./main:v2ray GO_TESTFLAGS= -p 1 -tags json -timeout 30m -SUB_LIST= USER="${USERS}" \ - GROUP="${GROUPS}" +SUB_LIST= GROUP="${GROUPS}" \ + USER="${USERS}" USERS= v2ray GROUPS= v2ray -GO_MOD_DIST= github # https://github.com/v2fly/v2ray-core/issues/3187 - post-install: ${MKDIR} ${STAGEDIR}${ETCDIR} - ${INSTALL_DATA} ${WRKSRC}/release/config/config.json ${STAGEDIR}${ETCDIR}/config.json.sample - ${INSTALL_DATA} ${WRKSRC}/release/config/vpoint_socks_vmess.json ${STAGEDIR}${ETCDIR}/vpoint_socks_vmess.json - ${INSTALL_DATA} ${WRKSRC}/release/config/vpoint_vmess_freedom.json ${STAGEDIR}${ETCDIR}/vpoint_vmess_freedom.json + ${INSTALL_DATA} ${WRKSRC}/release/config/config.json \ + ${STAGEDIR}${ETCDIR}/config.json.sample + ${INSTALL_DATA} ${WRKSRC}/release/config/vpoint_socks_vmess.json \ + ${STAGEDIR}${ETCDIR}/vpoint_socks_vmess.json + ${INSTALL_DATA} ${WRKSRC}/release/config/vpoint_vmess_freedom.json \ + ${STAGEDIR}${ETCDIR}/vpoint_vmess_freedom.json .include <bsd.port.mk> diff --git a/net/v2ray/distinfo b/net/v2ray/distinfo index 62bda692151a..d01918579bbf 100644 --- a/net/v2ray/distinfo +++ b/net/v2ray/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1744931376 -SHA256 (go/net_v2ray/v2fly-v2ray-core-v5.30.0_GH0/go.mod) = 796753e0435d7c6a543376baa3108fb8f5cebe27ea7f58f45b9ccaf40d57399f -SIZE (go/net_v2ray/v2fly-v2ray-core-v5.30.0_GH0/go.mod) = 4300 -SHA256 (go/net_v2ray/v2fly-v2ray-core-v5.30.0_GH0/v2fly-v2ray-core-v5.30.0_GH0.tar.gz) = 8b10fc864289cb73e328d07b6d25b5e064d95e13fc5621ad4b5deb10137482b2 -SIZE (go/net_v2ray/v2fly-v2ray-core-v5.30.0_GH0/v2fly-v2ray-core-v5.30.0_GH0.tar.gz) = 1127235 +TIMESTAMP = 1751663392 +SHA256 (go/net_v2ray/v2fly-v2ray-core-v5.35.0_GH0/go.mod) = b862d4b218d2eeebed1c76f7c5632ac86fd734d2c811305bd1058ded8dfc49e6 +SIZE (go/net_v2ray/v2fly-v2ray-core-v5.35.0_GH0/go.mod) = 4298 +SHA256 (go/net_v2ray/v2fly-v2ray-core-v5.35.0_GH0/v2fly-v2ray-core-v5.35.0_GH0.tar.gz) = caf1e4a8bbed61748ae21c88bf6d158a9921513b8fa69fc0d7265ef371e1205e +SIZE (go/net_v2ray/v2fly-v2ray-core-v5.35.0_GH0/v2fly-v2ray-core-v5.35.0_GH0.tar.gz) = 1126530 diff --git a/net/wangle/Makefile b/net/wangle/Makefile index ed0560601db0..93220e0282cc 100644 --- a/net/wangle/Makefile +++ b/net/wangle/Makefile @@ -1,6 +1,6 @@ PORTNAME= wangle DISTVERSIONPREFIX= v -DISTVERSION= 2025.07.07.00 +DISTVERSION= 2025.07.28.00 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/wangle/distinfo b/net/wangle/distinfo index ead8f989c48e..bfb16903268d 100644 --- a/net/wangle/distinfo +++ b/net/wangle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1752053892 -SHA256 (facebook-wangle-v2025.07.07.00_GH0.tar.gz) = dcda76ebe3ee6d7857ee0541942d09c49438ad14bff2e7d8c98c41d74f1e927c -SIZE (facebook-wangle-v2025.07.07.00_GH0.tar.gz) = 368593 +TIMESTAMP = 1753765029 +SHA256 (facebook-wangle-v2025.07.28.00_GH0.tar.gz) = 9e18b2edcb4051c3acfdf153c79440b9aa23e5cf1fd277811b35f227184a6139 +SIZE (facebook-wangle-v2025.07.28.00_GH0.tar.gz) = 369173 diff --git a/net/wireguard-go/Makefile b/net/wireguard-go/Makefile index dfab1ae8cce0..dedd5c072c79 100644 --- a/net/wireguard-go/Makefile +++ b/net/wireguard-go/Makefile @@ -1,6 +1,5 @@ PORTNAME= wireguard-go -PORTVERSION= 0.0.20230223 -PORTREVISION= 16 +PORTVERSION= 0.0.20250522 PORTEPOCH= 1 CATEGORIES= net net-vpn MASTER_SITES= https://git.zx2c4.com/wireguard-go/snapshot/ @@ -13,18 +12,9 @@ WWW= https://www.wireguard.com LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= gmake go:modules,no_targets tar:xz - -USE_GITHUB= nodefault -GH_TUPLE= \ - golang:crypto:3147a52a75dd:golang_crypto/vendor/golang.org/x/crypto \ - golang:net:v0.8.0:golang_net/vendor/golang.org/x/net \ - golang:sys:v0.6.0:golang_sys/vendor/golang.org/x/sys \ - golang:time:555d28b269f0:golang_time/vendor/golang.org/x/time \ - google:btree:v1.0.1:google_btree/vendor/github.com/google/btree \ - google:gvisor:703fd9b7fbc0:google_gvisor/vendor/gvisor.dev/gvisor - -MAKE_ENV+= ${GO_ENV} GOFLAGS="${GO_BUILDFLAGS}" +USES= go:modules tar:xz +GO_MODULE= golang.zx2c4.com/wireguard +GO_MOD_DIST= LOCAL/decke/wireguard-go/${PORTVERSION}/ PLIST_FILES= bin/${PORTNAME} diff --git a/net/wireguard-go/distinfo b/net/wireguard-go/distinfo index e76e4fea264b..9612771966e4 100644 --- a/net/wireguard-go/distinfo +++ b/net/wireguard-go/distinfo @@ -1,15 +1,5 @@ -TIMESTAMP = 1689519558 -SHA256 (wireguard-go-0.0.20230223.tar.xz) = ed3694e808d96720e79e17ae396f89f7c2024da07f3449ff0af8fbc6dbfa7f6a -SIZE (wireguard-go-0.0.20230223.tar.xz) = 77552 -SHA256 (golang-crypto-3147a52a75dd_GH0.tar.gz) = 25542a72981bc3c33fca702a21feae4d6242298255354cfa2359d6195ff8656a -SIZE (golang-crypto-3147a52a75dd_GH0.tar.gz) = 1630551 -SHA256 (golang-net-v0.8.0_GH0.tar.gz) = f9e2128a2d6861db0595428c7cce62fe5a131348a6c7651b6efa8b03d0b10831 -SIZE (golang-net-v0.8.0_GH0.tar.gz) = 1244302 -SHA256 (golang-sys-v0.6.0_GH0.tar.gz) = b4f6d17c7a128f76169964b437cb66b3f2dbf9a33361928ec19dfecf7b03fc54 -SIZE (golang-sys-v0.6.0_GH0.tar.gz) = 1434234 -SHA256 (golang-time-555d28b269f0_GH0.tar.gz) = 8ce368da65025dad4e4ed302a5835e2b3579f3a111721f9b275803519a5d10b3 -SIZE (golang-time-555d28b269f0_GH0.tar.gz) = 9577 -SHA256 (google-btree-v1.0.1_GH0.tar.gz) = 240723cff7c3c28e8444d45e500e65b2c25df519273260f248786e1a7367a654 -SIZE (google-btree-v1.0.1_GH0.tar.gz) = 15381 -SHA256 (google-gvisor-703fd9b7fbc0_GH0.tar.gz) = 8b720680e2295c763f93e184ccb6a0984a189d044dbbd40dc7244f1b84219b3e -SIZE (google-gvisor-703fd9b7fbc0_GH0.tar.gz) = 2644309 +TIMESTAMP = 1753534613 +SHA256 (go/net_wireguard-go/wireguard-go-0.0.20250522/wireguard-go-0.0.20250522.tar.xz) = c698fb9fd09d48e8cf5c1eee3e5f0170f1916a7eed09ba025aa025cd5e721a20 +SIZE (go/net_wireguard-go/wireguard-go-0.0.20250522/wireguard-go-0.0.20250522.tar.xz) = 96740 +SHA256 (go/net_wireguard-go/wireguard-go-0.0.20250522/go.mod) = 87e5574c17f1c8d3badd9195d933237c289c07b5813f4e60ceae36c7b270e288 +SIZE (go/net_wireguard-go/wireguard-go-0.0.20250522/go.mod) = 348 diff --git a/net/wireshark/Makefile b/net/wireshark/Makefile index 13fee48008cf..e01de4ec435d 100644 --- a/net/wireshark/Makefile +++ b/net/wireshark/Makefile @@ -1,6 +1,5 @@ PORTNAME= wireshark -DISTVERSION= 4.4.7 -PORTREVISION= 1 +DISTVERSION= 4.4.8 CATEGORIES= net MASTER_SITES= https://1.na.dl.wireshark.org/src/ \ https://1.eu.dl.wireshark.org/src/ \ diff --git a/net/wireshark/distinfo b/net/wireshark/distinfo index 2dffe6ccf42a..1012e5bafab1 100644 --- a/net/wireshark/distinfo +++ b/net/wireshark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749230104 -SHA256 (wireshark-4.4.7.tar.xz) = 5644143fed6363fa6c0cf58c2a6fe9ba0922efaea8f981c7228260bf46f1494b -SIZE (wireshark-4.4.7.tar.xz) = 46812644 +TIMESTAMP = 1752738718 +SHA256 (wireshark-4.4.8.tar.xz) = dd648c5c5994843205cd73e57d6673f6f4e12718e1c558c674cb8bdafeacde47 +SIZE (wireshark-4.4.8.tar.xz) = 46826268 diff --git a/net/wireshark/pkg-plist b/net/wireshark/pkg-plist index 08c4a378b2c5..48e72a8b5b97 100644 --- a/net/wireshark/pkg-plist +++ b/net/wireshark/pkg-plist @@ -682,10 +682,10 @@ bin/tshark %%DEVELOPMENT%%lib/cmake/wireshark/WiresharkTargets.cmake lib/libwireshark.so lib/libwireshark.so.18 -lib/libwireshark.so.18.0.7 +lib/libwireshark.so.18.0.8 lib/libwiretap.so lib/libwiretap.so.15 -lib/libwiretap.so.15.0.7 +lib/libwiretap.so.15.0.8 lib/libwsutil.so lib/libwsutil.so.16 lib/libwsutil.so.16.0.0 |