diff options
Diffstat (limited to 'net')
90 files changed, 1724 insertions, 185 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/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/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..339c9988be38 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.10 CATEGORIES= net MAINTAINER= eduardo@FreeBSD.org diff --git a/net/eternalterminal/distinfo b/net/eternalterminal/distinfo index 4cbf6c2fe83e..fae74dc8e8ae 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 = 1753124983 +SHA256 (MisterTea-EternalTerminal-et-v6.2.10_GH0.tar.gz) = 5e2f46383b324baca0450d0190b386868d5666b346d6bf1d0f0f8d8c8ccf5a22 +SIZE (MisterTea-EternalTerminal-et-v6.2.10_GH0.tar.gz) = 28960041 diff --git a/net/fb303/Makefile b/net/fb303/Makefile index c3f035832cd3..a7e59281e4a0 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.21.00 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/fb303/distinfo b/net/fb303/distinfo index b0e2cc1e9595..14007b235e0d 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 = 1753158796 +SHA256 (facebook-fb303-v2025.07.21.00_GH0.tar.gz) = f25d9720c145a22aba5089a72ad7a4a0be7facf34a7b39a5149929f94ecaff0d +SIZE (facebook-fb303-v2025.07.21.00_GH0.tar.gz) = 265571 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/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..9edabb89baeb 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 = 1752677035 +SHA256 (go/net_gitlab-agent/gitlab-agent-v18.2.0/v18.2.0.mod) = 4772214d0f7667ed5a2f465d728888c258c09e89afb5e4b0e6e5a087b77057fd +SIZE (go/net_gitlab-agent/gitlab-agent-v18.2.0/v18.2.0.mod) = 9809 +SHA256 (go/net_gitlab-agent/gitlab-agent-v18.2.0/v18.2.0.zip) = 23e76612b7c0694ef093e71826bb94386f7f18531f9ffb4122a4e823bb48af94 +SIZE (go/net_gitlab-agent/gitlab-agent-v18.2.0/v18.2.0.zip) = 1707851 diff --git a/net/google-cloud-sdk/Makefile b/net/google-cloud-sdk/Makefile index 5bc90613502a..0b9466ea5ba4 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= 530.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..7c8d407def7b 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 = 1752672610 +SHA256 (google-cloud-sdk-530.0.0-linux-x86_64.tar.gz) = 358685e486270aed7b32ca19718c8a06aa353e70b8a863d16150db80954bd6a6 +SIZE (google-cloud-sdk-530.0.0-linux-x86_64.tar.gz) = 149731193 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/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/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..272683a4fb5f 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.21.00 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/mvfst/distinfo b/net/mvfst/distinfo index 21b7e8d92026..d84aff0dcfa6 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 = 1753158800 +SHA256 (facebook-mvfst-v2025.07.21.00_GH0.tar.gz) = f5e8567871aaf20ca526441bb3cf9fc93b636bc38377e60cdd7d800399e24389 +SIZE (facebook-mvfst-v2025.07.21.00_GH0.tar.gz) = 2099919 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/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/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-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-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-pyzmq/Makefile b/net/py-pyzmq/Makefile index bfd0de970bfe..5aa7c40dec9d 100644 --- a/net/py-pyzmq/Makefile +++ b/net/py-pyzmq/Makefile @@ -1,6 +1,6 @@ PORTNAME= pyzmq -DISTVERSION= 25.0.2 -PORTREVISION= 2 +DISTVERSION= 27.0.0 +PORTREVISION= 0 CATEGORIES= net devel MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -9,16 +9,17 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Python bindings for ZeroMQ WWW= https://github.com/zeromq/pyzmq -LICENSE= BSD3CLAUSE LGPL3 -LICENSE_COMB= multi -LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/LICENSE.BSD -LICENSE_FILE_LGPL3= ${WRKSRC}/LICENSE.LESSER +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.md -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>0:devel/py-packaging@${PY_FLAVOR} +BUILD_DEPENDS= cmake:devel/cmake-core \ + ninja:devel/ninja \ + ${PYTHON_PKGNAMEPREFIX}scikit-build-core>=0.1.5:devel/py-scikit-build-core@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}packaging>0:devel/py-packaging@${PY_FLAVOR} LIB_DEPENDS= libzmq.so:net/libzmq4 USES= python -USE_PYTHON= distutils autoplist cython pytest # 3 tests fail, see https://github.com/zeromq/pyzmq/issues/1802 +USE_PYTHON= autoplist cython3 pep517 pytest PYDISTUTILS_CONFIGUREARGS= --zmq=${LOCALBASE} @@ -28,6 +29,5 @@ do-test: post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/zmq/backend/cython/*.so - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/zmq/devices/*.so .include <bsd.port.mk> diff --git a/net/py-pyzmq/distinfo b/net/py-pyzmq/distinfo index 7ef6eb29f9d0..893c4006b3b8 100644 --- a/net/py-pyzmq/distinfo +++ b/net/py-pyzmq/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1680025029 -SHA256 (pyzmq-25.0.2.tar.gz) = 6b8c1bbb70e868dc88801aa532cae6bd4e3b5233784692b786f17ad2962e5149 -SIZE (pyzmq-25.0.2.tar.gz) = 1209578 +TIMESTAMP = 1751765229 +SHA256 (pyzmq-27.0.0.tar.gz) = b1f08eeb9ce1510e6939b6e5dcd46a17765e2333daae78ecf4606808442e52cf +SIZE (pyzmq-27.0.0.tar.gz) = 280478 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 a13b89459fa7..5ac95569b594 100644 --- a/net/redpanda-connect/Makefile +++ b/net/redpanda-connect/Makefile @@ -1,6 +1,6 @@ PORTNAME= connect DISTVERSIONPREFIX= v -DISTVERSION= 4.60.0 +DISTVERSION= 4.61.0 CATEGORIES= net PKGNAMEPREFIX= redpanda- diff --git a/net/redpanda-connect/distinfo b/net/redpanda-connect/distinfo index eeddaa49a4da..3affba249741 100644 --- a/net/redpanda-connect/distinfo +++ b/net/redpanda-connect/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1752218291 -SHA256 (go/net_redpanda-connect/connect-v4.60.0/v4.60.0.mod) = 1b37bd61125b3b38b710b9c2819f8daf6fadbed10ac18f22d2840e237b37f42f -SIZE (go/net_redpanda-connect/connect-v4.60.0/v4.60.0.mod) = 24329 -SHA256 (go/net_redpanda-connect/connect-v4.60.0/v4.60.0.zip) = 214f243daf9f9af94f58749aac84d09cf514000c2b2af8edde1da21d00571cf5 -SIZE (go/net_redpanda-connect/connect-v4.60.0/v4.60.0.zip) = 2813442 +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/rubygem-gitlab-kas-grpc/distinfo b/net/rubygem-gitlab-kas-grpc/distinfo index 68d91d8cd5df..e3643c1df22c 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 = 1752677055 +SHA256 (rubygem/gitlab-kas-grpc-18.2.0.gem) = c14314fdcac6ef12794f6293979d0e2fcbcb01bb55fb04ee37e10d4337a99b6e +SIZE (rubygem/gitlab-kas-grpc-18.2.0.gem) = 10752 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-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/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/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/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/wangle/Makefile b/net/wangle/Makefile index ed0560601db0..b995019e1469 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.21.00 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org diff --git a/net/wangle/distinfo b/net/wangle/distinfo index ead8f989c48e..5ce2b67c6f0e 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 = 1753158782 +SHA256 (facebook-wangle-v2025.07.21.00_GH0.tar.gz) = c7407cf9e33c00d4cdd1fa96452638688c50402b6150eb7e42c9a5010eb78123 +SIZE (facebook-wangle-v2025.07.21.00_GH0.tar.gz) = 369158 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 |