public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] boost: Update to version 1_90_0
@ 2026-04-07 15:10 Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship boost Adolf Belka
                   ` (33 more replies)
  0 siblings, 34 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 1_89_0 to 1_90_0
- Update of rootfiles for all three architectures
- Changelog
    1_90_0
New Libraries
    OpenMethod:
        Open-(multi-)methods in C++17 and above, from Jean-Louis Leroy.
Updated Libraries
    Asio
        Added the execution::inline_exception_handling property to describe what exception handling guarantees are made when execution occurs inline.
        Added inline_executor, which always executes the submitted function inline.
        Changed the default candidate executor for associated_executor from system_executor to inline_executor.
        Added the inline_or_executor<> adapter and inline_or() helper, which will execute inline if possible and otherwise delegate to another executor.
        Added overloads of dispatch, post and defer that take a function object to be run on the target executor, and deliver the result to the completion handler.
        Added the redirect_disposition completion token adapter, as a generic counterpart for redirect_error.
        Annotated deprecated items with the [[deprecated]] attribute.
        Added a new configuration parameter "reactor" / "reset_edge_on_partial_read", which determines whether a partial read consumes the edge when using epoll.
        Added new configuration parameters "reactor" / "use_eventfd" and "reactor" / "use_timerfd" that are used to determine whether the epoll backend uses eventfd and timerfd respectively.
        Added the missing preprocessor check for BOOST_ASIO_DISABLE_TIMERFD.
        Implemented a compile-time feature check for std::source_location support, in addition to std::experimental::source_location.
        Stopped using the deprecated boost::array::c_array() function.
        Fixed a resource leak in asio::awaitable move assignment.
        Fixed a memory leak in ssl stream move assignment.
        Fixed a thread sanitizer issue in kqueue reactor.
        Fixed handler tracking arguments in io_uring backend.
        Fixed an unused parameter warning in boost::asio::detail::null_thread.
        Changed the macro-based coroutine implementation to ensure deterministic case labels when __COUNTER__ is used.
        Fixed synchronous SSL stream shutdown to remap error::eof as async_shutdown does.
        Changed stream_file and random_access_file on Windows to treat file paths as UTF-8 encoded strings.
        Added checks to experimental::parallel_group and experimental::ranged_parallel_group to detect empty operation sets.
        Removed workaround for _FORTIFY_SOURCE, added address length checking to ip::basic_resolver_results.
        Fixed experimental::coro to have protection against max as a macro.
        Updated detection of std::aligned_alloc for newer libc++ versions.
        Various documentation fixes and improvements.
        Consult the Revision History for further details.
    Beast:
        http::parser rejects non-standard trailer fields by default.
        http::basic_parser uses a dedicated callback for trailer fields.
        http::field constants are updated.
        Fixed allocator move/copy assignment in flat_buffer and multi_buffer.
        Fixed websocket permessage-deflate error on partial message consumption.
        http::buffer_body ignores empty chunks.
        Added http::basic_fields::contains member function.
        Removed dependency on Boost.Preprocessor and Boost.StaticAssert.
    Bloom:
        Added bulk-mode insertion and lookup for increased performance.
        Made lookup implementation branchless for block, fast_multiblock32 and fast_multiblock64, which results in some performance gains, particularly for mixed successful/unsuccessful queries.
    Charconv:
        Fixed quadmath detection in CMake for cross-compilation.
        Fixed an issue where a sufficiently big buffer would error as not large enough in floating point to_chars.
    Compat:
        Added to_underlying.hpp (contributed by Braden Ganetsky.)
    Container:
        Reimplemented deque. The original implementation was based on the SGI’s original data structure (similar to libstdc++). Main changes:
            sizeof(deque) was 10 words, now is 4 words. Probably the lightest implementation around.
            sizeof(deque::iterator) was 4 words, now is is 2 words (similar to libc++ and MSVC).)
            Several internal algorithms were reimplemented to speed up the segmented nature of deque.
            Defaults were slightly changed, 64 bit platforms now use 1024 byte blocks by default instead of classic SGI 512 byte blocks.
            The new implementation eases further deque-like variations and optimizations in the future.
        Fixed bugs/issues:
            GitHub #248: "flat_map slow insertion introduced in boost-1.80.0".
            GitHub #254: "C++20 std::erase_if".
            GitHub #293: "UBSAN reports unaligned access error".
            GitHub #294: "CMake: Add option to use header-only Boost::container".
            GitHub #300: "Warnings when building with Clang 20".
            GitHub #304: "Usage of boost::container::small_vector with custom allocator".
            GitHub #305: "Warnings with -Wstrict-prototypes".
            GitHub #307: "Fix all instances of MSVC warning C4146 (unsigned negation)".
            GitHub #309: "Performance regression of boost::container::static_vector introduced in boost v1.86".
            GitHub #306: "new_allocator.hpp error: '__cpp_sized_deallocation' is not defined, evaluates to 0 [-Werror,-Wundef"].
            GitHub #310: "flat_map: Mention correct type in documentation of emplace and emplace_hint".
            GitHub #312: "flat_map std::allocator::is_always_equal is deprecated".
            GitHub #317: "Partial revert of changes for Issue #209 - compiler warnings".
            GitHub #321: "devector does not work with pmr allocators".
    Conversion:
        Dropped dependency on Boost.SmartPtr.
    Core:
        The implementation of BOOST_TEST_THROWS and BOOST_TEST_NO_THROW macros defined in boost/core/lightweight_test.hpp has been changed to avoid compiler warnings on some compilers, when the macros are used in if/else blocks. As a side effect of this change, the semicolon after the macro is now necessary. (PR#205)
        boost::data and boost::size are now aliases for std::data and std::size, respectively, when the latter are provided by compiler. This resolves potential ambiguities when both boost:: and std:: alternatives are found by the compiler, e.g. as a result of ADL. (PR#206)
    DLL:
        Fixed issues with std::error_code being passed to boost::system::error_code&. Many thanks to Thomas Klausner for the fix (PR#106).
        Fixed install with CMake. Many thanks to Yury Bura for the fix (PR#103).
        Fixed size variable shadowing.
    DynamicBitset:
        Added C++20 iterators.
        Allowed choosing the underlying container type.
        Added constexpr support when compiling as C++20 or later.
        Made push_back(), pop_back() and lowest_bit() more efficient.
        Made the constructor from basic_string explicit.
        Removed several dependencies.
        Added push_front(), pop_front(), find_first_off(), find_next_off() and constructors from C-style strings and basic_string_view (the latter in C++17 or later).
        Changed the stream inserter to set badbit if an exception is thrown during output.
        Made the stream extractor rethrow any exception coming from the underlying vector.
        Ported the documentation to MrDocs and Antora.
    Filesystem:
        Clear passed error_code argument on successful completion of the permissions operation. (PR#338)
        On Windows, added a workaround for directory_iterator constructor failing with an "Invalid Signature" error for a Samba 3.0.2 share, when SMB signing is required. (#334)
    Flyweight:
        Fixed compile errors in Clang 19 and later due to P0522R0 support.
    Geometry:
        Major improvements
            GitHub #1409: "Implement is_valid algorithm for polyhedral surfaces".
        Improvements
            GitHub #1413: "Add supported combinations for convert".
            GitHub #1417: "Improved documentation".
            GitHub #1423: "Avoid stack overflow in traverse".
        Solved issues
            GitHub #1006: "bg::projections::detail::epsg_to_parameters causes excessive compile times".
            Various fixes of errors and warnings
    GIL:
        Improvements
            GitHub #773: "Improved documentation (histogram and typos). Fixed the build for latest sphinx version.".
        Solved issues
            GitHub #778: "Fixed build with Clang".
    Interprocess:
        Minor documentation fixes.
        Fixed bugs:
            GitHub #245: "Fix UBSan runtime error (load of 'boost::interprocess::mode_t')".
            GitHub #269: "Minor documentation fixes and template parameter renames".
    JSON:
        Removed dependencies on Boost.Align and Boost.StaticAssert.
        Switched to a faster hashing algorithm.
    LexicalCast:
        More tests and fixes for floating-point special value conversions to integers and bool. Fixes compiler warning C4804 when lexical casting from float to bool.
        Dropped dependency to Boost.TypeTraits. Many thanks to Romain Geissler for implementing the major part of the work (PR#87).
        Switch from implicit to explicit type conversion to avoid compiler warnings. Many thanks to bmagistro for the PR (PR#85).
        Fixed mistakes in documentation. Many thanks to ivanpanch for the PR (PR#86).
        Fixed regression in unsigned short to wstring casting without wchar_t builtin type.
    Locale:
        Fixed B2 build files to avoid building dynamic versions of various Boost libraries when only static ones are requested (PR#266).
        When ISO8859-1 or ISO8859-8 encoding is requested, allow using Windows codepages 1252 or 1255, respectively, instead of using the "C" (classic) locale when the selected Windows locale doesn’t support that ISO8859 encoding.
        Enabled a workaround for an issue in Cygwins stdlib when converting some long UTF-8 sequences to UTF-16.
    Log:
        Fixed a missed optimization in value_ref visitation.
        Fixed a possible long and useless loop on log file rotation in text_file_backend. If the log file name pattern did not include a file counter and the log file size exceeded the rotation_size limit, then the sink backend would repeatedly try to open a new log file with a different counter value and end up opening the same file every time. (#252)
        Made file size checks more robust against integer overflows in text_file_backend.
    Math:
        Added new sub-library: Reverse-Mode Automatic Differentiation.
        Added new constant: log_pi.
        Added proper promotion policy support to logit, logistic_sigmoid, and logistic distributions.
        Numerous fixes and edge case repairs to the special functions.
    Mp11:
        Updated mp_reverse_fold to work on fixed size lists
    MQTT5:
        Removed dependency on Boost.Spirit.
        Auto-reconnection now triggers on any transport-layer error instead of a limited whitelist (#38).
        Added at_transport_error callback to the Logger interface.
    MSM:
        Refurbished and updated the documentation to use Antora.
        Added a new back-end backmp11 offering heavily reduced compile times, a refactored API and a couple of new features. Requires C++17, more details are available in the documentation.
        Fixed bug GitHub #87: "boost::any stopped working as Kleene event in 1.86 in boost::msm".
    Multiprecision:
        Significant improvements to testing and coverage of newer cpp_double_fp_backend.
    MySQL:
        Deprecated support for Clang versions older than 4.0. These compilers might still work, but they won’t be actively tested in CI.
        Added tests to guarantee compatibility with MySQL 9.x.
        Added tests to guarantee compatibility with Clang versions up to 20, and GCC versions up to 15.
    Parser:
        Fixed ill-formedness when using move-only callables with closures (PR#284)
        Fix wonky const-incompatibility in GlobalState parser template params (#250).
        Fix ill-formedness in some cases when using the permutation parser (#268).
        Fixed an error in sequence parsing that could cause some attributes to be overwritten by later parsers in a sequence (#279).
        Fix the handling of opt-parsers that could leave a std::optional attribute containing a value even though the parser that produced it failed (#279 and #285).
        Multiple runtime optimizations (#245, PR#254, PR#255, PR#256).
        A modest compile-time and code size optimization (#250).
        Make transform constexpr (PR#275).
        Move-versus-forward warning mitigation (#272).
        Correct the documentation for the attribute type of the if_ directive (#278).
        Correct many, many typos in the docs (PR#271).
    PFR:
        Added an implementation based on C++26 destructuring into a pack, that fixes majority of known limitations of the library and avoids excessive template instantinations. The new implementation can be explicitly enabled/disabled by a new BOOST_PFR_USE_CPP26 macro. Many thanks to Jean-Michaël Celerier for the PR (PR#194).
        Multiple fixes to CMake. Many thanks to Alexander Grund for the PRs!
    Random:
        Fix for construction of xoshiro family of generators from SeedSeq.
    Redis:
        Important changes to cancellation:
            Improved the per-operation support in async_exec(), and added support for asio::cancel_after. Requests can now be cancelled at any point, and cancellations don’t interfere with other requests anyhow. Pull requests PR#310 and #226.
            Deprecated the cancel_on_connection_lost and cancel_if_not_connected flags in request::config. To limit the time span that async_exec might take, use asio::cancel_after, instead. cancel_on_connection_lost default has been changed to false. Pull requests PR#329 and PR#334.
            Deprecated calling cancel with operation::resolve, connect, ssl_handshake, reconnection and health_check. Users should employ cancel(operation::run), instead. Pull request PR#321.
            Added support for per-operation cancellation in async_run(). Issue #319.
        Added support for custom setup requests using config::setup. When setting these fields, users can replace the library-generated HELLO request by any other arbitrary request. Issue #302 and pull request PR#303.
        Deprecated request::config::hello_with_priority. If you need to execute a request before any other, use config::setup, instead. Pull request PR#305.
        Valkey long-term support: we guarantee Valkey compatibility starting with this release. Issue #296.
        Added a request::append() function, to concatenate request objects. Issue #341.
        The health checker algorithm has been redesigned to avoid false positives under heavy loads. PING commands are now only issued when the connection is idle, instead of periodically. Issue #104.
        Added config::read_buffer_append_size, which allows to control the expansion of the connection’s read buffer. Pull request PR#283.
        Added usage::bytes_rotated, which measures data copying when reading and parsing data from the server. Pull request PR#311.
        Bug fixes:
            Fixed a bug causing an exception to be thrown when parsing a response that contains an intermediate error into a generic_response. Issue #287.
            Fixed a number of race conditions in the cancel() function of connection and basic_connection that could cause cancellations to be ignored. Issue #318.
            Users with an empty password but a non-default username are now correctly authenticated. Issue #298.
            Fixed a problem that could cause an error during HELLO to make subsequent HELLO attempts during reconnection to fail. Issue #290.
            Errors during HELLO are now correctly logged. Issue #297.
    SmartPtr:
        The functionality enabled by the deprecated macros BOOST_SP_ENABLE_DEBUG_HOOKS, BOOST_SP_USE_STD_ALLOCATOR, and BOOST_SP_USE_QUICK_ALLOCATOR has been removed.
        The header <boost/smart_ptr/detail/quick_allocator.hpp> has been marked deprecated and will be removed in a future release.
        Configurations that define BOOST_NO_CXX11_HDR_ATOMIC are no longer supported; a conforming C++11 <atomic> is now required.
        The deprecated macros BOOST_AC_USE_SPINLOCK, BOOST_AC_USE_PTHREADS, BOOST_SP_USE_SPINLOCK, and BOOST_SP_USE_PTHREADS are no longer functional.
        Platform-specific implementations of atomic_count, sp_counted_base and spinlock are no longer used and have been removed.
        Configurations that define BOOST_NO_CXX11_HDR_MUTEX are no longer supported; a conforming C++11 <mutex> is now required.
        Some unused headers in boost/smart_ptr/detail/ have been removed.
    Stacktrace:
        Fixed missing include. Thanks to Orgad Shaneh for the fix!
        Fixed URL in libbacktrace_impls.hpp, thanks to Jonathan Wakely.
    StaticString:
        Aligned to_static_[w]string() with std::to_[w]string() in C++26.
        Removed usage of an additional buffer in to_static_[w]string().
        Added resize_and_overwrite().
    STLInterfaces:
        Fixed ill-formedness with GCC 14 (PR#80).
        Fixed ill-formedness when using move-only callables with closures.
    Test:
        Fixed a few warnings on Windows Clang.
    TypeIndex:
        Dropped dependency on Boost.Core.
        Run all the tests in CMake too, Many thanks to Alexander Grund for some fixes and help.
    URL:
        segments_view and segments_encoded_view gained constant-time iterator-based subview constructors.
        Added zone-id setters (e.g. for IPv6 link-local addresses).
        Host setters now accept/propagate zone-id.
        Fixed: resolve now replicates the reference fragment in all cases (#920).
        Fixed: encoded_host_address assertions account for zone-id.
        Refactor: replaced BOOST_STATIC_ASSERT with BOOST_CORE_STATIC_ASSERT (#934).
        Refactor: preserved absolute semantics for segment subviews (#939).
    Uuid:
        string_generator is now constexpr on C++14 and higher.
        Added header boost/uuid/constants.hpp.
        Renamed boost/uuid/uuid_generators.hpp to boost/uuid/generators.hpp. The old name is retained for compatibility.
    Variant2:
        More functions have been marked as constexpr, including ~variant. This didn’t matter before C++20, but does now.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/aarch64/boost | 683 +++++++++++++------------
 config/rootfiles/common/riscv64/boost | 683 +++++++++++++------------
 config/rootfiles/common/x86_64/boost  | 697 ++++++++++++++------------
 lfs/boost                             |   6 +-
 4 files changed, 1111 insertions(+), 958 deletions(-)

diff --git a/config/rootfiles/common/aarch64/boost b/config/rootfiles/common/aarch64/boost
index fff77dc3e..0f2150ad0 100644
--- a/config/rootfiles/common/aarch64/boost
+++ b/config/rootfiles/common/aarch64/boost
@@ -733,6 +733,7 @@
 #usr/include/boost/asio/execution/executor.hpp
 #usr/include/boost/asio/execution/impl
 #usr/include/boost/asio/execution/impl/bad_executor.ipp
+#usr/include/boost/asio/execution/inline_exception_handling.hpp
 #usr/include/boost/asio/execution/invocable_archetype.hpp
 #usr/include/boost/asio/execution/mapping.hpp
 #usr/include/boost/asio/execution/occupancy.hpp
@@ -827,6 +828,7 @@
 #usr/include/boost/asio/impl/read.hpp
 #usr/include/boost/asio/impl/read_at.hpp
 #usr/include/boost/asio/impl/read_until.hpp
+#usr/include/boost/asio/impl/redirect_disposition.hpp
 #usr/include/boost/asio/impl/redirect_error.hpp
 #usr/include/boost/asio/impl/serial_port_base.hpp
 #usr/include/boost/asio/impl/serial_port_base.ipp
@@ -841,6 +843,8 @@
 #usr/include/boost/asio/impl/use_future.hpp
 #usr/include/boost/asio/impl/write.hpp
 #usr/include/boost/asio/impl/write_at.hpp
+#usr/include/boost/asio/inline_executor.hpp
+#usr/include/boost/asio/inline_or_executor.hpp
 #usr/include/boost/asio/io_context.hpp
 #usr/include/boost/asio/io_context_strand.hpp
 #usr/include/boost/asio/ip
@@ -921,6 +925,7 @@
 #usr/include/boost/asio/read_until.hpp
 #usr/include/boost/asio/readable_pipe.hpp
 #usr/include/boost/asio/recycling_allocator.hpp
+#usr/include/boost/asio/redirect_disposition.hpp
 #usr/include/boost/asio/redirect_error.hpp
 #usr/include/boost/asio/registered_buffer.hpp
 #usr/include/boost/asio/require.hpp
@@ -1854,6 +1859,8 @@
 #usr/include/boost/cobalt/io/acceptor.hpp
 #usr/include/boost/cobalt/io/buffer.hpp
 #usr/include/boost/cobalt/io/datagram_socket.hpp
+#usr/include/boost/cobalt/io/detail
+#usr/include/boost/cobalt/io/detail/config.hpp
 #usr/include/boost/cobalt/io/endpoint.hpp
 #usr/include/boost/cobalt/io/file.hpp
 #usr/include/boost/cobalt/io/ops.hpp
@@ -1894,6 +1901,7 @@
 #usr/include/boost/compat/bind_back.hpp
 #usr/include/boost/compat/bind_front.hpp
 #usr/include/boost/compat/detail
+#usr/include/boost/compat/detail/nontype.hpp
 #usr/include/boost/compat/detail/returns.hpp
 #usr/include/boost/compat/detail/throw_system_error.hpp
 #usr/include/boost/compat/function_ref.hpp
@@ -1904,6 +1912,7 @@
 #usr/include/boost/compat/move_only_function.hpp
 #usr/include/boost/compat/shared_lock.hpp
 #usr/include/boost/compat/to_array.hpp
+#usr/include/boost/compat/to_underlying.hpp
 #usr/include/boost/compat/type_traits.hpp
 #usr/include/boost/compressed_pair.hpp
 #usr/include/boost/compute
@@ -2418,6 +2427,7 @@
 #usr/include/boost/container/detail/node_alloc_holder.hpp
 #usr/include/boost/container/detail/node_pool.hpp
 #usr/include/boost/container/detail/node_pool_impl.hpp
+#usr/include/boost/container/detail/operator_new_helpers.hpp
 #usr/include/boost/container/detail/pair.hpp
 #usr/include/boost/container/detail/pair_key_mapped_of_value.hpp
 #usr/include/boost/container/detail/placement_new.hpp
@@ -2635,6 +2645,7 @@
 #usr/include/boost/core/detail/sp_thread_yield.hpp
 #usr/include/boost/core/detail/sp_win32_sleep.hpp
 #usr/include/boost/core/detail/splitmix64.hpp
+#usr/include/boost/core/detail/static_assert.hpp
 #usr/include/boost/core/detail/string_view.hpp
 #usr/include/boost/core/empty_value.hpp
 #usr/include/boost/core/enable_if.hpp
@@ -3017,6 +3028,8 @@
 #usr/include/boost/dynamic_bitset/detail/dynamic_bitset.hpp
 #usr/include/boost/dynamic_bitset/detail/lowest_bit.hpp
 #usr/include/boost/dynamic_bitset/dynamic_bitset.hpp
+#usr/include/boost/dynamic_bitset/impl
+#usr/include/boost/dynamic_bitset/impl/dynamic_bitset.ipp
 #usr/include/boost/dynamic_bitset/serialization.hpp
 #usr/include/boost/dynamic_bitset_fwd.hpp
 #usr/include/boost/enable_shared_from_this.hpp
@@ -4658,6 +4671,7 @@
 #usr/include/boost/geometry/algorithms/detail/is_valid/multipolygon.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/pointlike.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/polygon.hpp
+#usr/include/boost/geometry/algorithms/detail/is_valid/polyhedral_surface.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/ring.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/segment.hpp
 #usr/include/boost/geometry/algorithms/detail/make
@@ -5366,6 +5380,7 @@
 #usr/include/boost/geometry/strategies/cartesian/point_in_poly_franklin.hpp
 #usr/include/boost/geometry/strategies/cartesian/point_in_poly_winding.hpp
 #usr/include/boost/geometry/strategies/cartesian/point_order.hpp
+#usr/include/boost/geometry/strategies/cartesian/side_3d_rounded_input.hpp
 #usr/include/boost/geometry/strategies/cartesian/side_rounded_input.hpp
 #usr/include/boost/geometry/strategies/cartesian/turn_in_ring_winding.hpp
 #usr/include/boost/geometry/strategies/centroid
@@ -5501,6 +5516,9 @@
 #usr/include/boost/geometry/strategies/relate/geographic.hpp
 #usr/include/boost/geometry/strategies/relate/services.hpp
 #usr/include/boost/geometry/strategies/relate/spherical.hpp
+#usr/include/boost/geometry/strategies/relate3
+#usr/include/boost/geometry/strategies/relate3/cartesian.hpp
+#usr/include/boost/geometry/strategies/relate3/services.hpp
 #usr/include/boost/geometry/strategies/side.hpp
 #usr/include/boost/geometry/strategies/side_info.hpp
 #usr/include/boost/geometry/strategies/simplify
@@ -7672,6 +7690,7 @@
 #usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
 #usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
 #usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
+#usr/include/boost/lexical_cast/detail/type_traits.hpp
 #usr/include/boost/lexical_cast/detail/widest_char.hpp
 #usr/include/boost/lexical_cast/try_lexical_convert.hpp
 #usr/include/boost/limits.hpp
@@ -8156,6 +8175,20 @@
 #usr/include/boost/math/differentiation
 #usr/include/boost/math/differentiation/autodiff.hpp
 #usr/include/boost/math/differentiation/autodiff_cpp11.hpp
+#usr/include/boost/math/differentiation/autodiff_reverse.hpp
+#usr/include/boost/math/differentiation/detail
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_operator_expressions.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_no_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_comparison_operator_overloads.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_erf_overloads.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_expression_template_base.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_helper_functions.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_memory_management.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_stl_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_stl_expressions.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_stl_no_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_utilities.hpp
 #usr/include/boost/math/differentiation/finite_difference.hpp
 #usr/include/boost/math/differentiation/lanczos_smoothing.hpp
 #usr/include/boost/math/distributions
@@ -8387,6 +8420,8 @@
 #usr/include/boost/math/special_functions/legendre_stieltjes.hpp
 #usr/include/boost/math/special_functions/log1p.hpp
 #usr/include/boost/math/special_functions/logaddexp.hpp
+#usr/include/boost/math/special_functions/logistic_sigmoid.hpp
+#usr/include/boost/math/special_functions/logit.hpp
 #usr/include/boost/math/special_functions/logsumexp.hpp
 #usr/include/boost/math/special_functions/math_fwd.hpp
 #usr/include/boost/math/special_functions/modf.hpp
@@ -10253,10 +10288,22 @@
 #usr/include/boost/msm/back/queue_container_deque.hpp
 #usr/include/boost/msm/back/state_machine.hpp
 #usr/include/boost/msm/back/tools.hpp
+#usr/include/boost/msm/back/traits.hpp
 #usr/include/boost/msm/back11
 #usr/include/boost/msm/back11/dispatch_table.hpp
 #usr/include/boost/msm/back11/metafunctions.hpp
 #usr/include/boost/msm/back11/state_machine.hpp
+#usr/include/boost/msm/backmp11
+#usr/include/boost/msm/backmp11/common_types.hpp
+#usr/include/boost/msm/backmp11/detail
+#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
+#usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
+#usr/include/boost/msm/backmp11/detail/history_impl.hpp
+#usr/include/boost/msm/backmp11/detail/metafunctions.hpp
+#usr/include/boost/msm/backmp11/event_traits.hpp
+#usr/include/boost/msm/backmp11/favor_compile_time.hpp
+#usr/include/boost/msm/backmp11/state_machine.hpp
+#usr/include/boost/msm/backmp11/state_machine_config.hpp
 #usr/include/boost/msm/common.hpp
 #usr/include/boost/msm/event_traits.hpp
 #usr/include/boost/msm/front
@@ -10281,6 +10328,7 @@
 #usr/include/boost/msm/front/euml/stt_grammar.hpp
 #usr/include/boost/msm/front/euml/transformation.hpp
 #usr/include/boost/msm/front/functor_row.hpp
+#usr/include/boost/msm/front/history_policies.hpp
 #usr/include/boost/msm/front/internal_row.hpp
 #usr/include/boost/msm/front/operator.hpp
 #usr/include/boost/msm/front/puml
@@ -10288,6 +10336,7 @@
 #usr/include/boost/msm/front/row2.hpp
 #usr/include/boost/msm/front/state_machine_def.hpp
 #usr/include/boost/msm/front/states.hpp
+#usr/include/boost/msm/kleene_event.hpp
 #usr/include/boost/msm/mpl_graph
 #usr/include/boost/msm/mpl_graph/adjacency_list_graph.hpp
 #usr/include/boost/msm/mpl_graph/breadth_first_search.hpp
@@ -11117,6 +11166,29 @@
 #usr/include/boost/numeric/ublas/vector_of_vector.hpp
 #usr/include/boost/numeric/ublas/vector_proxy.hpp
 #usr/include/boost/numeric/ublas/vector_sparse.hpp
+#usr/include/boost/openmethod
+#usr/include/boost/openmethod.hpp
+#usr/include/boost/openmethod/core.hpp
+#usr/include/boost/openmethod/default_registry.hpp
+#usr/include/boost/openmethod/detail
+#usr/include/boost/openmethod/detail/ostdstream.hpp
+#usr/include/boost/openmethod/detail/static_list.hpp
+#usr/include/boost/openmethod/initialize.hpp
+#usr/include/boost/openmethod/inplace_vptr.hpp
+#usr/include/boost/openmethod/interop
+#usr/include/boost/openmethod/interop/std_shared_ptr.hpp
+#usr/include/boost/openmethod/interop/std_unique_ptr.hpp
+#usr/include/boost/openmethod/macros.hpp
+#usr/include/boost/openmethod/policies
+#usr/include/boost/openmethod/policies/default_error_handler.hpp
+#usr/include/boost/openmethod/policies/fast_perfect_hash.hpp
+#usr/include/boost/openmethod/policies/static_rtti.hpp
+#usr/include/boost/openmethod/policies/std_rtti.hpp
+#usr/include/boost/openmethod/policies/stderr_output.hpp
+#usr/include/boost/openmethod/policies/throw_error_handler.hpp
+#usr/include/boost/openmethod/policies/vptr_map.hpp
+#usr/include/boost/openmethod/policies/vptr_vector.hpp
+#usr/include/boost/openmethod/preamble.hpp
 #usr/include/boost/operators.hpp
 #usr/include/boost/operators_v1.hpp
 #usr/include/boost/optional
@@ -11416,6 +11488,7 @@
 #usr/include/boost/pfr/detail/core14_loophole.hpp
 #usr/include/boost/pfr/detail/core17.hpp
 #usr/include/boost/pfr/detail/core17_generated.hpp
+#usr/include/boost/pfr/detail/core26.hpp
 #usr/include/boost/pfr/detail/core_name.hpp
 #usr/include/boost/pfr/detail/core_name14_disabled.hpp
 #usr/include/boost/pfr/detail/core_name20_static.hpp
@@ -13676,31 +13749,38 @@
 #usr/include/boost/redis/config.hpp
 #usr/include/boost/redis/connection.hpp
 #usr/include/boost/redis/detail
-#usr/include/boost/redis/detail/connection_logger.hpp
+#usr/include/boost/redis/detail/connect_fsm.hpp
+#usr/include/boost/redis/detail/connection_state.hpp
 #usr/include/boost/redis/detail/coroutine.hpp
 #usr/include/boost/redis/detail/exec_fsm.hpp
-#usr/include/boost/redis/detail/health_checker.hpp
-#usr/include/boost/redis/detail/helper.hpp
 #usr/include/boost/redis/detail/multiplexer.hpp
+#usr/include/boost/redis/detail/read_buffer.hpp
 #usr/include/boost/redis/detail/reader_fsm.hpp
 #usr/include/boost/redis/detail/redis_stream.hpp
-#usr/include/boost/redis/detail/resp3_handshaker.hpp
+#usr/include/boost/redis/detail/resp3_type_to_error.hpp
+#usr/include/boost/redis/detail/run_fsm.hpp
 #usr/include/boost/redis/detail/write.hpp
+#usr/include/boost/redis/detail/writer_fsm.hpp
 #usr/include/boost/redis/error.hpp
 #usr/include/boost/redis/ignore.hpp
 #usr/include/boost/redis/impl
+#usr/include/boost/redis/impl/connect_fsm.ipp
 #usr/include/boost/redis/impl/connection.ipp
-#usr/include/boost/redis/impl/connection_logger.ipp
 #usr/include/boost/redis/impl/error.ipp
 #usr/include/boost/redis/impl/exec_fsm.ipp
 #usr/include/boost/redis/impl/ignore.ipp
+#usr/include/boost/redis/impl/is_terminal_cancel.hpp
 #usr/include/boost/redis/impl/log_to_file.hpp
+#usr/include/boost/redis/impl/log_utils.hpp
 #usr/include/boost/redis/impl/logger.ipp
 #usr/include/boost/redis/impl/multiplexer.ipp
+#usr/include/boost/redis/impl/read_buffer.ipp
 #usr/include/boost/redis/impl/reader_fsm.ipp
 #usr/include/boost/redis/impl/request.ipp
-#usr/include/boost/redis/impl/resp3_handshaker.ipp
 #usr/include/boost/redis/impl/response.ipp
+#usr/include/boost/redis/impl/run_fsm.ipp
+#usr/include/boost/redis/impl/setup_request_utils.hpp
+#usr/include/boost/redis/impl/writer_fsm.ipp
 #usr/include/boost/redis/logger.hpp
 #usr/include/boost/redis/operation.hpp
 #usr/include/boost/redis/request.hpp
@@ -13979,66 +14059,33 @@
 #usr/include/boost/smart_ptr/bad_weak_ptr.hpp
 #usr/include/boost/smart_ptr/detail
 #usr/include/boost/smart_ptr/detail/atomic_count.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_gcc.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp
 #usr/include/boost/smart_ptr/detail/atomic_count_nt.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_pt.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_spin.hpp
 #usr/include/boost/smart_ptr/detail/atomic_count_std_atomic.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_sync.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_win32.hpp
 #usr/include/boost/smart_ptr/detail/deprecated_macros.hpp
 #usr/include/boost/smart_ptr/detail/lightweight_mutex.hpp
 #usr/include/boost/smart_ptr/detail/lightweight_thread.hpp
 #usr/include/boost/smart_ptr/detail/local_counted_base.hpp
 #usr/include/boost/smart_ptr/detail/local_sp_deleter.hpp
-#usr/include/boost/smart_ptr/detail/lwm_pthreads.hpp
 #usr/include/boost/smart_ptr/detail/lwm_std_mutex.hpp
-#usr/include/boost/smart_ptr/detail/lwm_win32_cs.hpp
 #usr/include/boost/smart_ptr/detail/quick_allocator.hpp
 #usr/include/boost/smart_ptr/detail/shared_count.hpp
 #usr/include/boost/smart_ptr/detail/sp_convertible.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_base.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_impl.hpp
 #usr/include/boost/smart_ptr/detail/sp_cxx20_constexpr.hpp
 #usr/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp
-#usr/include/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp
-#usr/include/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp
-#usr/include/boost/smart_ptr/detail/sp_interlocked.hpp
 #usr/include/boost/smart_ptr/detail/sp_noexcept.hpp
-#usr/include/boost/smart_ptr/detail/sp_obsolete.hpp
 #usr/include/boost/smart_ptr/detail/sp_thread_pause.hpp
 #usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp
 #usr/include/boost/smart_ptr/detail/sp_thread_yield.hpp
 #usr/include/boost/smart_ptr/detail/sp_type_traits.hpp
 #usr/include/boost/smart_ptr/detail/sp_typeinfo_.hpp
 #usr/include/boost/smart_ptr/detail/spinlock.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp
 #usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_nt.hpp
 #usr/include/boost/smart_ptr/detail/spinlock_pool.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_pt.hpp
 #usr/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_sync.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_w32.hpp
 #usr/include/boost/smart_ptr/detail/yield_k.hpp
 #usr/include/boost/smart_ptr/enable_shared_from.hpp
 #usr/include/boost/smart_ptr/enable_shared_from_raw.hpp
@@ -16556,6 +16603,7 @@
 #usr/include/boost/unordered/detail/static_assert.hpp
 #usr/include/boost/unordered/detail/throw_exception.hpp
 #usr/include/boost/unordered/detail/type_traits.hpp
+#usr/include/boost/unordered/detail/unordered_printers.hpp
 #usr/include/boost/unordered/detail/xmx.hpp
 #usr/include/boost/unordered/hash_traits.hpp
 #usr/include/boost/unordered/unordered_flat_map.hpp
@@ -16568,7 +16616,6 @@
 #usr/include/boost/unordered/unordered_node_map_fwd.hpp
 #usr/include/boost/unordered/unordered_node_set.hpp
 #usr/include/boost/unordered/unordered_node_set_fwd.hpp
-#usr/include/boost/unordered/unordered_printers.hpp
 #usr/include/boost/unordered/unordered_set.hpp
 #usr/include/boost/unordered/unordered_set_fwd.hpp
 #usr/include/boost/unordered_map.hpp
@@ -16591,6 +16638,7 @@
 #usr/include/boost/url/detail/parts_base.hpp
 #usr/include/boost/url/detail/replacement_field_rule.hpp
 #usr/include/boost/url/detail/segments_iter_impl.hpp
+#usr/include/boost/url/detail/segments_range.hpp
 #usr/include/boost/url/detail/string_view.hpp
 #usr/include/boost/url/detail/url_impl.hpp
 #usr/include/boost/url/detail/vformat.hpp
@@ -16735,6 +16783,7 @@
 #usr/include/boost/uuid.hpp
 #usr/include/boost/uuid/basic_name_generator.hpp
 #usr/include/boost/uuid/basic_random_generator.hpp
+#usr/include/boost/uuid/constants.hpp
 #usr/include/boost/uuid/detail
 #usr/include/boost/uuid/detail/basic_name_generator.hpp
 #usr/include/boost/uuid/detail/chacha20.hpp
@@ -16742,6 +16791,7 @@
 #usr/include/boost/uuid/detail/endian.hpp
 #usr/include/boost/uuid/detail/hash_mix.hpp
 #usr/include/boost/uuid/detail/md5.hpp
+#usr/include/boost/uuid/detail/nil_uuid.hpp
 #usr/include/boost/uuid/detail/numeric_cast.hpp
 #usr/include/boost/uuid/detail/random_device.hpp
 #usr/include/boost/uuid/detail/random_provider.hpp
@@ -16752,6 +16802,7 @@
 #usr/include/boost/uuid/detail/uuid_uint128.ipp
 #usr/include/boost/uuid/detail/uuid_x86.ipp
 #usr/include/boost/uuid/entropy_error.hpp
+#usr/include/boost/uuid/generators.hpp
 #usr/include/boost/uuid/name_generator.hpp
 #usr/include/boost/uuid/name_generator_md5.hpp
 #usr/include/boost/uuid/name_generator_sha1.hpp
@@ -17253,356 +17304,356 @@
 #usr/include/boost/yap/print.hpp
 #usr/include/boost/yap/user_macros.hpp
 #usr/include/boost/yap/yap.hpp
-#usr/lib/cmake/Boost-1.89.0
-#usr/lib/cmake/Boost-1.89.0/BoostConfig.cmake
-#usr/lib/cmake/Boost-1.89.0/BoostConfigVersion.cmake
-#usr/lib/cmake/BoostDetectToolset-1.89.0.cmake
-#usr/lib/cmake/boost_atomic-1.89.0
-#usr/lib/cmake/boost_atomic-1.89.0/boost_atomic-config-version.cmake
-#usr/lib/cmake/boost_atomic-1.89.0/boost_atomic-config.cmake
-#usr/lib/cmake/boost_atomic-1.89.0/libboost_atomic-variant-a64-shared.cmake
-#usr/lib/cmake/boost_atomic-1.89.0/libboost_atomic-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_charconv-1.89.0
-#usr/lib/cmake/boost_charconv-1.89.0/boost_charconv-config-version.cmake
-#usr/lib/cmake/boost_charconv-1.89.0/boost_charconv-config.cmake
-#usr/lib/cmake/boost_charconv-1.89.0/libboost_charconv-variant-a64-shared.cmake
-#usr/lib/cmake/boost_charconv-1.89.0/libboost_charconv-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_chrono-1.89.0
-#usr/lib/cmake/boost_chrono-1.89.0/boost_chrono-config-version.cmake
-#usr/lib/cmake/boost_chrono-1.89.0/boost_chrono-config.cmake
-#usr/lib/cmake/boost_chrono-1.89.0/libboost_chrono-variant-a64-shared.cmake
-#usr/lib/cmake/boost_chrono-1.89.0/libboost_chrono-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_container-1.89.0
-#usr/lib/cmake/boost_container-1.89.0/boost_container-config-version.cmake
-#usr/lib/cmake/boost_container-1.89.0/boost_container-config.cmake
-#usr/lib/cmake/boost_container-1.89.0/libboost_container-variant-a64-shared.cmake
-#usr/lib/cmake/boost_container-1.89.0/libboost_container-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_context-1.89.0
-#usr/lib/cmake/boost_context-1.89.0/boost_context-config-version.cmake
-#usr/lib/cmake/boost_context-1.89.0/boost_context-config.cmake
-#usr/lib/cmake/boost_context-1.89.0/libboost_context-variant-a64-shared.cmake
-#usr/lib/cmake/boost_context-1.89.0/libboost_context-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_contract-1.89.0
-#usr/lib/cmake/boost_contract-1.89.0/boost_contract-config-version.cmake
-#usr/lib/cmake/boost_contract-1.89.0/boost_contract-config.cmake
-#usr/lib/cmake/boost_contract-1.89.0/libboost_contract-variant-a64-shared.cmake
-#usr/lib/cmake/boost_contract-1.89.0/libboost_contract-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_date_time-1.89.0
-#usr/lib/cmake/boost_date_time-1.89.0/boost_date_time-config-version.cmake
-#usr/lib/cmake/boost_date_time-1.89.0/boost_date_time-config.cmake
-#usr/lib/cmake/boost_date_time-1.89.0/libboost_date_time-variant-a64-shared.cmake
-#usr/lib/cmake/boost_date_time-1.89.0/libboost_date_time-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_exception-1.89.0
-#usr/lib/cmake/boost_exception-1.89.0/boost_exception-config-version.cmake
-#usr/lib/cmake/boost_exception-1.89.0/boost_exception-config.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0
-#usr/lib/cmake/boost_filesystem-1.89.0/boost_filesystem-config-version.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0/boost_filesystem-config.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0/libboost_filesystem-variant-a64-shared.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0/libboost_filesystem-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_graph-1.89.0
-#usr/lib/cmake/boost_graph-1.89.0/boost_graph-config-version.cmake
-#usr/lib/cmake/boost_graph-1.89.0/boost_graph-config.cmake
-#usr/lib/cmake/boost_graph-1.89.0/libboost_graph-variant-a64-shared.cmake
-#usr/lib/cmake/boost_graph-1.89.0/libboost_graph-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_headers-1.89.0
-#usr/lib/cmake/boost_headers-1.89.0/boost_headers-config-version.cmake
-#usr/lib/cmake/boost_headers-1.89.0/boost_headers-config.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0
-#usr/lib/cmake/boost_iostreams-1.89.0/boost_iostreams-config-version.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0/boost_iostreams-config.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0/libboost_iostreams-variant-a64-shared.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0/libboost_iostreams-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_json-1.89.0
-#usr/lib/cmake/boost_json-1.89.0/boost_json-config-version.cmake
-#usr/lib/cmake/boost_json-1.89.0/boost_json-config.cmake
-#usr/lib/cmake/boost_json-1.89.0/libboost_json-variant-a64-shared.cmake
-#usr/lib/cmake/boost_json-1.89.0/libboost_json-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_locale-1.89.0
-#usr/lib/cmake/boost_locale-1.89.0/boost_locale-config-version.cmake
-#usr/lib/cmake/boost_locale-1.89.0/boost_locale-config.cmake
-#usr/lib/cmake/boost_locale-1.89.0/libboost_locale-variant-a64-shared.cmake
-#usr/lib/cmake/boost_locale-1.89.0/libboost_locale-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_log-1.89.0
-#usr/lib/cmake/boost_log-1.89.0/boost_log-config-version.cmake
-#usr/lib/cmake/boost_log-1.89.0/boost_log-config.cmake
-#usr/lib/cmake/boost_log-1.89.0/libboost_log-variant-a64-shared.cmake
-#usr/lib/cmake/boost_log-1.89.0/libboost_log-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0
-#usr/lib/cmake/boost_log_setup-1.89.0/boost_log_setup-config-version.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0/boost_log_setup-config.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0/libboost_log_setup-variant-a64-shared.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0/libboost_log_setup-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_math-1.89.0
-#usr/lib/cmake/boost_math-1.89.0/boost_math-config-version.cmake
-#usr/lib/cmake/boost_math-1.89.0/boost_math-config.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0
-#usr/lib/cmake/boost_math_c99-1.89.0/boost_math_c99-config-version.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0/boost_math_c99-config.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0/libboost_math_c99-variant-a64-shared.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0/libboost_math_c99-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0
-#usr/lib/cmake/boost_math_c99f-1.89.0/boost_math_c99f-config-version.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0/boost_math_c99f-config.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0/libboost_math_c99f-variant-a64-shared.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0/libboost_math_c99f-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0
-#usr/lib/cmake/boost_math_c99l-1.89.0/boost_math_c99l-config-version.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0/boost_math_c99l-config.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0/libboost_math_c99l-variant-a64-shared.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0/libboost_math_c99l-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0
-#usr/lib/cmake/boost_math_tr1-1.89.0/boost_math_tr1-config-version.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0/boost_math_tr1-config.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0/libboost_math_tr1-variant-a64-shared.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0/libboost_math_tr1-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0
-#usr/lib/cmake/boost_math_tr1f-1.89.0/boost_math_tr1f-config-version.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0/boost_math_tr1f-config.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0/libboost_math_tr1f-variant-a64-shared.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0/libboost_math_tr1f-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0
-#usr/lib/cmake/boost_math_tr1l-1.89.0/boost_math_tr1l-config-version.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0/boost_math_tr1l-config.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0/libboost_math_tr1l-variant-a64-shared.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0/libboost_math_tr1l-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_nowide-1.89.0
-#usr/lib/cmake/boost_nowide-1.89.0/boost_nowide-config-version.cmake
-#usr/lib/cmake/boost_nowide-1.89.0/boost_nowide-config.cmake
-#usr/lib/cmake/boost_nowide-1.89.0/libboost_nowide-variant-a64-shared.cmake
-#usr/lib/cmake/boost_nowide-1.89.0/libboost_nowide-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_numpy-1.89.0
-#usr/lib/cmake/boost_numpy-1.89.0/boost_numpy-config-version.cmake
-#usr/lib/cmake/boost_numpy-1.89.0/boost_numpy-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/boost_prg_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/boost_prg_exec_monitor-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/libboost_prg_exec_monitor-variant-a64-shared.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/libboost_prg_exec_monitor-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_process-1.89.0
-#usr/lib/cmake/boost_process-1.89.0/boost_process-config-version.cmake
-#usr/lib/cmake/boost_process-1.89.0/boost_process-config.cmake
-#usr/lib/cmake/boost_process-1.89.0/libboost_process-variant-a64-shared.cmake
-#usr/lib/cmake/boost_process-1.89.0/libboost_process-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_python-1.89.0
-#usr/lib/cmake/boost_python-1.89.0/boost_python-config-version.cmake
-#usr/lib/cmake/boost_python-1.89.0/boost_python-config.cmake
-#usr/lib/cmake/boost_python-1.89.0/libboost_python-variant-a64-shared-py3.10.cmake
-#usr/lib/cmake/boost_python-1.89.0/libboost_python-variant-mt-a64-shared-py3.10.cmake
-#usr/lib/cmake/boost_random-1.89.0
-#usr/lib/cmake/boost_random-1.89.0/boost_random-config-version.cmake
-#usr/lib/cmake/boost_random-1.89.0/boost_random-config.cmake
-#usr/lib/cmake/boost_random-1.89.0/libboost_random-variant-a64-shared.cmake
-#usr/lib/cmake/boost_random-1.89.0/libboost_random-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_regex-1.89.0
-#usr/lib/cmake/boost_regex-1.89.0/boost_regex-config-version.cmake
-#usr/lib/cmake/boost_regex-1.89.0/boost_regex-config.cmake
-#usr/lib/cmake/boost_regex-1.89.0/libboost_regex-variant-a64-shared.cmake
-#usr/lib/cmake/boost_regex-1.89.0/libboost_regex-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_serialization-1.89.0
-#usr/lib/cmake/boost_serialization-1.89.0/boost_serialization-config-version.cmake
-#usr/lib/cmake/boost_serialization-1.89.0/boost_serialization-config.cmake
-#usr/lib/cmake/boost_serialization-1.89.0/libboost_serialization-variant-a64-shared.cmake
-#usr/lib/cmake/boost_serialization-1.89.0/libboost_serialization-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/boost_stacktrace_addr2line-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/boost_stacktrace_addr2line-config.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/libboost_stacktrace_addr2line-variant-a64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/libboost_stacktrace_addr2line-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/boost_stacktrace_basic-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/boost_stacktrace_basic-config.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/libboost_stacktrace_basic-variant-a64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/libboost_stacktrace_basic-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/boost_stacktrace_noop-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/boost_stacktrace_noop-config.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/libboost_stacktrace_noop-variant-a64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/libboost_stacktrace_noop-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/boost_test_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/boost_test_exec_monitor-config.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/libboost_test_exec_monitor-variant-a64-shared.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/libboost_test_exec_monitor-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_thread-1.89.0
-#usr/lib/cmake/boost_thread-1.89.0/boost_thread-config-version.cmake
-#usr/lib/cmake/boost_thread-1.89.0/boost_thread-config.cmake
-#usr/lib/cmake/boost_thread-1.89.0/libboost_thread-variant-a64-shared.cmake
-#usr/lib/cmake/boost_thread-1.89.0/libboost_thread-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_timer-1.89.0
-#usr/lib/cmake/boost_timer-1.89.0/boost_timer-config-version.cmake
-#usr/lib/cmake/boost_timer-1.89.0/boost_timer-config.cmake
-#usr/lib/cmake/boost_timer-1.89.0/libboost_timer-variant-a64-shared.cmake
-#usr/lib/cmake/boost_timer-1.89.0/libboost_timer-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0
-#usr/lib/cmake/boost_type_erasure-1.89.0/boost_type_erasure-config-version.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0/boost_type_erasure-config.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0/libboost_type_erasure-variant-a64-shared.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0/libboost_type_erasure-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/boost_unit_test_framework-config-version.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/boost_unit_test_framework-config.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/libboost_unit_test_framework-variant-a64-shared.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/libboost_unit_test_framework-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_url-1.89.0
-#usr/lib/cmake/boost_url-1.89.0/boost_url-config-version.cmake
-#usr/lib/cmake/boost_url-1.89.0/boost_url-config.cmake
-#usr/lib/cmake/boost_url-1.89.0/libboost_url-variant-a64-shared.cmake
-#usr/lib/cmake/boost_url-1.89.0/libboost_url-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_wave-1.89.0
-#usr/lib/cmake/boost_wave-1.89.0/boost_wave-config-version.cmake
-#usr/lib/cmake/boost_wave-1.89.0/boost_wave-config.cmake
-#usr/lib/cmake/boost_wave-1.89.0/libboost_wave-variant-a64-shared.cmake
-#usr/lib/cmake/boost_wave-1.89.0/libboost_wave-variant-mt-a64-shared.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0
-#usr/lib/cmake/boost_wserialization-1.89.0/boost_wserialization-config-version.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0/boost_wserialization-config.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0/libboost_wserialization-variant-a64-shared.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0/libboost_wserialization-variant-mt-a64-shared.cmake
+#usr/lib/cmake/Boost-1.90.0
+#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
+#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
+#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
+#usr/lib/cmake/boost_atomic-1.90.0
+#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
+#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
+#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-a64-shared.cmake
+#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.90.0
+#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
+#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
+#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-a64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.90.0
+#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
+#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
+#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-a64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_container-1.90.0
+#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
+#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
+#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-a64-shared.cmake
+#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_context-1.90.0
+#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
+#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
+#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-a64-shared.cmake
+#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_contract-1.90.0
+#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
+#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
+#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-a64-shared.cmake
+#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.90.0
+#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
+#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
+#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-a64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_exception-1.90.0
+#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
+#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0
+#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-a64-shared.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_graph-1.90.0
+#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
+#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
+#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-a64-shared.cmake
+#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_headers-1.90.0
+#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
+#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0
+#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-a64-shared.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_json-1.90.0
+#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
+#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
+#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-a64-shared.cmake
+#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_locale-1.90.0
+#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
+#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
+#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-a64-shared.cmake
+#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_log-1.90.0
+#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
+#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
+#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-a64-shared.cmake
+#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0
+#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-a64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math-1.90.0
+#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
+#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0
+#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0
+#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0
+#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0
+#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0
+#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0
+#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-a64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.90.0
+#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
+#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
+#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-a64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_numpy-1.90.0
+#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
+#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-a64-shared.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_process-1.90.0
+#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
+#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
+#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-a64-shared.cmake
+#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_python-1.90.0
+#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
+#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
+#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-a64-shared-py3.10.cmake
+#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-mt-a64-shared-py3.10.cmake
+#usr/lib/cmake/boost_random-1.90.0
+#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
+#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
+#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-a64-shared.cmake
+#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_regex-1.90.0
+#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
+#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
+#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-a64-shared.cmake
+#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.90.0
+#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
+#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
+#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-a64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-a64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-a64-shared.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_thread-1.90.0
+#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
+#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
+#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-a64-shared.cmake
+#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_timer-1.90.0
+#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
+#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
+#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-a64-shared.cmake
+#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0
+#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-a64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-a64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_url-1.90.0
+#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
+#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
+#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-a64-shared.cmake
+#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_wave-1.90.0
+#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
+#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
+#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-a64-shared.cmake
+#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-mt-a64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0
+#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-a64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-mt-a64-shared.cmake
 #usr/lib/libboost_atomic-mt-a64.so
-usr/lib/libboost_atomic-mt-a64.so.1.89.0
+usr/lib/libboost_atomic-mt-a64.so.1.90.0
 #usr/lib/libboost_charconv-a64.so
-usr/lib/libboost_charconv-a64.so.1.89.0
+usr/lib/libboost_charconv-a64.so.1.90.0
 #usr/lib/libboost_charconv-mt-a64.so
-usr/lib/libboost_charconv-mt-a64.so.1.89.0
+usr/lib/libboost_charconv-mt-a64.so.1.90.0
 #usr/lib/libboost_chrono-a64.so
-usr/lib/libboost_chrono-a64.so.1.89.0
+usr/lib/libboost_chrono-a64.so.1.90.0
 #usr/lib/libboost_chrono-mt-a64.so
-usr/lib/libboost_chrono-mt-a64.so.1.89.0
+usr/lib/libboost_chrono-mt-a64.so.1.90.0
 #usr/lib/libboost_container-a64.so
-usr/lib/libboost_container-a64.so.1.89.0
+usr/lib/libboost_container-a64.so.1.90.0
 #usr/lib/libboost_container-mt-a64.so
-usr/lib/libboost_container-mt-a64.so.1.89.0
+usr/lib/libboost_container-mt-a64.so.1.90.0
 #usr/lib/libboost_context-mt-a64.so
-usr/lib/libboost_context-mt-a64.so.1.89.0
+usr/lib/libboost_context-mt-a64.so.1.90.0
 #usr/lib/libboost_contract-a64.so
-usr/lib/libboost_contract-a64.so.1.89.0
+usr/lib/libboost_contract-a64.so.1.90.0
 #usr/lib/libboost_contract-mt-a64.so
-usr/lib/libboost_contract-mt-a64.so.1.89.0
+usr/lib/libboost_contract-mt-a64.so.1.90.0
 #usr/lib/libboost_date_time-a64.so
-usr/lib/libboost_date_time-a64.so.1.89.0
+usr/lib/libboost_date_time-a64.so.1.90.0
 #usr/lib/libboost_date_time-mt-a64.so
-usr/lib/libboost_date_time-mt-a64.so.1.89.0
+usr/lib/libboost_date_time-mt-a64.so.1.90.0
 #usr/lib/libboost_exception-a64.a
 #usr/lib/libboost_exception-mt-a64.a
 #usr/lib/libboost_filesystem-a64.so
-usr/lib/libboost_filesystem-a64.so.1.89.0
+usr/lib/libboost_filesystem-a64.so.1.90.0
 #usr/lib/libboost_filesystem-mt-a64.so
-usr/lib/libboost_filesystem-mt-a64.so.1.89.0
+usr/lib/libboost_filesystem-mt-a64.so.1.90.0
 #usr/lib/libboost_graph-a64.so
-usr/lib/libboost_graph-a64.so.1.89.0
+usr/lib/libboost_graph-a64.so.1.90.0
 #usr/lib/libboost_graph-mt-a64.so
-usr/lib/libboost_graph-mt-a64.so.1.89.0
+usr/lib/libboost_graph-mt-a64.so.1.90.0
 #usr/lib/libboost_iostreams-a64.so
-usr/lib/libboost_iostreams-a64.so.1.89.0
+usr/lib/libboost_iostreams-a64.so.1.90.0
 #usr/lib/libboost_iostreams-mt-a64.so
-usr/lib/libboost_iostreams-mt-a64.so.1.89.0
+usr/lib/libboost_iostreams-mt-a64.so.1.90.0
 #usr/lib/libboost_json-a64.so
-usr/lib/libboost_json-a64.so.1.89.0
+usr/lib/libboost_json-a64.so.1.90.0
 #usr/lib/libboost_json-mt-a64.so
-usr/lib/libboost_json-mt-a64.so.1.89.0
+usr/lib/libboost_json-mt-a64.so.1.90.0
 #usr/lib/libboost_locale-mt-a64.so
-usr/lib/libboost_locale-mt-a64.so.1.89.0
+usr/lib/libboost_locale-mt-a64.so.1.90.0
 #usr/lib/libboost_log-a64.so
-usr/lib/libboost_log-a64.so.1.89.0
+usr/lib/libboost_log-a64.so.1.90.0
 #usr/lib/libboost_log-mt-a64.so
-usr/lib/libboost_log-mt-a64.so.1.89.0
+usr/lib/libboost_log-mt-a64.so.1.90.0
 #usr/lib/libboost_log_setup-a64.so
-usr/lib/libboost_log_setup-a64.so.1.89.0
+usr/lib/libboost_log_setup-a64.so.1.90.0
 #usr/lib/libboost_log_setup-mt-a64.so
-usr/lib/libboost_log_setup-mt-a64.so.1.89.0
+usr/lib/libboost_log_setup-mt-a64.so.1.90.0
 #usr/lib/libboost_math_c99-a64.so
-usr/lib/libboost_math_c99-a64.so.1.89.0
+usr/lib/libboost_math_c99-a64.so.1.90.0
 #usr/lib/libboost_math_c99-mt-a64.so
-usr/lib/libboost_math_c99-mt-a64.so.1.89.0
+usr/lib/libboost_math_c99-mt-a64.so.1.90.0
 #usr/lib/libboost_math_c99f-a64.so
-usr/lib/libboost_math_c99f-a64.so.1.89.0
+usr/lib/libboost_math_c99f-a64.so.1.90.0
 #usr/lib/libboost_math_c99f-mt-a64.so
-usr/lib/libboost_math_c99f-mt-a64.so.1.89.0
+usr/lib/libboost_math_c99f-mt-a64.so.1.90.0
 #usr/lib/libboost_math_c99l-a64.so
-usr/lib/libboost_math_c99l-a64.so.1.89.0
+usr/lib/libboost_math_c99l-a64.so.1.90.0
 #usr/lib/libboost_math_c99l-mt-a64.so
-usr/lib/libboost_math_c99l-mt-a64.so.1.89.0
+usr/lib/libboost_math_c99l-mt-a64.so.1.90.0
 #usr/lib/libboost_math_tr1-a64.so
-usr/lib/libboost_math_tr1-a64.so.1.89.0
+usr/lib/libboost_math_tr1-a64.so.1.90.0
 #usr/lib/libboost_math_tr1-mt-a64.so
-usr/lib/libboost_math_tr1-mt-a64.so.1.89.0
+usr/lib/libboost_math_tr1-mt-a64.so.1.90.0
 #usr/lib/libboost_math_tr1f-a64.so
-usr/lib/libboost_math_tr1f-a64.so.1.89.0
+usr/lib/libboost_math_tr1f-a64.so.1.90.0
 #usr/lib/libboost_math_tr1f-mt-a64.so
-usr/lib/libboost_math_tr1f-mt-a64.so.1.89.0
+usr/lib/libboost_math_tr1f-mt-a64.so.1.90.0
 #usr/lib/libboost_math_tr1l-a64.so
-usr/lib/libboost_math_tr1l-a64.so.1.89.0
+usr/lib/libboost_math_tr1l-a64.so.1.90.0
 #usr/lib/libboost_math_tr1l-mt-a64.so
-usr/lib/libboost_math_tr1l-mt-a64.so.1.89.0
+usr/lib/libboost_math_tr1l-mt-a64.so.1.90.0
 #usr/lib/libboost_nowide-a64.so
-usr/lib/libboost_nowide-a64.so.1.89.0
+usr/lib/libboost_nowide-a64.so.1.90.0
 #usr/lib/libboost_nowide-mt-a64.so
-usr/lib/libboost_nowide-mt-a64.so.1.89.0
+usr/lib/libboost_nowide-mt-a64.so.1.90.0
 #usr/lib/libboost_prg_exec_monitor-a64.so
-usr/lib/libboost_prg_exec_monitor-a64.so.1.89.0
+usr/lib/libboost_prg_exec_monitor-a64.so.1.90.0
 #usr/lib/libboost_prg_exec_monitor-mt-a64.so
-usr/lib/libboost_prg_exec_monitor-mt-a64.so.1.89.0
+usr/lib/libboost_prg_exec_monitor-mt-a64.so.1.90.0
 #usr/lib/libboost_process-a64.so
-usr/lib/libboost_process-a64.so.1.89.0
+usr/lib/libboost_process-a64.so.1.90.0
 #usr/lib/libboost_process-mt-a64.so
-usr/lib/libboost_process-mt-a64.so.1.89.0
+usr/lib/libboost_process-mt-a64.so.1.90.0
 #usr/lib/libboost_python310-a64.so
-usr/lib/libboost_python310-a64.so.1.89.0
+usr/lib/libboost_python310-a64.so.1.90.0
 #usr/lib/libboost_python310-mt-a64.so
-usr/lib/libboost_python310-mt-a64.so.1.89.0
+usr/lib/libboost_python310-mt-a64.so.1.90.0
 #usr/lib/libboost_random-a64.so
-usr/lib/libboost_random-a64.so.1.89.0
+usr/lib/libboost_random-a64.so.1.90.0
 #usr/lib/libboost_random-mt-a64.so
-usr/lib/libboost_random-mt-a64.so.1.89.0
+usr/lib/libboost_random-mt-a64.so.1.90.0
 #usr/lib/libboost_regex-a64.so
-usr/lib/libboost_regex-a64.so.1.89.0
+usr/lib/libboost_regex-a64.so.1.90.0
 #usr/lib/libboost_regex-mt-a64.so
-usr/lib/libboost_regex-mt-a64.so.1.89.0
+usr/lib/libboost_regex-mt-a64.so.1.90.0
 #usr/lib/libboost_serialization-a64.so
-usr/lib/libboost_serialization-a64.so.1.89.0
+usr/lib/libboost_serialization-a64.so.1.90.0
 #usr/lib/libboost_serialization-mt-a64.so
-usr/lib/libboost_serialization-mt-a64.so.1.89.0
+usr/lib/libboost_serialization-mt-a64.so.1.90.0
 #usr/lib/libboost_stacktrace_addr2line-a64.so
-usr/lib/libboost_stacktrace_addr2line-a64.so.1.89.0
+usr/lib/libboost_stacktrace_addr2line-a64.so.1.90.0
 #usr/lib/libboost_stacktrace_addr2line-mt-a64.so
-usr/lib/libboost_stacktrace_addr2line-mt-a64.so.1.89.0
+usr/lib/libboost_stacktrace_addr2line-mt-a64.so.1.90.0
 #usr/lib/libboost_stacktrace_basic-a64.so
-usr/lib/libboost_stacktrace_basic-a64.so.1.89.0
+usr/lib/libboost_stacktrace_basic-a64.so.1.90.0
 #usr/lib/libboost_stacktrace_basic-mt-a64.so
-usr/lib/libboost_stacktrace_basic-mt-a64.so.1.89.0
+usr/lib/libboost_stacktrace_basic-mt-a64.so.1.90.0
 #usr/lib/libboost_stacktrace_noop-a64.so
-usr/lib/libboost_stacktrace_noop-a64.so.1.89.0
+usr/lib/libboost_stacktrace_noop-a64.so.1.90.0
 #usr/lib/libboost_stacktrace_noop-mt-a64.so
-usr/lib/libboost_stacktrace_noop-mt-a64.so.1.89.0
+usr/lib/libboost_stacktrace_noop-mt-a64.so.1.90.0
 #usr/lib/libboost_test_exec_monitor-a64.a
 #usr/lib/libboost_test_exec_monitor-mt-a64.a
 #usr/lib/libboost_thread-mt-a64.so
-usr/lib/libboost_thread-mt-a64.so.1.89.0
+usr/lib/libboost_thread-mt-a64.so.1.90.0
 #usr/lib/libboost_timer-a64.so
-usr/lib/libboost_timer-a64.so.1.89.0
+usr/lib/libboost_timer-a64.so.1.90.0
 #usr/lib/libboost_timer-mt-a64.so
-usr/lib/libboost_timer-mt-a64.so.1.89.0
+usr/lib/libboost_timer-mt-a64.so.1.90.0
 #usr/lib/libboost_type_erasure-a64.so
-usr/lib/libboost_type_erasure-a64.so.1.89.0
+usr/lib/libboost_type_erasure-a64.so.1.90.0
 #usr/lib/libboost_type_erasure-mt-a64.so
-usr/lib/libboost_type_erasure-mt-a64.so.1.89.0
+usr/lib/libboost_type_erasure-mt-a64.so.1.90.0
 #usr/lib/libboost_unit_test_framework-a64.so
-usr/lib/libboost_unit_test_framework-a64.so.1.89.0
+usr/lib/libboost_unit_test_framework-a64.so.1.90.0
 #usr/lib/libboost_unit_test_framework-mt-a64.so
-usr/lib/libboost_unit_test_framework-mt-a64.so.1.89.0
+usr/lib/libboost_unit_test_framework-mt-a64.so.1.90.0
 #usr/lib/libboost_url-a64.so
-usr/lib/libboost_url-a64.so.1.89.0
+usr/lib/libboost_url-a64.so.1.90.0
 #usr/lib/libboost_url-mt-a64.so
-usr/lib/libboost_url-mt-a64.so.1.89.0
+usr/lib/libboost_url-mt-a64.so.1.90.0
 #usr/lib/libboost_wave-a64.so
-usr/lib/libboost_wave-a64.so.1.89.0
+usr/lib/libboost_wave-a64.so.1.90.0
 #usr/lib/libboost_wave-mt-a64.so
-usr/lib/libboost_wave-mt-a64.so.1.89.0
+usr/lib/libboost_wave-mt-a64.so.1.90.0
 #usr/lib/libboost_wserialization-a64.so
-usr/lib/libboost_wserialization-a64.so.1.89.0
+usr/lib/libboost_wserialization-a64.so.1.90.0
 #usr/lib/libboost_wserialization-mt-a64.so
-usr/lib/libboost_wserialization-mt-a64.so.1.89.0
+usr/lib/libboost_wserialization-mt-a64.so.1.90.0
 #usr/share/boost_predef
 #usr/share/boost_predef/build.jam
 #usr/share/boost_predef/tools
diff --git a/config/rootfiles/common/riscv64/boost b/config/rootfiles/common/riscv64/boost
index d069a006e..e79c5778b 100644
--- a/config/rootfiles/common/riscv64/boost
+++ b/config/rootfiles/common/riscv64/boost
@@ -733,6 +733,7 @@
 #usr/include/boost/asio/execution/executor.hpp
 #usr/include/boost/asio/execution/impl
 #usr/include/boost/asio/execution/impl/bad_executor.ipp
+#usr/include/boost/asio/execution/inline_exception_handling.hpp
 #usr/include/boost/asio/execution/invocable_archetype.hpp
 #usr/include/boost/asio/execution/mapping.hpp
 #usr/include/boost/asio/execution/occupancy.hpp
@@ -827,6 +828,7 @@
 #usr/include/boost/asio/impl/read.hpp
 #usr/include/boost/asio/impl/read_at.hpp
 #usr/include/boost/asio/impl/read_until.hpp
+#usr/include/boost/asio/impl/redirect_disposition.hpp
 #usr/include/boost/asio/impl/redirect_error.hpp
 #usr/include/boost/asio/impl/serial_port_base.hpp
 #usr/include/boost/asio/impl/serial_port_base.ipp
@@ -841,6 +843,8 @@
 #usr/include/boost/asio/impl/use_future.hpp
 #usr/include/boost/asio/impl/write.hpp
 #usr/include/boost/asio/impl/write_at.hpp
+#usr/include/boost/asio/inline_executor.hpp
+#usr/include/boost/asio/inline_or_executor.hpp
 #usr/include/boost/asio/io_context.hpp
 #usr/include/boost/asio/io_context_strand.hpp
 #usr/include/boost/asio/ip
@@ -921,6 +925,7 @@
 #usr/include/boost/asio/read_until.hpp
 #usr/include/boost/asio/readable_pipe.hpp
 #usr/include/boost/asio/recycling_allocator.hpp
+#usr/include/boost/asio/redirect_disposition.hpp
 #usr/include/boost/asio/redirect_error.hpp
 #usr/include/boost/asio/registered_buffer.hpp
 #usr/include/boost/asio/require.hpp
@@ -1854,6 +1859,8 @@
 #usr/include/boost/cobalt/io/acceptor.hpp
 #usr/include/boost/cobalt/io/buffer.hpp
 #usr/include/boost/cobalt/io/datagram_socket.hpp
+#usr/include/boost/cobalt/io/detail
+#usr/include/boost/cobalt/io/detail/config.hpp
 #usr/include/boost/cobalt/io/endpoint.hpp
 #usr/include/boost/cobalt/io/file.hpp
 #usr/include/boost/cobalt/io/ops.hpp
@@ -1894,6 +1901,7 @@
 #usr/include/boost/compat/bind_back.hpp
 #usr/include/boost/compat/bind_front.hpp
 #usr/include/boost/compat/detail
+#usr/include/boost/compat/detail/nontype.hpp
 #usr/include/boost/compat/detail/returns.hpp
 #usr/include/boost/compat/detail/throw_system_error.hpp
 #usr/include/boost/compat/function_ref.hpp
@@ -1904,6 +1912,7 @@
 #usr/include/boost/compat/move_only_function.hpp
 #usr/include/boost/compat/shared_lock.hpp
 #usr/include/boost/compat/to_array.hpp
+#usr/include/boost/compat/to_underlying.hpp
 #usr/include/boost/compat/type_traits.hpp
 #usr/include/boost/compressed_pair.hpp
 #usr/include/boost/compute
@@ -2418,6 +2427,7 @@
 #usr/include/boost/container/detail/node_alloc_holder.hpp
 #usr/include/boost/container/detail/node_pool.hpp
 #usr/include/boost/container/detail/node_pool_impl.hpp
+#usr/include/boost/container/detail/operator_new_helpers.hpp
 #usr/include/boost/container/detail/pair.hpp
 #usr/include/boost/container/detail/pair_key_mapped_of_value.hpp
 #usr/include/boost/container/detail/placement_new.hpp
@@ -2635,6 +2645,7 @@
 #usr/include/boost/core/detail/sp_thread_yield.hpp
 #usr/include/boost/core/detail/sp_win32_sleep.hpp
 #usr/include/boost/core/detail/splitmix64.hpp
+#usr/include/boost/core/detail/static_assert.hpp
 #usr/include/boost/core/detail/string_view.hpp
 #usr/include/boost/core/empty_value.hpp
 #usr/include/boost/core/enable_if.hpp
@@ -3017,6 +3028,8 @@
 #usr/include/boost/dynamic_bitset/detail/dynamic_bitset.hpp
 #usr/include/boost/dynamic_bitset/detail/lowest_bit.hpp
 #usr/include/boost/dynamic_bitset/dynamic_bitset.hpp
+#usr/include/boost/dynamic_bitset/impl
+#usr/include/boost/dynamic_bitset/impl/dynamic_bitset.ipp
 #usr/include/boost/dynamic_bitset/serialization.hpp
 #usr/include/boost/dynamic_bitset_fwd.hpp
 #usr/include/boost/enable_shared_from_this.hpp
@@ -4658,6 +4671,7 @@
 #usr/include/boost/geometry/algorithms/detail/is_valid/multipolygon.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/pointlike.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/polygon.hpp
+#usr/include/boost/geometry/algorithms/detail/is_valid/polyhedral_surface.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/ring.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/segment.hpp
 #usr/include/boost/geometry/algorithms/detail/make
@@ -5366,6 +5380,7 @@
 #usr/include/boost/geometry/strategies/cartesian/point_in_poly_franklin.hpp
 #usr/include/boost/geometry/strategies/cartesian/point_in_poly_winding.hpp
 #usr/include/boost/geometry/strategies/cartesian/point_order.hpp
+#usr/include/boost/geometry/strategies/cartesian/side_3d_rounded_input.hpp
 #usr/include/boost/geometry/strategies/cartesian/side_rounded_input.hpp
 #usr/include/boost/geometry/strategies/cartesian/turn_in_ring_winding.hpp
 #usr/include/boost/geometry/strategies/centroid
@@ -5501,6 +5516,9 @@
 #usr/include/boost/geometry/strategies/relate/geographic.hpp
 #usr/include/boost/geometry/strategies/relate/services.hpp
 #usr/include/boost/geometry/strategies/relate/spherical.hpp
+#usr/include/boost/geometry/strategies/relate3
+#usr/include/boost/geometry/strategies/relate3/cartesian.hpp
+#usr/include/boost/geometry/strategies/relate3/services.hpp
 #usr/include/boost/geometry/strategies/side.hpp
 #usr/include/boost/geometry/strategies/side_info.hpp
 #usr/include/boost/geometry/strategies/simplify
@@ -7672,6 +7690,7 @@
 #usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
 #usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
 #usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
+#usr/include/boost/lexical_cast/detail/type_traits.hpp
 #usr/include/boost/lexical_cast/detail/widest_char.hpp
 #usr/include/boost/lexical_cast/try_lexical_convert.hpp
 #usr/include/boost/limits.hpp
@@ -8156,6 +8175,20 @@
 #usr/include/boost/math/differentiation
 #usr/include/boost/math/differentiation/autodiff.hpp
 #usr/include/boost/math/differentiation/autodiff_cpp11.hpp
+#usr/include/boost/math/differentiation/autodiff_reverse.hpp
+#usr/include/boost/math/differentiation/detail
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_operator_expressions.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_no_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_comparison_operator_overloads.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_erf_overloads.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_expression_template_base.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_helper_functions.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_memory_management.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_stl_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_stl_expressions.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_stl_no_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_utilities.hpp
 #usr/include/boost/math/differentiation/finite_difference.hpp
 #usr/include/boost/math/differentiation/lanczos_smoothing.hpp
 #usr/include/boost/math/distributions
@@ -8387,6 +8420,8 @@
 #usr/include/boost/math/special_functions/legendre_stieltjes.hpp
 #usr/include/boost/math/special_functions/log1p.hpp
 #usr/include/boost/math/special_functions/logaddexp.hpp
+#usr/include/boost/math/special_functions/logistic_sigmoid.hpp
+#usr/include/boost/math/special_functions/logit.hpp
 #usr/include/boost/math/special_functions/logsumexp.hpp
 #usr/include/boost/math/special_functions/math_fwd.hpp
 #usr/include/boost/math/special_functions/modf.hpp
@@ -10253,10 +10288,22 @@
 #usr/include/boost/msm/back/queue_container_deque.hpp
 #usr/include/boost/msm/back/state_machine.hpp
 #usr/include/boost/msm/back/tools.hpp
+#usr/include/boost/msm/back/traits.hpp
 #usr/include/boost/msm/back11
 #usr/include/boost/msm/back11/dispatch_table.hpp
 #usr/include/boost/msm/back11/metafunctions.hpp
 #usr/include/boost/msm/back11/state_machine.hpp
+#usr/include/boost/msm/backmp11
+#usr/include/boost/msm/backmp11/common_types.hpp
+#usr/include/boost/msm/backmp11/detail
+#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
+#usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
+#usr/include/boost/msm/backmp11/detail/history_impl.hpp
+#usr/include/boost/msm/backmp11/detail/metafunctions.hpp
+#usr/include/boost/msm/backmp11/event_traits.hpp
+#usr/include/boost/msm/backmp11/favor_compile_time.hpp
+#usr/include/boost/msm/backmp11/state_machine.hpp
+#usr/include/boost/msm/backmp11/state_machine_config.hpp
 #usr/include/boost/msm/common.hpp
 #usr/include/boost/msm/event_traits.hpp
 #usr/include/boost/msm/front
@@ -10281,6 +10328,7 @@
 #usr/include/boost/msm/front/euml/stt_grammar.hpp
 #usr/include/boost/msm/front/euml/transformation.hpp
 #usr/include/boost/msm/front/functor_row.hpp
+#usr/include/boost/msm/front/history_policies.hpp
 #usr/include/boost/msm/front/internal_row.hpp
 #usr/include/boost/msm/front/operator.hpp
 #usr/include/boost/msm/front/puml
@@ -10288,6 +10336,7 @@
 #usr/include/boost/msm/front/row2.hpp
 #usr/include/boost/msm/front/state_machine_def.hpp
 #usr/include/boost/msm/front/states.hpp
+#usr/include/boost/msm/kleene_event.hpp
 #usr/include/boost/msm/mpl_graph
 #usr/include/boost/msm/mpl_graph/adjacency_list_graph.hpp
 #usr/include/boost/msm/mpl_graph/breadth_first_search.hpp
@@ -11117,6 +11166,29 @@
 #usr/include/boost/numeric/ublas/vector_of_vector.hpp
 #usr/include/boost/numeric/ublas/vector_proxy.hpp
 #usr/include/boost/numeric/ublas/vector_sparse.hpp
+#usr/include/boost/openmethod
+#usr/include/boost/openmethod.hpp
+#usr/include/boost/openmethod/core.hpp
+#usr/include/boost/openmethod/default_registry.hpp
+#usr/include/boost/openmethod/detail
+#usr/include/boost/openmethod/detail/ostdstream.hpp
+#usr/include/boost/openmethod/detail/static_list.hpp
+#usr/include/boost/openmethod/initialize.hpp
+#usr/include/boost/openmethod/inplace_vptr.hpp
+#usr/include/boost/openmethod/interop
+#usr/include/boost/openmethod/interop/std_shared_ptr.hpp
+#usr/include/boost/openmethod/interop/std_unique_ptr.hpp
+#usr/include/boost/openmethod/macros.hpp
+#usr/include/boost/openmethod/policies
+#usr/include/boost/openmethod/policies/default_error_handler.hpp
+#usr/include/boost/openmethod/policies/fast_perfect_hash.hpp
+#usr/include/boost/openmethod/policies/static_rtti.hpp
+#usr/include/boost/openmethod/policies/std_rtti.hpp
+#usr/include/boost/openmethod/policies/stderr_output.hpp
+#usr/include/boost/openmethod/policies/throw_error_handler.hpp
+#usr/include/boost/openmethod/policies/vptr_map.hpp
+#usr/include/boost/openmethod/policies/vptr_vector.hpp
+#usr/include/boost/openmethod/preamble.hpp
 #usr/include/boost/operators.hpp
 #usr/include/boost/operators_v1.hpp
 #usr/include/boost/optional
@@ -11416,6 +11488,7 @@
 #usr/include/boost/pfr/detail/core14_loophole.hpp
 #usr/include/boost/pfr/detail/core17.hpp
 #usr/include/boost/pfr/detail/core17_generated.hpp
+#usr/include/boost/pfr/detail/core26.hpp
 #usr/include/boost/pfr/detail/core_name.hpp
 #usr/include/boost/pfr/detail/core_name14_disabled.hpp
 #usr/include/boost/pfr/detail/core_name20_static.hpp
@@ -13676,31 +13749,38 @@
 #usr/include/boost/redis/config.hpp
 #usr/include/boost/redis/connection.hpp
 #usr/include/boost/redis/detail
-#usr/include/boost/redis/detail/connection_logger.hpp
+#usr/include/boost/redis/detail/connect_fsm.hpp
+#usr/include/boost/redis/detail/connection_state.hpp
 #usr/include/boost/redis/detail/coroutine.hpp
 #usr/include/boost/redis/detail/exec_fsm.hpp
-#usr/include/boost/redis/detail/health_checker.hpp
-#usr/include/boost/redis/detail/helper.hpp
 #usr/include/boost/redis/detail/multiplexer.hpp
+#usr/include/boost/redis/detail/read_buffer.hpp
 #usr/include/boost/redis/detail/reader_fsm.hpp
 #usr/include/boost/redis/detail/redis_stream.hpp
-#usr/include/boost/redis/detail/resp3_handshaker.hpp
+#usr/include/boost/redis/detail/resp3_type_to_error.hpp
+#usr/include/boost/redis/detail/run_fsm.hpp
 #usr/include/boost/redis/detail/write.hpp
+#usr/include/boost/redis/detail/writer_fsm.hpp
 #usr/include/boost/redis/error.hpp
 #usr/include/boost/redis/ignore.hpp
 #usr/include/boost/redis/impl
+#usr/include/boost/redis/impl/connect_fsm.ipp
 #usr/include/boost/redis/impl/connection.ipp
-#usr/include/boost/redis/impl/connection_logger.ipp
 #usr/include/boost/redis/impl/error.ipp
 #usr/include/boost/redis/impl/exec_fsm.ipp
 #usr/include/boost/redis/impl/ignore.ipp
+#usr/include/boost/redis/impl/is_terminal_cancel.hpp
 #usr/include/boost/redis/impl/log_to_file.hpp
+#usr/include/boost/redis/impl/log_utils.hpp
 #usr/include/boost/redis/impl/logger.ipp
 #usr/include/boost/redis/impl/multiplexer.ipp
+#usr/include/boost/redis/impl/read_buffer.ipp
 #usr/include/boost/redis/impl/reader_fsm.ipp
 #usr/include/boost/redis/impl/request.ipp
-#usr/include/boost/redis/impl/resp3_handshaker.ipp
 #usr/include/boost/redis/impl/response.ipp
+#usr/include/boost/redis/impl/run_fsm.ipp
+#usr/include/boost/redis/impl/setup_request_utils.hpp
+#usr/include/boost/redis/impl/writer_fsm.ipp
 #usr/include/boost/redis/logger.hpp
 #usr/include/boost/redis/operation.hpp
 #usr/include/boost/redis/request.hpp
@@ -13979,66 +14059,33 @@
 #usr/include/boost/smart_ptr/bad_weak_ptr.hpp
 #usr/include/boost/smart_ptr/detail
 #usr/include/boost/smart_ptr/detail/atomic_count.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_gcc.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp
 #usr/include/boost/smart_ptr/detail/atomic_count_nt.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_pt.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_spin.hpp
 #usr/include/boost/smart_ptr/detail/atomic_count_std_atomic.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_sync.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_win32.hpp
 #usr/include/boost/smart_ptr/detail/deprecated_macros.hpp
 #usr/include/boost/smart_ptr/detail/lightweight_mutex.hpp
 #usr/include/boost/smart_ptr/detail/lightweight_thread.hpp
 #usr/include/boost/smart_ptr/detail/local_counted_base.hpp
 #usr/include/boost/smart_ptr/detail/local_sp_deleter.hpp
-#usr/include/boost/smart_ptr/detail/lwm_pthreads.hpp
 #usr/include/boost/smart_ptr/detail/lwm_std_mutex.hpp
-#usr/include/boost/smart_ptr/detail/lwm_win32_cs.hpp
 #usr/include/boost/smart_ptr/detail/quick_allocator.hpp
 #usr/include/boost/smart_ptr/detail/shared_count.hpp
 #usr/include/boost/smart_ptr/detail/sp_convertible.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_base.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_impl.hpp
 #usr/include/boost/smart_ptr/detail/sp_cxx20_constexpr.hpp
 #usr/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp
-#usr/include/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp
-#usr/include/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp
-#usr/include/boost/smart_ptr/detail/sp_interlocked.hpp
 #usr/include/boost/smart_ptr/detail/sp_noexcept.hpp
-#usr/include/boost/smart_ptr/detail/sp_obsolete.hpp
 #usr/include/boost/smart_ptr/detail/sp_thread_pause.hpp
 #usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp
 #usr/include/boost/smart_ptr/detail/sp_thread_yield.hpp
 #usr/include/boost/smart_ptr/detail/sp_type_traits.hpp
 #usr/include/boost/smart_ptr/detail/sp_typeinfo_.hpp
 #usr/include/boost/smart_ptr/detail/spinlock.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp
 #usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_nt.hpp
 #usr/include/boost/smart_ptr/detail/spinlock_pool.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_pt.hpp
 #usr/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_sync.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_w32.hpp
 #usr/include/boost/smart_ptr/detail/yield_k.hpp
 #usr/include/boost/smart_ptr/enable_shared_from.hpp
 #usr/include/boost/smart_ptr/enable_shared_from_raw.hpp
@@ -16556,6 +16603,7 @@
 #usr/include/boost/unordered/detail/static_assert.hpp
 #usr/include/boost/unordered/detail/throw_exception.hpp
 #usr/include/boost/unordered/detail/type_traits.hpp
+#usr/include/boost/unordered/detail/unordered_printers.hpp
 #usr/include/boost/unordered/detail/xmx.hpp
 #usr/include/boost/unordered/hash_traits.hpp
 #usr/include/boost/unordered/unordered_flat_map.hpp
@@ -16568,7 +16616,6 @@
 #usr/include/boost/unordered/unordered_node_map_fwd.hpp
 #usr/include/boost/unordered/unordered_node_set.hpp
 #usr/include/boost/unordered/unordered_node_set_fwd.hpp
-#usr/include/boost/unordered/unordered_printers.hpp
 #usr/include/boost/unordered/unordered_set.hpp
 #usr/include/boost/unordered/unordered_set_fwd.hpp
 #usr/include/boost/unordered_map.hpp
@@ -16591,6 +16638,7 @@
 #usr/include/boost/url/detail/parts_base.hpp
 #usr/include/boost/url/detail/replacement_field_rule.hpp
 #usr/include/boost/url/detail/segments_iter_impl.hpp
+#usr/include/boost/url/detail/segments_range.hpp
 #usr/include/boost/url/detail/string_view.hpp
 #usr/include/boost/url/detail/url_impl.hpp
 #usr/include/boost/url/detail/vformat.hpp
@@ -16735,6 +16783,7 @@
 #usr/include/boost/uuid.hpp
 #usr/include/boost/uuid/basic_name_generator.hpp
 #usr/include/boost/uuid/basic_random_generator.hpp
+#usr/include/boost/uuid/constants.hpp
 #usr/include/boost/uuid/detail
 #usr/include/boost/uuid/detail/basic_name_generator.hpp
 #usr/include/boost/uuid/detail/chacha20.hpp
@@ -16742,6 +16791,7 @@
 #usr/include/boost/uuid/detail/endian.hpp
 #usr/include/boost/uuid/detail/hash_mix.hpp
 #usr/include/boost/uuid/detail/md5.hpp
+#usr/include/boost/uuid/detail/nil_uuid.hpp
 #usr/include/boost/uuid/detail/numeric_cast.hpp
 #usr/include/boost/uuid/detail/random_device.hpp
 #usr/include/boost/uuid/detail/random_provider.hpp
@@ -16752,6 +16802,7 @@
 #usr/include/boost/uuid/detail/uuid_uint128.ipp
 #usr/include/boost/uuid/detail/uuid_x86.ipp
 #usr/include/boost/uuid/entropy_error.hpp
+#usr/include/boost/uuid/generators.hpp
 #usr/include/boost/uuid/name_generator.hpp
 #usr/include/boost/uuid/name_generator_md5.hpp
 #usr/include/boost/uuid/name_generator_sha1.hpp
@@ -17253,356 +17304,356 @@
 #usr/include/boost/yap/print.hpp
 #usr/include/boost/yap/user_macros.hpp
 #usr/include/boost/yap/yap.hpp
-#usr/lib/cmake/Boost-1.89.0
-#usr/lib/cmake/Boost-1.89.0/BoostConfig.cmake
-#usr/lib/cmake/Boost-1.89.0/BoostConfigVersion.cmake
-#usr/lib/cmake/BoostDetectToolset-1.89.0.cmake
-#usr/lib/cmake/boost_atomic-1.89.0
-#usr/lib/cmake/boost_atomic-1.89.0/boost_atomic-config-version.cmake
-#usr/lib/cmake/boost_atomic-1.89.0/boost_atomic-config.cmake
-#usr/lib/cmake/boost_atomic-1.89.0/libboost_atomic-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_atomic-1.89.0/libboost_atomic-variant-r64-shared.cmake
-#usr/lib/cmake/boost_charconv-1.89.0
-#usr/lib/cmake/boost_charconv-1.89.0/boost_charconv-config-version.cmake
-#usr/lib/cmake/boost_charconv-1.89.0/boost_charconv-config.cmake
-#usr/lib/cmake/boost_charconv-1.89.0/libboost_charconv-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_charconv-1.89.0/libboost_charconv-variant-r64-shared.cmake
-#usr/lib/cmake/boost_chrono-1.89.0
-#usr/lib/cmake/boost_chrono-1.89.0/boost_chrono-config-version.cmake
-#usr/lib/cmake/boost_chrono-1.89.0/boost_chrono-config.cmake
-#usr/lib/cmake/boost_chrono-1.89.0/libboost_chrono-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_chrono-1.89.0/libboost_chrono-variant-r64-shared.cmake
-#usr/lib/cmake/boost_container-1.89.0
-#usr/lib/cmake/boost_container-1.89.0/boost_container-config-version.cmake
-#usr/lib/cmake/boost_container-1.89.0/boost_container-config.cmake
-#usr/lib/cmake/boost_container-1.89.0/libboost_container-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_container-1.89.0/libboost_container-variant-r64-shared.cmake
-#usr/lib/cmake/boost_context-1.89.0
-#usr/lib/cmake/boost_context-1.89.0/boost_context-config-version.cmake
-#usr/lib/cmake/boost_context-1.89.0/boost_context-config.cmake
-#usr/lib/cmake/boost_context-1.89.0/libboost_context-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_context-1.89.0/libboost_context-variant-r64-shared.cmake
-#usr/lib/cmake/boost_contract-1.89.0
-#usr/lib/cmake/boost_contract-1.89.0/boost_contract-config-version.cmake
-#usr/lib/cmake/boost_contract-1.89.0/boost_contract-config.cmake
-#usr/lib/cmake/boost_contract-1.89.0/libboost_contract-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_contract-1.89.0/libboost_contract-variant-r64-shared.cmake
-#usr/lib/cmake/boost_date_time-1.89.0
-#usr/lib/cmake/boost_date_time-1.89.0/boost_date_time-config-version.cmake
-#usr/lib/cmake/boost_date_time-1.89.0/boost_date_time-config.cmake
-#usr/lib/cmake/boost_date_time-1.89.0/libboost_date_time-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_date_time-1.89.0/libboost_date_time-variant-r64-shared.cmake
-#usr/lib/cmake/boost_exception-1.89.0
-#usr/lib/cmake/boost_exception-1.89.0/boost_exception-config-version.cmake
-#usr/lib/cmake/boost_exception-1.89.0/boost_exception-config.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0
-#usr/lib/cmake/boost_filesystem-1.89.0/boost_filesystem-config-version.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0/boost_filesystem-config.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0/libboost_filesystem-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0/libboost_filesystem-variant-r64-shared.cmake
-#usr/lib/cmake/boost_graph-1.89.0
-#usr/lib/cmake/boost_graph-1.89.0/boost_graph-config-version.cmake
-#usr/lib/cmake/boost_graph-1.89.0/boost_graph-config.cmake
-#usr/lib/cmake/boost_graph-1.89.0/libboost_graph-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_graph-1.89.0/libboost_graph-variant-r64-shared.cmake
-#usr/lib/cmake/boost_headers-1.89.0
-#usr/lib/cmake/boost_headers-1.89.0/boost_headers-config-version.cmake
-#usr/lib/cmake/boost_headers-1.89.0/boost_headers-config.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0
-#usr/lib/cmake/boost_iostreams-1.89.0/boost_iostreams-config-version.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0/boost_iostreams-config.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0/libboost_iostreams-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0/libboost_iostreams-variant-r64-shared.cmake
-#usr/lib/cmake/boost_json-1.89.0
-#usr/lib/cmake/boost_json-1.89.0/boost_json-config-version.cmake
-#usr/lib/cmake/boost_json-1.89.0/boost_json-config.cmake
-#usr/lib/cmake/boost_json-1.89.0/libboost_json-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_json-1.89.0/libboost_json-variant-r64-shared.cmake
-#usr/lib/cmake/boost_locale-1.89.0
-#usr/lib/cmake/boost_locale-1.89.0/boost_locale-config-version.cmake
-#usr/lib/cmake/boost_locale-1.89.0/boost_locale-config.cmake
-#usr/lib/cmake/boost_locale-1.89.0/libboost_locale-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_locale-1.89.0/libboost_locale-variant-r64-shared.cmake
-#usr/lib/cmake/boost_log-1.89.0
-#usr/lib/cmake/boost_log-1.89.0/boost_log-config-version.cmake
-#usr/lib/cmake/boost_log-1.89.0/boost_log-config.cmake
-#usr/lib/cmake/boost_log-1.89.0/libboost_log-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_log-1.89.0/libboost_log-variant-r64-shared.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0
-#usr/lib/cmake/boost_log_setup-1.89.0/boost_log_setup-config-version.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0/boost_log_setup-config.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0/libboost_log_setup-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0/libboost_log_setup-variant-r64-shared.cmake
-#usr/lib/cmake/boost_math-1.89.0
-#usr/lib/cmake/boost_math-1.89.0/boost_math-config-version.cmake
-#usr/lib/cmake/boost_math-1.89.0/boost_math-config.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0
-#usr/lib/cmake/boost_math_c99-1.89.0/boost_math_c99-config-version.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0/boost_math_c99-config.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0/libboost_math_c99-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0/libboost_math_c99-variant-r64-shared.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0
-#usr/lib/cmake/boost_math_c99f-1.89.0/boost_math_c99f-config-version.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0/boost_math_c99f-config.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0/libboost_math_c99f-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0/libboost_math_c99f-variant-r64-shared.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0
-#usr/lib/cmake/boost_math_c99l-1.89.0/boost_math_c99l-config-version.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0/boost_math_c99l-config.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0/libboost_math_c99l-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0/libboost_math_c99l-variant-r64-shared.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0
-#usr/lib/cmake/boost_math_tr1-1.89.0/boost_math_tr1-config-version.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0/boost_math_tr1-config.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0/libboost_math_tr1-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0/libboost_math_tr1-variant-r64-shared.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0
-#usr/lib/cmake/boost_math_tr1f-1.89.0/boost_math_tr1f-config-version.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0/boost_math_tr1f-config.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0/libboost_math_tr1f-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0/libboost_math_tr1f-variant-r64-shared.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0
-#usr/lib/cmake/boost_math_tr1l-1.89.0/boost_math_tr1l-config-version.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0/boost_math_tr1l-config.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0/libboost_math_tr1l-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0/libboost_math_tr1l-variant-r64-shared.cmake
-#usr/lib/cmake/boost_nowide-1.89.0
-#usr/lib/cmake/boost_nowide-1.89.0/boost_nowide-config-version.cmake
-#usr/lib/cmake/boost_nowide-1.89.0/boost_nowide-config.cmake
-#usr/lib/cmake/boost_nowide-1.89.0/libboost_nowide-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_nowide-1.89.0/libboost_nowide-variant-r64-shared.cmake
-#usr/lib/cmake/boost_numpy-1.89.0
-#usr/lib/cmake/boost_numpy-1.89.0/boost_numpy-config-version.cmake
-#usr/lib/cmake/boost_numpy-1.89.0/boost_numpy-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/boost_prg_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/boost_prg_exec_monitor-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/libboost_prg_exec_monitor-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/libboost_prg_exec_monitor-variant-r64-shared.cmake
-#usr/lib/cmake/boost_process-1.89.0
-#usr/lib/cmake/boost_process-1.89.0/boost_process-config-version.cmake
-#usr/lib/cmake/boost_process-1.89.0/boost_process-config.cmake
-#usr/lib/cmake/boost_process-1.89.0/libboost_process-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_process-1.89.0/libboost_process-variant-r64-shared.cmake
-#usr/lib/cmake/boost_python-1.89.0
-#usr/lib/cmake/boost_python-1.89.0/boost_python-config-version.cmake
-#usr/lib/cmake/boost_python-1.89.0/boost_python-config.cmake
-#usr/lib/cmake/boost_python-1.89.0/libboost_python-variant-mt-r64-shared-py3.10.cmake
-#usr/lib/cmake/boost_python-1.89.0/libboost_python-variant-r64-shared-py3.10.cmake
-#usr/lib/cmake/boost_random-1.89.0
-#usr/lib/cmake/boost_random-1.89.0/boost_random-config-version.cmake
-#usr/lib/cmake/boost_random-1.89.0/boost_random-config.cmake
-#usr/lib/cmake/boost_random-1.89.0/libboost_random-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_random-1.89.0/libboost_random-variant-r64-shared.cmake
-#usr/lib/cmake/boost_regex-1.89.0
-#usr/lib/cmake/boost_regex-1.89.0/boost_regex-config-version.cmake
-#usr/lib/cmake/boost_regex-1.89.0/boost_regex-config.cmake
-#usr/lib/cmake/boost_regex-1.89.0/libboost_regex-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_regex-1.89.0/libboost_regex-variant-r64-shared.cmake
-#usr/lib/cmake/boost_serialization-1.89.0
-#usr/lib/cmake/boost_serialization-1.89.0/boost_serialization-config-version.cmake
-#usr/lib/cmake/boost_serialization-1.89.0/boost_serialization-config.cmake
-#usr/lib/cmake/boost_serialization-1.89.0/libboost_serialization-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_serialization-1.89.0/libboost_serialization-variant-r64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/boost_stacktrace_addr2line-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/boost_stacktrace_addr2line-config.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/libboost_stacktrace_addr2line-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/libboost_stacktrace_addr2line-variant-r64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/boost_stacktrace_basic-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/boost_stacktrace_basic-config.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/libboost_stacktrace_basic-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/libboost_stacktrace_basic-variant-r64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/boost_stacktrace_noop-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/boost_stacktrace_noop-config.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/libboost_stacktrace_noop-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/libboost_stacktrace_noop-variant-r64-shared.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/boost_test_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/boost_test_exec_monitor-config.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/libboost_test_exec_monitor-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/libboost_test_exec_monitor-variant-r64-shared.cmake
-#usr/lib/cmake/boost_thread-1.89.0
-#usr/lib/cmake/boost_thread-1.89.0/boost_thread-config-version.cmake
-#usr/lib/cmake/boost_thread-1.89.0/boost_thread-config.cmake
-#usr/lib/cmake/boost_thread-1.89.0/libboost_thread-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_thread-1.89.0/libboost_thread-variant-r64-shared.cmake
-#usr/lib/cmake/boost_timer-1.89.0
-#usr/lib/cmake/boost_timer-1.89.0/boost_timer-config-version.cmake
-#usr/lib/cmake/boost_timer-1.89.0/boost_timer-config.cmake
-#usr/lib/cmake/boost_timer-1.89.0/libboost_timer-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_timer-1.89.0/libboost_timer-variant-r64-shared.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0
-#usr/lib/cmake/boost_type_erasure-1.89.0/boost_type_erasure-config-version.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0/boost_type_erasure-config.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0/libboost_type_erasure-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0/libboost_type_erasure-variant-r64-shared.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/boost_unit_test_framework-config-version.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/boost_unit_test_framework-config.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/libboost_unit_test_framework-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/libboost_unit_test_framework-variant-r64-shared.cmake
-#usr/lib/cmake/boost_url-1.89.0
-#usr/lib/cmake/boost_url-1.89.0/boost_url-config-version.cmake
-#usr/lib/cmake/boost_url-1.89.0/boost_url-config.cmake
-#usr/lib/cmake/boost_url-1.89.0/libboost_url-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_url-1.89.0/libboost_url-variant-r64-shared.cmake
-#usr/lib/cmake/boost_wave-1.89.0
-#usr/lib/cmake/boost_wave-1.89.0/boost_wave-config-version.cmake
-#usr/lib/cmake/boost_wave-1.89.0/boost_wave-config.cmake
-#usr/lib/cmake/boost_wave-1.89.0/libboost_wave-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_wave-1.89.0/libboost_wave-variant-r64-shared.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0
-#usr/lib/cmake/boost_wserialization-1.89.0/boost_wserialization-config-version.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0/boost_wserialization-config.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0/libboost_wserialization-variant-mt-r64-shared.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0/libboost_wserialization-variant-r64-shared.cmake
+#usr/lib/cmake/Boost-1.90.0
+#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
+#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
+#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
+#usr/lib/cmake/boost_atomic-1.90.0
+#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
+#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
+#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-r64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.90.0
+#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
+#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
+#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-r64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.90.0
+#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
+#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
+#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-r64-shared.cmake
+#usr/lib/cmake/boost_container-1.90.0
+#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
+#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
+#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-r64-shared.cmake
+#usr/lib/cmake/boost_context-1.90.0
+#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
+#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
+#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-r64-shared.cmake
+#usr/lib/cmake/boost_contract-1.90.0
+#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
+#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
+#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-r64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.90.0
+#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
+#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
+#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-r64-shared.cmake
+#usr/lib/cmake/boost_exception-1.90.0
+#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
+#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0
+#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-r64-shared.cmake
+#usr/lib/cmake/boost_graph-1.90.0
+#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
+#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
+#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-r64-shared.cmake
+#usr/lib/cmake/boost_headers-1.90.0
+#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
+#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0
+#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-r64-shared.cmake
+#usr/lib/cmake/boost_json-1.90.0
+#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
+#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
+#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-r64-shared.cmake
+#usr/lib/cmake/boost_locale-1.90.0
+#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
+#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
+#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-r64-shared.cmake
+#usr/lib/cmake/boost_log-1.90.0
+#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
+#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
+#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-r64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0
+#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math-1.90.0
+#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
+#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0
+#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0
+#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0
+#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0
+#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0
+#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0
+#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-r64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.90.0
+#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
+#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
+#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-r64-shared.cmake
+#usr/lib/cmake/boost_numpy-1.90.0
+#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
+#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-r64-shared.cmake
+#usr/lib/cmake/boost_process-1.90.0
+#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
+#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
+#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-r64-shared.cmake
+#usr/lib/cmake/boost_python-1.90.0
+#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
+#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
+#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-mt-r64-shared-py3.10.cmake
+#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-r64-shared-py3.10.cmake
+#usr/lib/cmake/boost_random-1.90.0
+#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
+#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
+#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-r64-shared.cmake
+#usr/lib/cmake/boost_regex-1.90.0
+#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
+#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
+#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-r64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.90.0
+#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
+#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
+#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-r64-shared.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-r64-shared.cmake
+#usr/lib/cmake/boost_thread-1.90.0
+#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
+#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
+#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-r64-shared.cmake
+#usr/lib/cmake/boost_timer-1.90.0
+#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
+#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
+#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-r64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0
+#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-r64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-r64-shared.cmake
+#usr/lib/cmake/boost_url-1.90.0
+#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
+#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
+#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-r64-shared.cmake
+#usr/lib/cmake/boost_wave-1.90.0
+#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
+#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
+#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-r64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0
+#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-mt-r64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-r64-shared.cmake
 #usr/lib/libboost_atomic-mt-r64.so
-usr/lib/libboost_atomic-mt-r64.so.1.89.0
+usr/lib/libboost_atomic-mt-r64.so.1.90.0
 #usr/lib/libboost_charconv-mt-r64.so
-usr/lib/libboost_charconv-mt-r64.so.1.89.0
+usr/lib/libboost_charconv-mt-r64.so.1.90.0
 #usr/lib/libboost_charconv-r64.so
-usr/lib/libboost_charconv-r64.so.1.89.0
+usr/lib/libboost_charconv-r64.so.1.90.0
 #usr/lib/libboost_chrono-mt-r64.so
-usr/lib/libboost_chrono-mt-r64.so.1.89.0
+usr/lib/libboost_chrono-mt-r64.so.1.90.0
 #usr/lib/libboost_chrono-r64.so
-usr/lib/libboost_chrono-r64.so.1.89.0
+usr/lib/libboost_chrono-r64.so.1.90.0
 #usr/lib/libboost_container-mt-r64.so
-usr/lib/libboost_container-mt-r64.so.1.89.0
+usr/lib/libboost_container-mt-r64.so.1.90.0
 #usr/lib/libboost_container-r64.so
-usr/lib/libboost_container-r64.so.1.89.0
+usr/lib/libboost_container-r64.so.1.90.0
 #usr/lib/libboost_context-mt-r64.so
-usr/lib/libboost_context-mt-r64.so.1.89.0
+usr/lib/libboost_context-mt-r64.so.1.90.0
 #usr/lib/libboost_contract-mt-r64.so
-usr/lib/libboost_contract-mt-r64.so.1.89.0
+usr/lib/libboost_contract-mt-r64.so.1.90.0
 #usr/lib/libboost_contract-r64.so
-usr/lib/libboost_contract-r64.so.1.89.0
+usr/lib/libboost_contract-r64.so.1.90.0
 #usr/lib/libboost_date_time-mt-r64.so
-usr/lib/libboost_date_time-mt-r64.so.1.89.0
+usr/lib/libboost_date_time-mt-r64.so.1.90.0
 #usr/lib/libboost_date_time-r64.so
-usr/lib/libboost_date_time-r64.so.1.89.0
+usr/lib/libboost_date_time-r64.so.1.90.0
 #usr/lib/libboost_exception-mt-r64.a
 #usr/lib/libboost_exception-r64.a
 #usr/lib/libboost_filesystem-mt-r64.so
-usr/lib/libboost_filesystem-mt-r64.so.1.89.0
+usr/lib/libboost_filesystem-mt-r64.so.1.90.0
 #usr/lib/libboost_filesystem-r64.so
-usr/lib/libboost_filesystem-r64.so.1.89.0
+usr/lib/libboost_filesystem-r64.so.1.90.0
 #usr/lib/libboost_graph-mt-r64.so
-usr/lib/libboost_graph-mt-r64.so.1.89.0
+usr/lib/libboost_graph-mt-r64.so.1.90.0
 #usr/lib/libboost_graph-r64.so
-usr/lib/libboost_graph-r64.so.1.89.0
+usr/lib/libboost_graph-r64.so.1.90.0
 #usr/lib/libboost_iostreams-mt-r64.so
-usr/lib/libboost_iostreams-mt-r64.so.1.89.0
+usr/lib/libboost_iostreams-mt-r64.so.1.90.0
 #usr/lib/libboost_iostreams-r64.so
-usr/lib/libboost_iostreams-r64.so.1.89.0
+usr/lib/libboost_iostreams-r64.so.1.90.0
 #usr/lib/libboost_json-mt-r64.so
-usr/lib/libboost_json-mt-r64.so.1.89.0
+usr/lib/libboost_json-mt-r64.so.1.90.0
 #usr/lib/libboost_json-r64.so
-usr/lib/libboost_json-r64.so.1.89.0
+usr/lib/libboost_json-r64.so.1.90.0
 #usr/lib/libboost_locale-mt-r64.so
-usr/lib/libboost_locale-mt-r64.so.1.89.0
+usr/lib/libboost_locale-mt-r64.so.1.90.0
 #usr/lib/libboost_log-mt-r64.so
-usr/lib/libboost_log-mt-r64.so.1.89.0
+usr/lib/libboost_log-mt-r64.so.1.90.0
 #usr/lib/libboost_log-r64.so
-usr/lib/libboost_log-r64.so.1.89.0
+usr/lib/libboost_log-r64.so.1.90.0
 #usr/lib/libboost_log_setup-mt-r64.so
-usr/lib/libboost_log_setup-mt-r64.so.1.89.0
+usr/lib/libboost_log_setup-mt-r64.so.1.90.0
 #usr/lib/libboost_log_setup-r64.so
-usr/lib/libboost_log_setup-r64.so.1.89.0
+usr/lib/libboost_log_setup-r64.so.1.90.0
 #usr/lib/libboost_math_c99-mt-r64.so
-usr/lib/libboost_math_c99-mt-r64.so.1.89.0
+usr/lib/libboost_math_c99-mt-r64.so.1.90.0
 #usr/lib/libboost_math_c99-r64.so
-usr/lib/libboost_math_c99-r64.so.1.89.0
+usr/lib/libboost_math_c99-r64.so.1.90.0
 #usr/lib/libboost_math_c99f-mt-r64.so
-usr/lib/libboost_math_c99f-mt-r64.so.1.89.0
+usr/lib/libboost_math_c99f-mt-r64.so.1.90.0
 #usr/lib/libboost_math_c99f-r64.so
-usr/lib/libboost_math_c99f-r64.so.1.89.0
+usr/lib/libboost_math_c99f-r64.so.1.90.0
 #usr/lib/libboost_math_c99l-mt-r64.so
-usr/lib/libboost_math_c99l-mt-r64.so.1.89.0
+usr/lib/libboost_math_c99l-mt-r64.so.1.90.0
 #usr/lib/libboost_math_c99l-r64.so
-usr/lib/libboost_math_c99l-r64.so.1.89.0
+usr/lib/libboost_math_c99l-r64.so.1.90.0
 #usr/lib/libboost_math_tr1-mt-r64.so
-usr/lib/libboost_math_tr1-mt-r64.so.1.89.0
+usr/lib/libboost_math_tr1-mt-r64.so.1.90.0
 #usr/lib/libboost_math_tr1-r64.so
-usr/lib/libboost_math_tr1-r64.so.1.89.0
+usr/lib/libboost_math_tr1-r64.so.1.90.0
 #usr/lib/libboost_math_tr1f-mt-r64.so
-usr/lib/libboost_math_tr1f-mt-r64.so.1.89.0
+usr/lib/libboost_math_tr1f-mt-r64.so.1.90.0
 #usr/lib/libboost_math_tr1f-r64.so
-usr/lib/libboost_math_tr1f-r64.so.1.89.0
+usr/lib/libboost_math_tr1f-r64.so.1.90.0
 #usr/lib/libboost_math_tr1l-mt-r64.so
-usr/lib/libboost_math_tr1l-mt-r64.so.1.89.0
+usr/lib/libboost_math_tr1l-mt-r64.so.1.90.0
 #usr/lib/libboost_math_tr1l-r64.so
-usr/lib/libboost_math_tr1l-r64.so.1.89.0
+usr/lib/libboost_math_tr1l-r64.so.1.90.0
 #usr/lib/libboost_nowide-mt-r64.so
-usr/lib/libboost_nowide-mt-r64.so.1.89.0
+usr/lib/libboost_nowide-mt-r64.so.1.90.0
 #usr/lib/libboost_nowide-r64.so
-usr/lib/libboost_nowide-r64.so.1.89.0
+usr/lib/libboost_nowide-r64.so.1.90.0
 #usr/lib/libboost_prg_exec_monitor-mt-r64.so
-usr/lib/libboost_prg_exec_monitor-mt-r64.so.1.89.0
+usr/lib/libboost_prg_exec_monitor-mt-r64.so.1.90.0
 #usr/lib/libboost_prg_exec_monitor-r64.so
-usr/lib/libboost_prg_exec_monitor-r64.so.1.89.0
+usr/lib/libboost_prg_exec_monitor-r64.so.1.90.0
 #usr/lib/libboost_process-mt-r64.so
-usr/lib/libboost_process-mt-r64.so.1.89.0
+usr/lib/libboost_process-mt-r64.so.1.90.0
 #usr/lib/libboost_process-r64.so
-usr/lib/libboost_process-r64.so.1.89.0
+usr/lib/libboost_process-r64.so.1.90.0
 #usr/lib/libboost_python310-mt-r64.so
-usr/lib/libboost_python310-mt-r64.so.1.89.0
+usr/lib/libboost_python310-mt-r64.so.1.90.0
 #usr/lib/libboost_python310-r64.so
-usr/lib/libboost_python310-r64.so.1.89.0
+usr/lib/libboost_python310-r64.so.1.90.0
 #usr/lib/libboost_random-mt-r64.so
-usr/lib/libboost_random-mt-r64.so.1.89.0
+usr/lib/libboost_random-mt-r64.so.1.90.0
 #usr/lib/libboost_random-r64.so
-usr/lib/libboost_random-r64.so.1.89.0
+usr/lib/libboost_random-r64.so.1.90.0
 #usr/lib/libboost_regex-mt-r64.so
-usr/lib/libboost_regex-mt-r64.so.1.89.0
+usr/lib/libboost_regex-mt-r64.so.1.90.0
 #usr/lib/libboost_regex-r64.so
-usr/lib/libboost_regex-r64.so.1.89.0
+usr/lib/libboost_regex-r64.so.1.90.0
 #usr/lib/libboost_serialization-mt-r64.so
-usr/lib/libboost_serialization-mt-r64.so.1.89.0
+usr/lib/libboost_serialization-mt-r64.so.1.90.0
 #usr/lib/libboost_serialization-r64.so
-usr/lib/libboost_serialization-r64.so.1.89.0
+usr/lib/libboost_serialization-r64.so.1.90.0
 #usr/lib/libboost_stacktrace_addr2line-mt-r64.so
-usr/lib/libboost_stacktrace_addr2line-mt-r64.so.1.89.0
+usr/lib/libboost_stacktrace_addr2line-mt-r64.so.1.90.0
 #usr/lib/libboost_stacktrace_addr2line-r64.so
-usr/lib/libboost_stacktrace_addr2line-r64.so.1.89.0
+usr/lib/libboost_stacktrace_addr2line-r64.so.1.90.0
 #usr/lib/libboost_stacktrace_basic-mt-r64.so
-usr/lib/libboost_stacktrace_basic-mt-r64.so.1.89.0
+usr/lib/libboost_stacktrace_basic-mt-r64.so.1.90.0
 #usr/lib/libboost_stacktrace_basic-r64.so
-usr/lib/libboost_stacktrace_basic-r64.so.1.89.0
+usr/lib/libboost_stacktrace_basic-r64.so.1.90.0
 #usr/lib/libboost_stacktrace_noop-mt-r64.so
-usr/lib/libboost_stacktrace_noop-mt-r64.so.1.89.0
+usr/lib/libboost_stacktrace_noop-mt-r64.so.1.90.0
 #usr/lib/libboost_stacktrace_noop-r64.so
-usr/lib/libboost_stacktrace_noop-r64.so.1.89.0
+usr/lib/libboost_stacktrace_noop-r64.so.1.90.0
 #usr/lib/libboost_test_exec_monitor-mt-r64.a
 #usr/lib/libboost_test_exec_monitor-r64.a
 #usr/lib/libboost_thread-mt-r64.so
-usr/lib/libboost_thread-mt-r64.so.1.89.0
+usr/lib/libboost_thread-mt-r64.so.1.90.0
 #usr/lib/libboost_timer-mt-r64.so
-usr/lib/libboost_timer-mt-r64.so.1.89.0
+usr/lib/libboost_timer-mt-r64.so.1.90.0
 #usr/lib/libboost_timer-r64.so
-usr/lib/libboost_timer-r64.so.1.89.0
+usr/lib/libboost_timer-r64.so.1.90.0
 #usr/lib/libboost_type_erasure-mt-r64.so
-usr/lib/libboost_type_erasure-mt-r64.so.1.89.0
+usr/lib/libboost_type_erasure-mt-r64.so.1.90.0
 #usr/lib/libboost_type_erasure-r64.so
-usr/lib/libboost_type_erasure-r64.so.1.89.0
+usr/lib/libboost_type_erasure-r64.so.1.90.0
 #usr/lib/libboost_unit_test_framework-mt-r64.so
-usr/lib/libboost_unit_test_framework-mt-r64.so.1.89.0
+usr/lib/libboost_unit_test_framework-mt-r64.so.1.90.0
 #usr/lib/libboost_unit_test_framework-r64.so
-usr/lib/libboost_unit_test_framework-r64.so.1.89.0
+usr/lib/libboost_unit_test_framework-r64.so.1.90.0
 #usr/lib/libboost_url-mt-r64.so
-usr/lib/libboost_url-mt-r64.so.1.89.0
+usr/lib/libboost_url-mt-r64.so.1.90.0
 #usr/lib/libboost_url-r64.so
-usr/lib/libboost_url-r64.so.1.89.0
+usr/lib/libboost_url-r64.so.1.90.0
 #usr/lib/libboost_wave-mt-r64.so
-usr/lib/libboost_wave-mt-r64.so.1.89.0
+usr/lib/libboost_wave-mt-r64.so.1.90.0
 #usr/lib/libboost_wave-r64.so
-usr/lib/libboost_wave-r64.so.1.89.0
+usr/lib/libboost_wave-r64.so.1.90.0
 #usr/lib/libboost_wserialization-mt-r64.so
-usr/lib/libboost_wserialization-mt-r64.so.1.89.0
+usr/lib/libboost_wserialization-mt-r64.so.1.90.0
 #usr/lib/libboost_wserialization-r64.so
-usr/lib/libboost_wserialization-r64.so.1.89.0
+usr/lib/libboost_wserialization-r64.so.1.90.0
 #usr/share/boost_predef
 #usr/share/boost_predef/build.jam
 #usr/share/boost_predef/tools
diff --git a/config/rootfiles/common/x86_64/boost b/config/rootfiles/common/x86_64/boost
index 68e46eb1e..9bcc8a03c 100644
--- a/config/rootfiles/common/x86_64/boost
+++ b/config/rootfiles/common/x86_64/boost
@@ -733,6 +733,7 @@
 #usr/include/boost/asio/execution/executor.hpp
 #usr/include/boost/asio/execution/impl
 #usr/include/boost/asio/execution/impl/bad_executor.ipp
+#usr/include/boost/asio/execution/inline_exception_handling.hpp
 #usr/include/boost/asio/execution/invocable_archetype.hpp
 #usr/include/boost/asio/execution/mapping.hpp
 #usr/include/boost/asio/execution/occupancy.hpp
@@ -827,6 +828,7 @@
 #usr/include/boost/asio/impl/read.hpp
 #usr/include/boost/asio/impl/read_at.hpp
 #usr/include/boost/asio/impl/read_until.hpp
+#usr/include/boost/asio/impl/redirect_disposition.hpp
 #usr/include/boost/asio/impl/redirect_error.hpp
 #usr/include/boost/asio/impl/serial_port_base.hpp
 #usr/include/boost/asio/impl/serial_port_base.ipp
@@ -841,6 +843,8 @@
 #usr/include/boost/asio/impl/use_future.hpp
 #usr/include/boost/asio/impl/write.hpp
 #usr/include/boost/asio/impl/write_at.hpp
+#usr/include/boost/asio/inline_executor.hpp
+#usr/include/boost/asio/inline_or_executor.hpp
 #usr/include/boost/asio/io_context.hpp
 #usr/include/boost/asio/io_context_strand.hpp
 #usr/include/boost/asio/ip
@@ -921,6 +925,7 @@
 #usr/include/boost/asio/read_until.hpp
 #usr/include/boost/asio/readable_pipe.hpp
 #usr/include/boost/asio/recycling_allocator.hpp
+#usr/include/boost/asio/redirect_disposition.hpp
 #usr/include/boost/asio/redirect_error.hpp
 #usr/include/boost/asio/registered_buffer.hpp
 #usr/include/boost/asio/require.hpp
@@ -1854,6 +1859,8 @@
 #usr/include/boost/cobalt/io/acceptor.hpp
 #usr/include/boost/cobalt/io/buffer.hpp
 #usr/include/boost/cobalt/io/datagram_socket.hpp
+#usr/include/boost/cobalt/io/detail
+#usr/include/boost/cobalt/io/detail/config.hpp
 #usr/include/boost/cobalt/io/endpoint.hpp
 #usr/include/boost/cobalt/io/file.hpp
 #usr/include/boost/cobalt/io/ops.hpp
@@ -1894,6 +1901,7 @@
 #usr/include/boost/compat/bind_back.hpp
 #usr/include/boost/compat/bind_front.hpp
 #usr/include/boost/compat/detail
+#usr/include/boost/compat/detail/nontype.hpp
 #usr/include/boost/compat/detail/returns.hpp
 #usr/include/boost/compat/detail/throw_system_error.hpp
 #usr/include/boost/compat/function_ref.hpp
@@ -1904,6 +1912,7 @@
 #usr/include/boost/compat/move_only_function.hpp
 #usr/include/boost/compat/shared_lock.hpp
 #usr/include/boost/compat/to_array.hpp
+#usr/include/boost/compat/to_underlying.hpp
 #usr/include/boost/compat/type_traits.hpp
 #usr/include/boost/compressed_pair.hpp
 #usr/include/boost/compute
@@ -2418,6 +2427,7 @@
 #usr/include/boost/container/detail/node_alloc_holder.hpp
 #usr/include/boost/container/detail/node_pool.hpp
 #usr/include/boost/container/detail/node_pool_impl.hpp
+#usr/include/boost/container/detail/operator_new_helpers.hpp
 #usr/include/boost/container/detail/pair.hpp
 #usr/include/boost/container/detail/pair_key_mapped_of_value.hpp
 #usr/include/boost/container/detail/placement_new.hpp
@@ -2635,6 +2645,7 @@
 #usr/include/boost/core/detail/sp_thread_yield.hpp
 #usr/include/boost/core/detail/sp_win32_sleep.hpp
 #usr/include/boost/core/detail/splitmix64.hpp
+#usr/include/boost/core/detail/static_assert.hpp
 #usr/include/boost/core/detail/string_view.hpp
 #usr/include/boost/core/empty_value.hpp
 #usr/include/boost/core/enable_if.hpp
@@ -3017,6 +3028,8 @@
 #usr/include/boost/dynamic_bitset/detail/dynamic_bitset.hpp
 #usr/include/boost/dynamic_bitset/detail/lowest_bit.hpp
 #usr/include/boost/dynamic_bitset/dynamic_bitset.hpp
+#usr/include/boost/dynamic_bitset/impl
+#usr/include/boost/dynamic_bitset/impl/dynamic_bitset.ipp
 #usr/include/boost/dynamic_bitset/serialization.hpp
 #usr/include/boost/dynamic_bitset_fwd.hpp
 #usr/include/boost/enable_shared_from_this.hpp
@@ -4658,6 +4671,7 @@
 #usr/include/boost/geometry/algorithms/detail/is_valid/multipolygon.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/pointlike.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/polygon.hpp
+#usr/include/boost/geometry/algorithms/detail/is_valid/polyhedral_surface.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/ring.hpp
 #usr/include/boost/geometry/algorithms/detail/is_valid/segment.hpp
 #usr/include/boost/geometry/algorithms/detail/make
@@ -5366,6 +5380,7 @@
 #usr/include/boost/geometry/strategies/cartesian/point_in_poly_franklin.hpp
 #usr/include/boost/geometry/strategies/cartesian/point_in_poly_winding.hpp
 #usr/include/boost/geometry/strategies/cartesian/point_order.hpp
+#usr/include/boost/geometry/strategies/cartesian/side_3d_rounded_input.hpp
 #usr/include/boost/geometry/strategies/cartesian/side_rounded_input.hpp
 #usr/include/boost/geometry/strategies/cartesian/turn_in_ring_winding.hpp
 #usr/include/boost/geometry/strategies/centroid
@@ -5501,6 +5516,9 @@
 #usr/include/boost/geometry/strategies/relate/geographic.hpp
 #usr/include/boost/geometry/strategies/relate/services.hpp
 #usr/include/boost/geometry/strategies/relate/spherical.hpp
+#usr/include/boost/geometry/strategies/relate3
+#usr/include/boost/geometry/strategies/relate3/cartesian.hpp
+#usr/include/boost/geometry/strategies/relate3/services.hpp
 #usr/include/boost/geometry/strategies/side.hpp
 #usr/include/boost/geometry/strategies/side_info.hpp
 #usr/include/boost/geometry/strategies/simplify
@@ -7672,6 +7690,7 @@
 #usr/include/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp
 #usr/include/boost/lexical_cast/detail/lcast_char_constants.hpp
 #usr/include/boost/lexical_cast/detail/lcast_unsigned_converters.hpp
+#usr/include/boost/lexical_cast/detail/type_traits.hpp
 #usr/include/boost/lexical_cast/detail/widest_char.hpp
 #usr/include/boost/lexical_cast/try_lexical_convert.hpp
 #usr/include/boost/limits.hpp
@@ -8156,6 +8175,20 @@
 #usr/include/boost/math/differentiation
 #usr/include/boost/math/differentiation/autodiff.hpp
 #usr/include/boost/math/differentiation/autodiff_cpp11.hpp
+#usr/include/boost/math/differentiation/autodiff_reverse.hpp
+#usr/include/boost/math/differentiation/detail
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_operator_expressions.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_no_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_comparison_operator_overloads.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_erf_overloads.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_expression_template_base.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_helper_functions.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_memory_management.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_stl_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_stl_expressions.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_stl_no_et.hpp
+#usr/include/boost/math/differentiation/detail/reverse_mode_autodiff_utilities.hpp
 #usr/include/boost/math/differentiation/finite_difference.hpp
 #usr/include/boost/math/differentiation/lanczos_smoothing.hpp
 #usr/include/boost/math/distributions
@@ -8387,6 +8420,8 @@
 #usr/include/boost/math/special_functions/legendre_stieltjes.hpp
 #usr/include/boost/math/special_functions/log1p.hpp
 #usr/include/boost/math/special_functions/logaddexp.hpp
+#usr/include/boost/math/special_functions/logistic_sigmoid.hpp
+#usr/include/boost/math/special_functions/logit.hpp
 #usr/include/boost/math/special_functions/logsumexp.hpp
 #usr/include/boost/math/special_functions/math_fwd.hpp
 #usr/include/boost/math/special_functions/modf.hpp
@@ -10253,10 +10288,22 @@
 #usr/include/boost/msm/back/queue_container_deque.hpp
 #usr/include/boost/msm/back/state_machine.hpp
 #usr/include/boost/msm/back/tools.hpp
+#usr/include/boost/msm/back/traits.hpp
 #usr/include/boost/msm/back11
 #usr/include/boost/msm/back11/dispatch_table.hpp
 #usr/include/boost/msm/back11/metafunctions.hpp
 #usr/include/boost/msm/back11/state_machine.hpp
+#usr/include/boost/msm/backmp11
+#usr/include/boost/msm/backmp11/common_types.hpp
+#usr/include/boost/msm/backmp11/detail
+#usr/include/boost/msm/backmp11/detail/dispatch_table.hpp
+#usr/include/boost/msm/backmp11/detail/favor_runtime_speed.hpp
+#usr/include/boost/msm/backmp11/detail/history_impl.hpp
+#usr/include/boost/msm/backmp11/detail/metafunctions.hpp
+#usr/include/boost/msm/backmp11/event_traits.hpp
+#usr/include/boost/msm/backmp11/favor_compile_time.hpp
+#usr/include/boost/msm/backmp11/state_machine.hpp
+#usr/include/boost/msm/backmp11/state_machine_config.hpp
 #usr/include/boost/msm/common.hpp
 #usr/include/boost/msm/event_traits.hpp
 #usr/include/boost/msm/front
@@ -10281,6 +10328,7 @@
 #usr/include/boost/msm/front/euml/stt_grammar.hpp
 #usr/include/boost/msm/front/euml/transformation.hpp
 #usr/include/boost/msm/front/functor_row.hpp
+#usr/include/boost/msm/front/history_policies.hpp
 #usr/include/boost/msm/front/internal_row.hpp
 #usr/include/boost/msm/front/operator.hpp
 #usr/include/boost/msm/front/puml
@@ -10288,6 +10336,7 @@
 #usr/include/boost/msm/front/row2.hpp
 #usr/include/boost/msm/front/state_machine_def.hpp
 #usr/include/boost/msm/front/states.hpp
+#usr/include/boost/msm/kleene_event.hpp
 #usr/include/boost/msm/mpl_graph
 #usr/include/boost/msm/mpl_graph/adjacency_list_graph.hpp
 #usr/include/boost/msm/mpl_graph/breadth_first_search.hpp
@@ -11117,6 +11166,29 @@
 #usr/include/boost/numeric/ublas/vector_of_vector.hpp
 #usr/include/boost/numeric/ublas/vector_proxy.hpp
 #usr/include/boost/numeric/ublas/vector_sparse.hpp
+#usr/include/boost/openmethod
+#usr/include/boost/openmethod.hpp
+#usr/include/boost/openmethod/core.hpp
+#usr/include/boost/openmethod/default_registry.hpp
+#usr/include/boost/openmethod/detail
+#usr/include/boost/openmethod/detail/ostdstream.hpp
+#usr/include/boost/openmethod/detail/static_list.hpp
+#usr/include/boost/openmethod/initialize.hpp
+#usr/include/boost/openmethod/inplace_vptr.hpp
+#usr/include/boost/openmethod/interop
+#usr/include/boost/openmethod/interop/std_shared_ptr.hpp
+#usr/include/boost/openmethod/interop/std_unique_ptr.hpp
+#usr/include/boost/openmethod/macros.hpp
+#usr/include/boost/openmethod/policies
+#usr/include/boost/openmethod/policies/default_error_handler.hpp
+#usr/include/boost/openmethod/policies/fast_perfect_hash.hpp
+#usr/include/boost/openmethod/policies/static_rtti.hpp
+#usr/include/boost/openmethod/policies/std_rtti.hpp
+#usr/include/boost/openmethod/policies/stderr_output.hpp
+#usr/include/boost/openmethod/policies/throw_error_handler.hpp
+#usr/include/boost/openmethod/policies/vptr_map.hpp
+#usr/include/boost/openmethod/policies/vptr_vector.hpp
+#usr/include/boost/openmethod/preamble.hpp
 #usr/include/boost/operators.hpp
 #usr/include/boost/operators_v1.hpp
 #usr/include/boost/optional
@@ -11416,6 +11488,7 @@
 #usr/include/boost/pfr/detail/core14_loophole.hpp
 #usr/include/boost/pfr/detail/core17.hpp
 #usr/include/boost/pfr/detail/core17_generated.hpp
+#usr/include/boost/pfr/detail/core26.hpp
 #usr/include/boost/pfr/detail/core_name.hpp
 #usr/include/boost/pfr/detail/core_name14_disabled.hpp
 #usr/include/boost/pfr/detail/core_name20_static.hpp
@@ -13676,31 +13749,38 @@
 #usr/include/boost/redis/config.hpp
 #usr/include/boost/redis/connection.hpp
 #usr/include/boost/redis/detail
-#usr/include/boost/redis/detail/connection_logger.hpp
+#usr/include/boost/redis/detail/connect_fsm.hpp
+#usr/include/boost/redis/detail/connection_state.hpp
 #usr/include/boost/redis/detail/coroutine.hpp
 #usr/include/boost/redis/detail/exec_fsm.hpp
-#usr/include/boost/redis/detail/health_checker.hpp
-#usr/include/boost/redis/detail/helper.hpp
 #usr/include/boost/redis/detail/multiplexer.hpp
+#usr/include/boost/redis/detail/read_buffer.hpp
 #usr/include/boost/redis/detail/reader_fsm.hpp
 #usr/include/boost/redis/detail/redis_stream.hpp
-#usr/include/boost/redis/detail/resp3_handshaker.hpp
+#usr/include/boost/redis/detail/resp3_type_to_error.hpp
+#usr/include/boost/redis/detail/run_fsm.hpp
 #usr/include/boost/redis/detail/write.hpp
+#usr/include/boost/redis/detail/writer_fsm.hpp
 #usr/include/boost/redis/error.hpp
 #usr/include/boost/redis/ignore.hpp
 #usr/include/boost/redis/impl
+#usr/include/boost/redis/impl/connect_fsm.ipp
 #usr/include/boost/redis/impl/connection.ipp
-#usr/include/boost/redis/impl/connection_logger.ipp
 #usr/include/boost/redis/impl/error.ipp
 #usr/include/boost/redis/impl/exec_fsm.ipp
 #usr/include/boost/redis/impl/ignore.ipp
+#usr/include/boost/redis/impl/is_terminal_cancel.hpp
 #usr/include/boost/redis/impl/log_to_file.hpp
+#usr/include/boost/redis/impl/log_utils.hpp
 #usr/include/boost/redis/impl/logger.ipp
 #usr/include/boost/redis/impl/multiplexer.ipp
+#usr/include/boost/redis/impl/read_buffer.ipp
 #usr/include/boost/redis/impl/reader_fsm.ipp
 #usr/include/boost/redis/impl/request.ipp
-#usr/include/boost/redis/impl/resp3_handshaker.ipp
 #usr/include/boost/redis/impl/response.ipp
+#usr/include/boost/redis/impl/run_fsm.ipp
+#usr/include/boost/redis/impl/setup_request_utils.hpp
+#usr/include/boost/redis/impl/writer_fsm.ipp
 #usr/include/boost/redis/logger.hpp
 #usr/include/boost/redis/operation.hpp
 #usr/include/boost/redis/request.hpp
@@ -13979,66 +14059,33 @@
 #usr/include/boost/smart_ptr/bad_weak_ptr.hpp
 #usr/include/boost/smart_ptr/detail
 #usr/include/boost/smart_ptr/detail/atomic_count.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_gcc.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp
 #usr/include/boost/smart_ptr/detail/atomic_count_nt.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_pt.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_spin.hpp
 #usr/include/boost/smart_ptr/detail/atomic_count_std_atomic.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_sync.hpp
-#usr/include/boost/smart_ptr/detail/atomic_count_win32.hpp
 #usr/include/boost/smart_ptr/detail/deprecated_macros.hpp
 #usr/include/boost/smart_ptr/detail/lightweight_mutex.hpp
 #usr/include/boost/smart_ptr/detail/lightweight_thread.hpp
 #usr/include/boost/smart_ptr/detail/local_counted_base.hpp
 #usr/include/boost/smart_ptr/detail/local_sp_deleter.hpp
-#usr/include/boost/smart_ptr/detail/lwm_pthreads.hpp
 #usr/include/boost/smart_ptr/detail/lwm_std_mutex.hpp
-#usr/include/boost/smart_ptr/detail/lwm_win32_cs.hpp
 #usr/include/boost/smart_ptr/detail/quick_allocator.hpp
 #usr/include/boost/smart_ptr/detail/shared_count.hpp
 #usr/include/boost/smart_ptr/detail/sp_convertible.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_base.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp
-#usr/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp
 #usr/include/boost/smart_ptr/detail/sp_counted_impl.hpp
 #usr/include/boost/smart_ptr/detail/sp_cxx20_constexpr.hpp
 #usr/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp
-#usr/include/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp
-#usr/include/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp
-#usr/include/boost/smart_ptr/detail/sp_interlocked.hpp
 #usr/include/boost/smart_ptr/detail/sp_noexcept.hpp
-#usr/include/boost/smart_ptr/detail/sp_obsolete.hpp
 #usr/include/boost/smart_ptr/detail/sp_thread_pause.hpp
 #usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp
 #usr/include/boost/smart_ptr/detail/sp_thread_yield.hpp
 #usr/include/boost/smart_ptr/detail/sp_type_traits.hpp
 #usr/include/boost/smart_ptr/detail/sp_typeinfo_.hpp
 #usr/include/boost/smart_ptr/detail/spinlock.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp
 #usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_nt.hpp
 #usr/include/boost/smart_ptr/detail/spinlock_pool.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_pt.hpp
 #usr/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_sync.hpp
-#usr/include/boost/smart_ptr/detail/spinlock_w32.hpp
 #usr/include/boost/smart_ptr/detail/yield_k.hpp
 #usr/include/boost/smart_ptr/enable_shared_from.hpp
 #usr/include/boost/smart_ptr/enable_shared_from_raw.hpp
@@ -16556,6 +16603,7 @@
 #usr/include/boost/unordered/detail/static_assert.hpp
 #usr/include/boost/unordered/detail/throw_exception.hpp
 #usr/include/boost/unordered/detail/type_traits.hpp
+#usr/include/boost/unordered/detail/unordered_printers.hpp
 #usr/include/boost/unordered/detail/xmx.hpp
 #usr/include/boost/unordered/hash_traits.hpp
 #usr/include/boost/unordered/unordered_flat_map.hpp
@@ -16568,7 +16616,6 @@
 #usr/include/boost/unordered/unordered_node_map_fwd.hpp
 #usr/include/boost/unordered/unordered_node_set.hpp
 #usr/include/boost/unordered/unordered_node_set_fwd.hpp
-#usr/include/boost/unordered/unordered_printers.hpp
 #usr/include/boost/unordered/unordered_set.hpp
 #usr/include/boost/unordered/unordered_set_fwd.hpp
 #usr/include/boost/unordered_map.hpp
@@ -16591,6 +16638,7 @@
 #usr/include/boost/url/detail/parts_base.hpp
 #usr/include/boost/url/detail/replacement_field_rule.hpp
 #usr/include/boost/url/detail/segments_iter_impl.hpp
+#usr/include/boost/url/detail/segments_range.hpp
 #usr/include/boost/url/detail/string_view.hpp
 #usr/include/boost/url/detail/url_impl.hpp
 #usr/include/boost/url/detail/vformat.hpp
@@ -16735,6 +16783,7 @@
 #usr/include/boost/uuid.hpp
 #usr/include/boost/uuid/basic_name_generator.hpp
 #usr/include/boost/uuid/basic_random_generator.hpp
+#usr/include/boost/uuid/constants.hpp
 #usr/include/boost/uuid/detail
 #usr/include/boost/uuid/detail/basic_name_generator.hpp
 #usr/include/boost/uuid/detail/chacha20.hpp
@@ -16742,6 +16791,7 @@
 #usr/include/boost/uuid/detail/endian.hpp
 #usr/include/boost/uuid/detail/hash_mix.hpp
 #usr/include/boost/uuid/detail/md5.hpp
+#usr/include/boost/uuid/detail/nil_uuid.hpp
 #usr/include/boost/uuid/detail/numeric_cast.hpp
 #usr/include/boost/uuid/detail/random_device.hpp
 #usr/include/boost/uuid/detail/random_provider.hpp
@@ -16752,6 +16802,7 @@
 #usr/include/boost/uuid/detail/uuid_uint128.ipp
 #usr/include/boost/uuid/detail/uuid_x86.ipp
 #usr/include/boost/uuid/entropy_error.hpp
+#usr/include/boost/uuid/generators.hpp
 #usr/include/boost/uuid/name_generator.hpp
 #usr/include/boost/uuid/name_generator_md5.hpp
 #usr/include/boost/uuid/name_generator_sha1.hpp
@@ -17253,365 +17304,365 @@
 #usr/include/boost/yap/print.hpp
 #usr/include/boost/yap/user_macros.hpp
 #usr/include/boost/yap/yap.hpp
-#usr/lib/cmake/Boost-1.89.0
-#usr/lib/cmake/Boost-1.89.0/BoostConfig.cmake
-#usr/lib/cmake/Boost-1.89.0/BoostConfigVersion.cmake
-#usr/lib/cmake/BoostDetectToolset-1.89.0.cmake
-#usr/lib/cmake/boost_atomic-1.89.0
-#usr/lib/cmake/boost_atomic-1.89.0/boost_atomic-config-version.cmake
-#usr/lib/cmake/boost_atomic-1.89.0/boost_atomic-config.cmake
-#usr/lib/cmake/boost_atomic-1.89.0/libboost_atomic-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_atomic-1.89.0/libboost_atomic-variant-x64-shared.cmake
-#usr/lib/cmake/boost_charconv-1.89.0
-#usr/lib/cmake/boost_charconv-1.89.0/boost_charconv-config-version.cmake
-#usr/lib/cmake/boost_charconv-1.89.0/boost_charconv-config.cmake
-#usr/lib/cmake/boost_charconv-1.89.0/libboost_charconv-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_charconv-1.89.0/libboost_charconv-variant-x64-shared.cmake
-#usr/lib/cmake/boost_chrono-1.89.0
-#usr/lib/cmake/boost_chrono-1.89.0/boost_chrono-config-version.cmake
-#usr/lib/cmake/boost_chrono-1.89.0/boost_chrono-config.cmake
-#usr/lib/cmake/boost_chrono-1.89.0/libboost_chrono-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_chrono-1.89.0/libboost_chrono-variant-x64-shared.cmake
-#usr/lib/cmake/boost_container-1.89.0
-#usr/lib/cmake/boost_container-1.89.0/boost_container-config-version.cmake
-#usr/lib/cmake/boost_container-1.89.0/boost_container-config.cmake
-#usr/lib/cmake/boost_container-1.89.0/libboost_container-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_container-1.89.0/libboost_container-variant-x64-shared.cmake
-#usr/lib/cmake/boost_context-1.89.0
-#usr/lib/cmake/boost_context-1.89.0/boost_context-config-version.cmake
-#usr/lib/cmake/boost_context-1.89.0/boost_context-config.cmake
-#usr/lib/cmake/boost_context-1.89.0/libboost_context-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_context-1.89.0/libboost_context-variant-x64-shared.cmake
-#usr/lib/cmake/boost_contract-1.89.0
-#usr/lib/cmake/boost_contract-1.89.0/boost_contract-config-version.cmake
-#usr/lib/cmake/boost_contract-1.89.0/boost_contract-config.cmake
-#usr/lib/cmake/boost_contract-1.89.0/libboost_contract-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_contract-1.89.0/libboost_contract-variant-x64-shared.cmake
-#usr/lib/cmake/boost_date_time-1.89.0
-#usr/lib/cmake/boost_date_time-1.89.0/boost_date_time-config-version.cmake
-#usr/lib/cmake/boost_date_time-1.89.0/boost_date_time-config.cmake
-#usr/lib/cmake/boost_date_time-1.89.0/libboost_date_time-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_date_time-1.89.0/libboost_date_time-variant-x64-shared.cmake
-#usr/lib/cmake/boost_exception-1.89.0
-#usr/lib/cmake/boost_exception-1.89.0/boost_exception-config-version.cmake
-#usr/lib/cmake/boost_exception-1.89.0/boost_exception-config.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0
-#usr/lib/cmake/boost_filesystem-1.89.0/boost_filesystem-config-version.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0/boost_filesystem-config.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0/libboost_filesystem-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_filesystem-1.89.0/libboost_filesystem-variant-x64-shared.cmake
-#usr/lib/cmake/boost_graph-1.89.0
-#usr/lib/cmake/boost_graph-1.89.0/boost_graph-config-version.cmake
-#usr/lib/cmake/boost_graph-1.89.0/boost_graph-config.cmake
-#usr/lib/cmake/boost_graph-1.89.0/libboost_graph-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_graph-1.89.0/libboost_graph-variant-x64-shared.cmake
-#usr/lib/cmake/boost_headers-1.89.0
-#usr/lib/cmake/boost_headers-1.89.0/boost_headers-config-version.cmake
-#usr/lib/cmake/boost_headers-1.89.0/boost_headers-config.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0
-#usr/lib/cmake/boost_iostreams-1.89.0/boost_iostreams-config-version.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0/boost_iostreams-config.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0/libboost_iostreams-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_iostreams-1.89.0/libboost_iostreams-variant-x64-shared.cmake
-#usr/lib/cmake/boost_json-1.89.0
-#usr/lib/cmake/boost_json-1.89.0/boost_json-config-version.cmake
-#usr/lib/cmake/boost_json-1.89.0/boost_json-config.cmake
-#usr/lib/cmake/boost_json-1.89.0/libboost_json-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_json-1.89.0/libboost_json-variant-x64-shared.cmake
-#usr/lib/cmake/boost_locale-1.89.0
-#usr/lib/cmake/boost_locale-1.89.0/boost_locale-config-version.cmake
-#usr/lib/cmake/boost_locale-1.89.0/boost_locale-config.cmake
-#usr/lib/cmake/boost_locale-1.89.0/libboost_locale-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_locale-1.89.0/libboost_locale-variant-x64-shared.cmake
-#usr/lib/cmake/boost_log-1.89.0
-#usr/lib/cmake/boost_log-1.89.0/boost_log-config-version.cmake
-#usr/lib/cmake/boost_log-1.89.0/boost_log-config.cmake
-#usr/lib/cmake/boost_log-1.89.0/libboost_log-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_log-1.89.0/libboost_log-variant-x64-shared.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0
-#usr/lib/cmake/boost_log_setup-1.89.0/boost_log_setup-config-version.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0/boost_log_setup-config.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0/libboost_log_setup-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_log_setup-1.89.0/libboost_log_setup-variant-x64-shared.cmake
-#usr/lib/cmake/boost_math-1.89.0
-#usr/lib/cmake/boost_math-1.89.0/boost_math-config-version.cmake
-#usr/lib/cmake/boost_math-1.89.0/boost_math-config.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0
-#usr/lib/cmake/boost_math_c99-1.89.0/boost_math_c99-config-version.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0/boost_math_c99-config.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0/libboost_math_c99-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_math_c99-1.89.0/libboost_math_c99-variant-x64-shared.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0
-#usr/lib/cmake/boost_math_c99f-1.89.0/boost_math_c99f-config-version.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0/boost_math_c99f-config.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0/libboost_math_c99f-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_math_c99f-1.89.0/libboost_math_c99f-variant-x64-shared.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0
-#usr/lib/cmake/boost_math_c99l-1.89.0/boost_math_c99l-config-version.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0/boost_math_c99l-config.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0/libboost_math_c99l-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_math_c99l-1.89.0/libboost_math_c99l-variant-x64-shared.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0
-#usr/lib/cmake/boost_math_tr1-1.89.0/boost_math_tr1-config-version.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0/boost_math_tr1-config.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0/libboost_math_tr1-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_math_tr1-1.89.0/libboost_math_tr1-variant-x64-shared.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0
-#usr/lib/cmake/boost_math_tr1f-1.89.0/boost_math_tr1f-config-version.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0/boost_math_tr1f-config.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0/libboost_math_tr1f-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_math_tr1f-1.89.0/libboost_math_tr1f-variant-x64-shared.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0
-#usr/lib/cmake/boost_math_tr1l-1.89.0/boost_math_tr1l-config-version.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0/boost_math_tr1l-config.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0/libboost_math_tr1l-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_math_tr1l-1.89.0/libboost_math_tr1l-variant-x64-shared.cmake
-#usr/lib/cmake/boost_nowide-1.89.0
-#usr/lib/cmake/boost_nowide-1.89.0/boost_nowide-config-version.cmake
-#usr/lib/cmake/boost_nowide-1.89.0/boost_nowide-config.cmake
-#usr/lib/cmake/boost_nowide-1.89.0/libboost_nowide-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_nowide-1.89.0/libboost_nowide-variant-x64-shared.cmake
-#usr/lib/cmake/boost_numpy-1.89.0
-#usr/lib/cmake/boost_numpy-1.89.0/boost_numpy-config-version.cmake
-#usr/lib/cmake/boost_numpy-1.89.0/boost_numpy-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/boost_prg_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/boost_prg_exec_monitor-config.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/libboost_prg_exec_monitor-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_prg_exec_monitor-1.89.0/libboost_prg_exec_monitor-variant-x64-shared.cmake
-#usr/lib/cmake/boost_process-1.89.0
-#usr/lib/cmake/boost_process-1.89.0/boost_process-config-version.cmake
-#usr/lib/cmake/boost_process-1.89.0/boost_process-config.cmake
-#usr/lib/cmake/boost_process-1.89.0/libboost_process-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_process-1.89.0/libboost_process-variant-x64-shared.cmake
-#usr/lib/cmake/boost_python-1.89.0
-#usr/lib/cmake/boost_python-1.89.0/boost_python-config-version.cmake
-#usr/lib/cmake/boost_python-1.89.0/boost_python-config.cmake
-#usr/lib/cmake/boost_python-1.89.0/libboost_python-variant-mt-x64-shared-py3.10.cmake
-#usr/lib/cmake/boost_python-1.89.0/libboost_python-variant-x64-shared-py3.10.cmake
-#usr/lib/cmake/boost_random-1.89.0
-#usr/lib/cmake/boost_random-1.89.0/boost_random-config-version.cmake
-#usr/lib/cmake/boost_random-1.89.0/boost_random-config.cmake
-#usr/lib/cmake/boost_random-1.89.0/libboost_random-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_random-1.89.0/libboost_random-variant-x64-shared.cmake
-#usr/lib/cmake/boost_regex-1.89.0
-#usr/lib/cmake/boost_regex-1.89.0/boost_regex-config-version.cmake
-#usr/lib/cmake/boost_regex-1.89.0/boost_regex-config.cmake
-#usr/lib/cmake/boost_regex-1.89.0/libboost_regex-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_regex-1.89.0/libboost_regex-variant-x64-shared.cmake
-#usr/lib/cmake/boost_serialization-1.89.0
-#usr/lib/cmake/boost_serialization-1.89.0/boost_serialization-config-version.cmake
-#usr/lib/cmake/boost_serialization-1.89.0/boost_serialization-config.cmake
-#usr/lib/cmake/boost_serialization-1.89.0/libboost_serialization-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_serialization-1.89.0/libboost_serialization-variant-x64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/boost_stacktrace_addr2line-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/boost_stacktrace_addr2line-config.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/libboost_stacktrace_addr2line-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_addr2line-1.89.0/libboost_stacktrace_addr2line-variant-x64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/boost_stacktrace_basic-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/boost_stacktrace_basic-config.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/libboost_stacktrace_basic-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_basic-1.89.0/libboost_stacktrace_basic-variant-x64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_from_exception-1.89.0
-#usr/lib/cmake/boost_stacktrace_from_exception-1.89.0/boost_stacktrace_from_exception-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_from_exception-1.89.0/boost_stacktrace_from_exception-config.cmake
-#usr/lib/cmake/boost_stacktrace_from_exception-1.89.0/libboost_stacktrace_from_exception-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_from_exception-1.89.0/libboost_stacktrace_from_exception-variant-x64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/boost_stacktrace_noop-config-version.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/boost_stacktrace_noop-config.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/libboost_stacktrace_noop-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_stacktrace_noop-1.89.0/libboost_stacktrace_noop-variant-x64-shared.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/boost_test_exec_monitor-config-version.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/boost_test_exec_monitor-config.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/libboost_test_exec_monitor-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_test_exec_monitor-1.89.0/libboost_test_exec_monitor-variant-x64-shared.cmake
-#usr/lib/cmake/boost_thread-1.89.0
-#usr/lib/cmake/boost_thread-1.89.0/boost_thread-config-version.cmake
-#usr/lib/cmake/boost_thread-1.89.0/boost_thread-config.cmake
-#usr/lib/cmake/boost_thread-1.89.0/libboost_thread-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_thread-1.89.0/libboost_thread-variant-x64-shared.cmake
-#usr/lib/cmake/boost_timer-1.89.0
-#usr/lib/cmake/boost_timer-1.89.0/boost_timer-config-version.cmake
-#usr/lib/cmake/boost_timer-1.89.0/boost_timer-config.cmake
-#usr/lib/cmake/boost_timer-1.89.0/libboost_timer-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_timer-1.89.0/libboost_timer-variant-x64-shared.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0
-#usr/lib/cmake/boost_type_erasure-1.89.0/boost_type_erasure-config-version.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0/boost_type_erasure-config.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0/libboost_type_erasure-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_type_erasure-1.89.0/libboost_type_erasure-variant-x64-shared.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/boost_unit_test_framework-config-version.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/boost_unit_test_framework-config.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/libboost_unit_test_framework-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_unit_test_framework-1.89.0/libboost_unit_test_framework-variant-x64-shared.cmake
-#usr/lib/cmake/boost_url-1.89.0
-#usr/lib/cmake/boost_url-1.89.0/boost_url-config-version.cmake
-#usr/lib/cmake/boost_url-1.89.0/boost_url-config.cmake
-#usr/lib/cmake/boost_url-1.89.0/libboost_url-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_url-1.89.0/libboost_url-variant-x64-shared.cmake
-#usr/lib/cmake/boost_wave-1.89.0
-#usr/lib/cmake/boost_wave-1.89.0/boost_wave-config-version.cmake
-#usr/lib/cmake/boost_wave-1.89.0/boost_wave-config.cmake
-#usr/lib/cmake/boost_wave-1.89.0/libboost_wave-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_wave-1.89.0/libboost_wave-variant-x64-shared.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0
-#usr/lib/cmake/boost_wserialization-1.89.0/boost_wserialization-config-version.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0/boost_wserialization-config.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0/libboost_wserialization-variant-mt-x64-shared.cmake
-#usr/lib/cmake/boost_wserialization-1.89.0/libboost_wserialization-variant-x64-shared.cmake
+#usr/lib/cmake/Boost-1.90.0
+#usr/lib/cmake/Boost-1.90.0/BoostConfig.cmake
+#usr/lib/cmake/Boost-1.90.0/BoostConfigVersion.cmake
+#usr/lib/cmake/BoostDetectToolset-1.90.0.cmake
+#usr/lib/cmake/boost_atomic-1.90.0
+#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config-version.cmake
+#usr/lib/cmake/boost_atomic-1.90.0/boost_atomic-config.cmake
+#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_atomic-1.90.0/libboost_atomic-variant-x64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.90.0
+#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config-version.cmake
+#usr/lib/cmake/boost_charconv-1.90.0/boost_charconv-config.cmake
+#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_charconv-1.90.0/libboost_charconv-variant-x64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.90.0
+#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config-version.cmake
+#usr/lib/cmake/boost_chrono-1.90.0/boost_chrono-config.cmake
+#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_chrono-1.90.0/libboost_chrono-variant-x64-shared.cmake
+#usr/lib/cmake/boost_container-1.90.0
+#usr/lib/cmake/boost_container-1.90.0/boost_container-config-version.cmake
+#usr/lib/cmake/boost_container-1.90.0/boost_container-config.cmake
+#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_container-1.90.0/libboost_container-variant-x64-shared.cmake
+#usr/lib/cmake/boost_context-1.90.0
+#usr/lib/cmake/boost_context-1.90.0/boost_context-config-version.cmake
+#usr/lib/cmake/boost_context-1.90.0/boost_context-config.cmake
+#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_context-1.90.0/libboost_context-variant-x64-shared.cmake
+#usr/lib/cmake/boost_contract-1.90.0
+#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config-version.cmake
+#usr/lib/cmake/boost_contract-1.90.0/boost_contract-config.cmake
+#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_contract-1.90.0/libboost_contract-variant-x64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.90.0
+#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config-version.cmake
+#usr/lib/cmake/boost_date_time-1.90.0/boost_date_time-config.cmake
+#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_date_time-1.90.0/libboost_date_time-variant-x64-shared.cmake
+#usr/lib/cmake/boost_exception-1.90.0
+#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config-version.cmake
+#usr/lib/cmake/boost_exception-1.90.0/boost_exception-config.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0
+#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config-version.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0/boost_filesystem-config.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_filesystem-1.90.0/libboost_filesystem-variant-x64-shared.cmake
+#usr/lib/cmake/boost_graph-1.90.0
+#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config-version.cmake
+#usr/lib/cmake/boost_graph-1.90.0/boost_graph-config.cmake
+#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_graph-1.90.0/libboost_graph-variant-x64-shared.cmake
+#usr/lib/cmake/boost_headers-1.90.0
+#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config-version.cmake
+#usr/lib/cmake/boost_headers-1.90.0/boost_headers-config.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0
+#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config-version.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0/boost_iostreams-config.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_iostreams-1.90.0/libboost_iostreams-variant-x64-shared.cmake
+#usr/lib/cmake/boost_json-1.90.0
+#usr/lib/cmake/boost_json-1.90.0/boost_json-config-version.cmake
+#usr/lib/cmake/boost_json-1.90.0/boost_json-config.cmake
+#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_json-1.90.0/libboost_json-variant-x64-shared.cmake
+#usr/lib/cmake/boost_locale-1.90.0
+#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config-version.cmake
+#usr/lib/cmake/boost_locale-1.90.0/boost_locale-config.cmake
+#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_locale-1.90.0/libboost_locale-variant-x64-shared.cmake
+#usr/lib/cmake/boost_log-1.90.0
+#usr/lib/cmake/boost_log-1.90.0/boost_log-config-version.cmake
+#usr/lib/cmake/boost_log-1.90.0/boost_log-config.cmake
+#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_log-1.90.0/libboost_log-variant-x64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0
+#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config-version.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0/boost_log_setup-config.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_log_setup-1.90.0/libboost_log_setup-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math-1.90.0
+#usr/lib/cmake/boost_math-1.90.0/boost_math-config-version.cmake
+#usr/lib/cmake/boost_math-1.90.0/boost_math-config.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0
+#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config-version.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0/boost_math_c99-config.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99-1.90.0/libboost_math_c99-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0
+#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config-version.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0/boost_math_c99f-config.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99f-1.90.0/libboost_math_c99f-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0
+#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config-version.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0/boost_math_c99l-config.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_c99l-1.90.0/libboost_math_c99l-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0
+#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config-version.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0/boost_math_tr1-config.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1-1.90.0/libboost_math_tr1-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0
+#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config-version.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0/boost_math_tr1f-config.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1f-1.90.0/libboost_math_tr1f-variant-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0
+#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config-version.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0/boost_math_tr1l-config.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_math_tr1l-1.90.0/libboost_math_tr1l-variant-x64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.90.0
+#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config-version.cmake
+#usr/lib/cmake/boost_nowide-1.90.0/boost_nowide-config.cmake
+#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_nowide-1.90.0/libboost_nowide-variant-x64-shared.cmake
+#usr/lib/cmake/boost_numpy-1.90.0
+#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config-version.cmake
+#usr/lib/cmake/boost_numpy-1.90.0/boost_numpy-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/boost_prg_exec_monitor-config.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_prg_exec_monitor-1.90.0/libboost_prg_exec_monitor-variant-x64-shared.cmake
+#usr/lib/cmake/boost_process-1.90.0
+#usr/lib/cmake/boost_process-1.90.0/boost_process-config-version.cmake
+#usr/lib/cmake/boost_process-1.90.0/boost_process-config.cmake
+#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_process-1.90.0/libboost_process-variant-x64-shared.cmake
+#usr/lib/cmake/boost_python-1.90.0
+#usr/lib/cmake/boost_python-1.90.0/boost_python-config-version.cmake
+#usr/lib/cmake/boost_python-1.90.0/boost_python-config.cmake
+#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-mt-x64-shared-py3.10.cmake
+#usr/lib/cmake/boost_python-1.90.0/libboost_python-variant-x64-shared-py3.10.cmake
+#usr/lib/cmake/boost_random-1.90.0
+#usr/lib/cmake/boost_random-1.90.0/boost_random-config-version.cmake
+#usr/lib/cmake/boost_random-1.90.0/boost_random-config.cmake
+#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_random-1.90.0/libboost_random-variant-x64-shared.cmake
+#usr/lib/cmake/boost_regex-1.90.0
+#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config-version.cmake
+#usr/lib/cmake/boost_regex-1.90.0/boost_regex-config.cmake
+#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_regex-1.90.0/libboost_regex-variant-x64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.90.0
+#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config-version.cmake
+#usr/lib/cmake/boost_serialization-1.90.0/boost_serialization-config.cmake
+#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_serialization-1.90.0/libboost_serialization-variant-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/boost_stacktrace_addr2line-config.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_addr2line-1.90.0/libboost_stacktrace_addr2line-variant-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/boost_stacktrace_basic-config.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_basic-1.90.0/libboost_stacktrace_basic-variant-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0
+#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/boost_stacktrace_from_exception-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/boost_stacktrace_from_exception-config.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/libboost_stacktrace_from_exception-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_from_exception-1.90.0/libboost_stacktrace_from_exception-variant-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config-version.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/boost_stacktrace_noop-config.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_stacktrace_noop-1.90.0/libboost_stacktrace_noop-variant-x64-shared.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config-version.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/boost_test_exec_monitor-config.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_test_exec_monitor-1.90.0/libboost_test_exec_monitor-variant-x64-shared.cmake
+#usr/lib/cmake/boost_thread-1.90.0
+#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config-version.cmake
+#usr/lib/cmake/boost_thread-1.90.0/boost_thread-config.cmake
+#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_thread-1.90.0/libboost_thread-variant-x64-shared.cmake
+#usr/lib/cmake/boost_timer-1.90.0
+#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config-version.cmake
+#usr/lib/cmake/boost_timer-1.90.0/boost_timer-config.cmake
+#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_timer-1.90.0/libboost_timer-variant-x64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0
+#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config-version.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0/boost_type_erasure-config.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_type_erasure-1.90.0/libboost_type_erasure-variant-x64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config-version.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/boost_unit_test_framework-config.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_unit_test_framework-1.90.0/libboost_unit_test_framework-variant-x64-shared.cmake
+#usr/lib/cmake/boost_url-1.90.0
+#usr/lib/cmake/boost_url-1.90.0/boost_url-config-version.cmake
+#usr/lib/cmake/boost_url-1.90.0/boost_url-config.cmake
+#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_url-1.90.0/libboost_url-variant-x64-shared.cmake
+#usr/lib/cmake/boost_wave-1.90.0
+#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config-version.cmake
+#usr/lib/cmake/boost_wave-1.90.0/boost_wave-config.cmake
+#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_wave-1.90.0/libboost_wave-variant-x64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0
+#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config-version.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0/boost_wserialization-config.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-mt-x64-shared.cmake
+#usr/lib/cmake/boost_wserialization-1.90.0/libboost_wserialization-variant-x64-shared.cmake
 #usr/lib/libboost_atomic-mt-x64.so
-usr/lib/libboost_atomic-mt-x64.so.1.89.0
+usr/lib/libboost_atomic-mt-x64.so.1.90.0
 #usr/lib/libboost_charconv-mt-x64.so
-usr/lib/libboost_charconv-mt-x64.so.1.89.0
+usr/lib/libboost_charconv-mt-x64.so.1.90.0
 #usr/lib/libboost_charconv-x64.so
-usr/lib/libboost_charconv-x64.so.1.89.0
+usr/lib/libboost_charconv-x64.so.1.90.0
 #usr/lib/libboost_chrono-mt-x64.so
-usr/lib/libboost_chrono-mt-x64.so.1.89.0
+usr/lib/libboost_chrono-mt-x64.so.1.90.0
 #usr/lib/libboost_chrono-x64.so
-usr/lib/libboost_chrono-x64.so.1.89.0
+usr/lib/libboost_chrono-x64.so.1.90.0
 #usr/lib/libboost_container-mt-x64.so
-usr/lib/libboost_container-mt-x64.so.1.89.0
+usr/lib/libboost_container-mt-x64.so.1.90.0
 #usr/lib/libboost_container-x64.so
-usr/lib/libboost_container-x64.so.1.89.0
+usr/lib/libboost_container-x64.so.1.90.0
 #usr/lib/libboost_context-mt-x64.so
-usr/lib/libboost_context-mt-x64.so.1.89.0
+usr/lib/libboost_context-mt-x64.so.1.90.0
 #usr/lib/libboost_contract-mt-x64.so
-usr/lib/libboost_contract-mt-x64.so.1.89.0
+usr/lib/libboost_contract-mt-x64.so.1.90.0
 #usr/lib/libboost_contract-x64.so
-usr/lib/libboost_contract-x64.so.1.89.0
+usr/lib/libboost_contract-x64.so.1.90.0
 #usr/lib/libboost_date_time-mt-x64.so
-usr/lib/libboost_date_time-mt-x64.so.1.89.0
+usr/lib/libboost_date_time-mt-x64.so.1.90.0
 #usr/lib/libboost_date_time-x64.so
-usr/lib/libboost_date_time-x64.so.1.89.0
+usr/lib/libboost_date_time-x64.so.1.90.0
 #usr/lib/libboost_exception-mt-x64.a
 #usr/lib/libboost_exception-x64.a
 #usr/lib/libboost_filesystem-mt-x64.so
-usr/lib/libboost_filesystem-mt-x64.so.1.89.0
+usr/lib/libboost_filesystem-mt-x64.so.1.90.0
 #usr/lib/libboost_filesystem-x64.so
-usr/lib/libboost_filesystem-x64.so.1.89.0
+usr/lib/libboost_filesystem-x64.so.1.90.0
 #usr/lib/libboost_graph-mt-x64.so
-usr/lib/libboost_graph-mt-x64.so.1.89.0
+usr/lib/libboost_graph-mt-x64.so.1.90.0
 #usr/lib/libboost_graph-x64.so
-usr/lib/libboost_graph-x64.so.1.89.0
+usr/lib/libboost_graph-x64.so.1.90.0
 #usr/lib/libboost_iostreams-mt-x64.so
-usr/lib/libboost_iostreams-mt-x64.so.1.89.0
+usr/lib/libboost_iostreams-mt-x64.so.1.90.0
 #usr/lib/libboost_iostreams-x64.so
-usr/lib/libboost_iostreams-x64.so.1.89.0
+usr/lib/libboost_iostreams-x64.so.1.90.0
 #usr/lib/libboost_json-mt-x64.so
-usr/lib/libboost_json-mt-x64.so.1.89.0
+usr/lib/libboost_json-mt-x64.so.1.90.0
 #usr/lib/libboost_json-x64.so
-usr/lib/libboost_json-x64.so.1.89.0
+usr/lib/libboost_json-x64.so.1.90.0
 #usr/lib/libboost_locale-mt-x64.so
-usr/lib/libboost_locale-mt-x64.so.1.89.0
+usr/lib/libboost_locale-mt-x64.so.1.90.0
 #usr/lib/libboost_log-mt-x64.so
-usr/lib/libboost_log-mt-x64.so.1.89.0
+usr/lib/libboost_log-mt-x64.so.1.90.0
 #usr/lib/libboost_log-x64.so
-usr/lib/libboost_log-x64.so.1.89.0
+usr/lib/libboost_log-x64.so.1.90.0
 #usr/lib/libboost_log_setup-mt-x64.so
-usr/lib/libboost_log_setup-mt-x64.so.1.89.0
+usr/lib/libboost_log_setup-mt-x64.so.1.90.0
 #usr/lib/libboost_log_setup-x64.so
-usr/lib/libboost_log_setup-x64.so.1.89.0
+usr/lib/libboost_log_setup-x64.so.1.90.0
 #usr/lib/libboost_math_c99-mt-x64.so
-usr/lib/libboost_math_c99-mt-x64.so.1.89.0
+usr/lib/libboost_math_c99-mt-x64.so.1.90.0
 #usr/lib/libboost_math_c99-x64.so
-usr/lib/libboost_math_c99-x64.so.1.89.0
+usr/lib/libboost_math_c99-x64.so.1.90.0
 #usr/lib/libboost_math_c99f-mt-x64.so
-usr/lib/libboost_math_c99f-mt-x64.so.1.89.0
+usr/lib/libboost_math_c99f-mt-x64.so.1.90.0
 #usr/lib/libboost_math_c99f-x64.so
-usr/lib/libboost_math_c99f-x64.so.1.89.0
+usr/lib/libboost_math_c99f-x64.so.1.90.0
 #usr/lib/libboost_math_c99l-mt-x64.so
-usr/lib/libboost_math_c99l-mt-x64.so.1.89.0
+usr/lib/libboost_math_c99l-mt-x64.so.1.90.0
 #usr/lib/libboost_math_c99l-x64.so
-usr/lib/libboost_math_c99l-x64.so.1.89.0
+usr/lib/libboost_math_c99l-x64.so.1.90.0
 #usr/lib/libboost_math_tr1-mt-x64.so
-usr/lib/libboost_math_tr1-mt-x64.so.1.89.0
+usr/lib/libboost_math_tr1-mt-x64.so.1.90.0
 #usr/lib/libboost_math_tr1-x64.so
-usr/lib/libboost_math_tr1-x64.so.1.89.0
+usr/lib/libboost_math_tr1-x64.so.1.90.0
 #usr/lib/libboost_math_tr1f-mt-x64.so
-usr/lib/libboost_math_tr1f-mt-x64.so.1.89.0
+usr/lib/libboost_math_tr1f-mt-x64.so.1.90.0
 #usr/lib/libboost_math_tr1f-x64.so
-usr/lib/libboost_math_tr1f-x64.so.1.89.0
+usr/lib/libboost_math_tr1f-x64.so.1.90.0
 #usr/lib/libboost_math_tr1l-mt-x64.so
-usr/lib/libboost_math_tr1l-mt-x64.so.1.89.0
+usr/lib/libboost_math_tr1l-mt-x64.so.1.90.0
 #usr/lib/libboost_math_tr1l-x64.so
-usr/lib/libboost_math_tr1l-x64.so.1.89.0
+usr/lib/libboost_math_tr1l-x64.so.1.90.0
 #usr/lib/libboost_nowide-mt-x64.so
-usr/lib/libboost_nowide-mt-x64.so.1.89.0
+usr/lib/libboost_nowide-mt-x64.so.1.90.0
 #usr/lib/libboost_nowide-x64.so
-usr/lib/libboost_nowide-x64.so.1.89.0
+usr/lib/libboost_nowide-x64.so.1.90.0
 #usr/lib/libboost_prg_exec_monitor-mt-x64.so
-usr/lib/libboost_prg_exec_monitor-mt-x64.so.1.89.0
+usr/lib/libboost_prg_exec_monitor-mt-x64.so.1.90.0
 #usr/lib/libboost_prg_exec_monitor-x64.so
-usr/lib/libboost_prg_exec_monitor-x64.so.1.89.0
+usr/lib/libboost_prg_exec_monitor-x64.so.1.90.0
 #usr/lib/libboost_process-mt-x64.so
-usr/lib/libboost_process-mt-x64.so.1.89.0
+usr/lib/libboost_process-mt-x64.so.1.90.0
 #usr/lib/libboost_process-x64.so
-usr/lib/libboost_process-x64.so.1.89.0
+usr/lib/libboost_process-x64.so.1.90.0
 #usr/lib/libboost_python310-mt-x64.so
-usr/lib/libboost_python310-mt-x64.so.1.89.0
+usr/lib/libboost_python310-mt-x64.so.1.90.0
 #usr/lib/libboost_python310-x64.so
-usr/lib/libboost_python310-x64.so.1.89.0
+usr/lib/libboost_python310-x64.so.1.90.0
 #usr/lib/libboost_random-mt-x64.so
-usr/lib/libboost_random-mt-x64.so.1.89.0
+usr/lib/libboost_random-mt-x64.so.1.90.0
 #usr/lib/libboost_random-x64.so
-usr/lib/libboost_random-x64.so.1.89.0
+usr/lib/libboost_random-x64.so.1.90.0
 #usr/lib/libboost_regex-mt-x64.so
-usr/lib/libboost_regex-mt-x64.so.1.89.0
+usr/lib/libboost_regex-mt-x64.so.1.90.0
 #usr/lib/libboost_regex-x64.so
-usr/lib/libboost_regex-x64.so.1.89.0
+usr/lib/libboost_regex-x64.so.1.90.0
 #usr/lib/libboost_serialization-mt-x64.so
-usr/lib/libboost_serialization-mt-x64.so.1.89.0
+usr/lib/libboost_serialization-mt-x64.so.1.90.0
 #usr/lib/libboost_serialization-x64.so
-usr/lib/libboost_serialization-x64.so.1.89.0
+usr/lib/libboost_serialization-x64.so.1.90.0
 #usr/lib/libboost_stacktrace_addr2line-mt-x64.so
-usr/lib/libboost_stacktrace_addr2line-mt-x64.so.1.89.0
+usr/lib/libboost_stacktrace_addr2line-mt-x64.so.1.90.0
 #usr/lib/libboost_stacktrace_addr2line-x64.so
-usr/lib/libboost_stacktrace_addr2line-x64.so.1.89.0
+usr/lib/libboost_stacktrace_addr2line-x64.so.1.90.0
 #usr/lib/libboost_stacktrace_basic-mt-x64.so
-usr/lib/libboost_stacktrace_basic-mt-x64.so.1.89.0
+usr/lib/libboost_stacktrace_basic-mt-x64.so.1.90.0
 #usr/lib/libboost_stacktrace_basic-x64.so
-usr/lib/libboost_stacktrace_basic-x64.so.1.89.0
+usr/lib/libboost_stacktrace_basic-x64.so.1.90.0
 #usr/lib/libboost_stacktrace_from_exception-mt-x64.so
-usr/lib/libboost_stacktrace_from_exception-mt-x64.so.1.89.0
+usr/lib/libboost_stacktrace_from_exception-mt-x64.so.1.90.0
 #usr/lib/libboost_stacktrace_from_exception-x64.so
-usr/lib/libboost_stacktrace_from_exception-x64.so.1.89.0
+usr/lib/libboost_stacktrace_from_exception-x64.so.1.90.0
 #usr/lib/libboost_stacktrace_noop-mt-x64.so
-usr/lib/libboost_stacktrace_noop-mt-x64.so.1.89.0
+usr/lib/libboost_stacktrace_noop-mt-x64.so.1.90.0
 #usr/lib/libboost_stacktrace_noop-x64.so
-usr/lib/libboost_stacktrace_noop-x64.so.1.89.0
+usr/lib/libboost_stacktrace_noop-x64.so.1.90.0
 #usr/lib/libboost_test_exec_monitor-mt-x64.a
 #usr/lib/libboost_test_exec_monitor-x64.a
 #usr/lib/libboost_thread-mt-x64.so
-usr/lib/libboost_thread-mt-x64.so.1.89.0
+usr/lib/libboost_thread-mt-x64.so.1.90.0
 #usr/lib/libboost_timer-mt-x64.so
-usr/lib/libboost_timer-mt-x64.so.1.89.0
+usr/lib/libboost_timer-mt-x64.so.1.90.0
 #usr/lib/libboost_timer-x64.so
-usr/lib/libboost_timer-x64.so.1.89.0
+usr/lib/libboost_timer-x64.so.1.90.0
 #usr/lib/libboost_type_erasure-mt-x64.so
-usr/lib/libboost_type_erasure-mt-x64.so.1.89.0
+usr/lib/libboost_type_erasure-mt-x64.so.1.90.0
 #usr/lib/libboost_type_erasure-x64.so
-usr/lib/libboost_type_erasure-x64.so.1.89.0
+usr/lib/libboost_type_erasure-x64.so.1.90.0
 #usr/lib/libboost_unit_test_framework-mt-x64.so
-usr/lib/libboost_unit_test_framework-mt-x64.so.1.89.0
+usr/lib/libboost_unit_test_framework-mt-x64.so.1.90.0
 #usr/lib/libboost_unit_test_framework-x64.so
-usr/lib/libboost_unit_test_framework-x64.so.1.89.0
+usr/lib/libboost_unit_test_framework-x64.so.1.90.0
 #usr/lib/libboost_url-mt-x64.so
-usr/lib/libboost_url-mt-x64.so.1.89.0
+usr/lib/libboost_url-mt-x64.so.1.90.0
 #usr/lib/libboost_url-x64.so
-usr/lib/libboost_url-x64.so.1.89.0
+usr/lib/libboost_url-x64.so.1.90.0
 #usr/lib/libboost_wave-mt-x64.so
-usr/lib/libboost_wave-mt-x64.so.1.89.0
+usr/lib/libboost_wave-mt-x64.so.1.90.0
 #usr/lib/libboost_wave-x64.so
-usr/lib/libboost_wave-x64.so.1.89.0
+usr/lib/libboost_wave-x64.so.1.90.0
 #usr/lib/libboost_wserialization-mt-x64.so
-usr/lib/libboost_wserialization-mt-x64.so.1.89.0
+usr/lib/libboost_wserialization-mt-x64.so.1.90.0
 #usr/lib/libboost_wserialization-x64.so
-usr/lib/libboost_wserialization-x64.so.1.89.0
+usr/lib/libboost_wserialization-x64.so.1.90.0
 #usr/share/boost_predef
 #usr/share/boost_predef/build.jam
 #usr/share/boost_predef/tools
diff --git a/lfs/boost b/lfs/boost
index 9be6641a0..04a8ea68e 100644
--- a/lfs/boost
+++ b/lfs/boost
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1_89_0
+VER        = 1_90_0
 
 THISAPP    = boost_$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
@@ -65,7 +65,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = e55139e80d01fa837322c0ef3ed4dfd07fbea87cb55dac7777cc68a1f3b288addba789253542ee84740e94d7e9701c1356e104078cc9a8e6ec61f282c8158204
+$(DL_FILE)_BLAKE2 = daaf524dd26c0e24bec6e461749305277b9b86059f3eb3435ae4928a6537eb198234c597324faa40eb372343233daaf5f5aae886160d9833b04992ac57e385c9
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship boost
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship libpng Adolf Belka
                   ` (32 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/aarch64/boost | 1 +
 config/rootfiles/core/202/filelists/riscv64/boost | 1 +
 config/rootfiles/core/202/filelists/x86_64/boost  | 1 +
 3 files changed, 3 insertions(+)
 create mode 120000 config/rootfiles/core/202/filelists/aarch64/boost
 create mode 120000 config/rootfiles/core/202/filelists/riscv64/boost
 create mode 120000 config/rootfiles/core/202/filelists/x86_64/boost

diff --git a/config/rootfiles/core/202/filelists/aarch64/boost b/config/rootfiles/core/202/filelists/aarch64/boost
new file mode 120000
index 000000000..807ad06be
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/aarch64/boost
@@ -0,0 +1 @@
+../../../../common/aarch64/boost
\ No newline at end of file
diff --git a/config/rootfiles/core/202/filelists/riscv64/boost b/config/rootfiles/core/202/filelists/riscv64/boost
new file mode 120000
index 000000000..cbc461c2b
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/riscv64/boost
@@ -0,0 +1 @@
+../../../../common/riscv64/boost
\ No newline at end of file
diff --git a/config/rootfiles/core/202/filelists/x86_64/boost b/config/rootfiles/core/202/filelists/x86_64/boost
new file mode 120000
index 000000000..9ed31e1d5
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/x86_64/boost
@@ -0,0 +1 @@
+../../../../common/x86_64/boost
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship libpng
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship boost Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship libsodium Adolf Belka
                   ` (31 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/libpng | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/libpng

diff --git a/config/rootfiles/core/202/filelists/libpng b/config/rootfiles/core/202/filelists/libpng
new file mode 120000
index 000000000..8ef96e2c1
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/libpng
@@ -0,0 +1 @@
+../../../common/libpng
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship libsodium
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship boost Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship libpng Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship liburcu Adolf Belka
                   ` (30 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/libsodium | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/libsodium

diff --git a/config/rootfiles/core/202/filelists/libsodium b/config/rootfiles/core/202/filelists/libsodium
new file mode 120000
index 000000000..ebd862fbc
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/libsodium
@@ -0,0 +1 @@
+../../../common/libsodium
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship liburcu
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (2 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship libsodium Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship lmdb Adolf Belka
                   ` (29 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/liburcu | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/liburcu

diff --git a/config/rootfiles/core/202/filelists/liburcu b/config/rootfiles/core/202/filelists/liburcu
new file mode 120000
index 000000000..d19012e04
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/liburcu
@@ -0,0 +1 @@
+../../../common/liburcu
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship lmdb
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (3 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship liburcu Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship lvm2 Adolf Belka
                   ` (28 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/lmdb | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/lmdb

diff --git a/config/rootfiles/core/202/filelists/lmdb b/config/rootfiles/core/202/filelists/lmdb
new file mode 120000
index 000000000..c25767da5
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/lmdb
@@ -0,0 +1 @@
+../../../common/lmdb
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship lvm2
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (4 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship lmdb Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship man-pages Adolf Belka
                   ` (27 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/lvm2 | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/lvm2

diff --git a/config/rootfiles/core/202/filelists/lvm2 b/config/rootfiles/core/202/filelists/lvm2
new file mode 120000
index 000000000..d640870b7
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/lvm2
@@ -0,0 +1 @@
+../../../common/lvm2
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship man-pages
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (5 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship lvm2 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship mdadm Adolf Belka
                   ` (26 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/man-pages | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/man-pages

diff --git a/config/rootfiles/core/202/filelists/man-pages b/config/rootfiles/core/202/filelists/man-pages
new file mode 120000
index 000000000..ae7adf7c3
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/man-pages
@@ -0,0 +1 @@
+../../../common/man-pages
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship mdadm
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (6 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship man-pages Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship ncat Adolf Belka
                   ` (25 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/mdadm | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/mdadm

diff --git a/config/rootfiles/core/202/filelists/mdadm b/config/rootfiles/core/202/filelists/mdadm
new file mode 120000
index 000000000..465808b20
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/mdadm
@@ -0,0 +1 @@
+../../../common/mdadm
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship ncat
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (7 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship mdadm Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship pango Adolf Belka
                   ` (24 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/ncat | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/ncat

diff --git a/config/rootfiles/core/202/filelists/ncat b/config/rootfiles/core/202/filelists/ncat
new file mode 120000
index 000000000..38dcdb224
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/ncat
@@ -0,0 +1 @@
+../../../common/ncat
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship pango
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (8 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship ncat Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship sqlite Adolf Belka
                   ` (23 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/pango | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/pango

diff --git a/config/rootfiles/core/202/filelists/pango b/config/rootfiles/core/202/filelists/pango
new file mode 120000
index 000000000..6c37231c7
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/pango
@@ -0,0 +1 @@
+../../../common/pango
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship sqlite
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (9 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship pango Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship tzdata Adolf Belka
                   ` (22 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/sqlite | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/sqlite

diff --git a/config/rootfiles/core/202/filelists/sqlite b/config/rootfiles/core/202/filelists/sqlite
new file mode 120000
index 000000000..4ea569766
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/sqlite
@@ -0,0 +1 @@
+../../../common/sqlite
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship tzdata
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (10 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship sqlite Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship vim Adolf Belka
                   ` (21 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/tzdata | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/tzdata

diff --git a/config/rootfiles/core/202/filelists/tzdata b/config/rootfiles/core/202/filelists/tzdata
new file mode 120000
index 000000000..5a6e3252f
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/tzdata
@@ -0,0 +1 @@
+../../../common/tzdata
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship vim
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (11 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship tzdata Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship xfsprogs Adolf Belka
                   ` (20 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/vim | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/vim

diff --git a/config/rootfiles/core/202/filelists/vim b/config/rootfiles/core/202/filelists/vim
new file mode 120000
index 000000000..98613172e
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/vim
@@ -0,0 +1 @@
+../../../common/vim
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship xfsprogs
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (12 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship vim Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] core202: Ship xz Adolf Belka
                   ` (19 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/xfsprogs | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/xfsprogs

diff --git a/config/rootfiles/core/202/filelists/xfsprogs b/config/rootfiles/core/202/filelists/xfsprogs
new file mode 120000
index 000000000..91032964d
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/xfsprogs
@@ -0,0 +1 @@
+../../../common/xfsprogs
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] core202: Ship xz
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (13 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship xfsprogs Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] libpng: Update to version 1.6.56 Adolf Belka
                   ` (18 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/202/filelists/xz | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/202/filelists/xz

diff --git a/config/rootfiles/core/202/filelists/xz b/config/rootfiles/core/202/filelists/xz
new file mode 120000
index 000000000..734e926c7
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/xz
@@ -0,0 +1 @@
+../../../common/xz
\ No newline at end of file
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] libpng: Update to version 1.6.56
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (14 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] core202: Ship xz Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] libsodium: Update to version 1.0.21 Adolf Belka
                   ` (17 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 1.6.55 to 1.6.56
- Update of rootfile
- Fixes for two high severity CVE's
- Changelog
    1.6.56
  Fixed CVE-2026-33416 (high severity):
    Use-after-free via pointer aliasing in `png_set_tRNS` and `png_set_PLTE`.
    (Reported by Halil Oktay and Ryo Shimada;
    fixed by Halil Oktay and Cosmin Truta.)
  Fixed CVE-2026-33636 (high severity):
    Out-of-bounds read/write in the palette expansion on ARM Neon.
    (Reported by Taegu Ha; fixed by Taegu Ha and Cosmin Truta.)
  Fixed uninitialized reads beyond `num_trans` in `trans_alpha` buffers.
    (Contributed by Halil Oktay.)
  Fixed stale `info_ptr->palette` after in-place gamma and background
    transforms.
  Fixed wrong channel indices in `png_image_read_and_map` RGB_ALPHA path.
    (Contributed by Yuelin Wang.)
  Fixed wrong background color in colormap read.
    (Contributed by Yuelin Wang.)
  Fixed dead loop in sPLT write.
    (Contributed by Yuelin Wang.)
  Added missing null pointer checks in four public API functions.
    (Contributed by Yuelin Wang.)
  Validated shift bit depths in `png_set_shift` to prevent infinite loop.
    (Contributed by Yuelin Wang.)
  Avoided undefined behavior in library and tests.
  Deprecated the hardly-ever-tested POINTER_INDEXING config option.
  Added negative-stride test coverage for the simplified API.
  Fixed memory leaks and API misuse in oss-fuzz.
    (Contributed by Owen Sanzas.)
  Implemented various fixes and improvements in oss-fuzz.
    (Contributed by Bob Friesenhahn and Philippe Antoine.)
  Performed various refactorings and cleanups.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/libpng | 2 +-
 lfs/libpng                     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/config/rootfiles/common/libpng b/config/rootfiles/common/libpng
index 3a263172a..c19c261c5 100644
--- a/config/rootfiles/common/libpng
+++ b/config/rootfiles/common/libpng
@@ -16,7 +16,7 @@ usr/lib/libpng.so
 #usr/lib/libpng16.la
 usr/lib/libpng16.so
 usr/lib/libpng16.so.16
-usr/lib/libpng16.so.16.55.0
+usr/lib/libpng16.so.16.56.0
 #usr/lib/pkgconfig/libpng.pc
 #usr/lib/pkgconfig/libpng16.pc
 #usr/share/man/man3/libpng.3
diff --git a/lfs/libpng b/lfs/libpng
index cadba768d..d65a5d86e 100644
--- a/lfs/libpng
+++ b/lfs/libpng
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.6.55
+VER        = 1.6.56
 
 THISAPP    = libpng-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 2fd88e6e9f4e72edbafbfdd6d8e78522033920a250f8cb37f29ba8e9593cdf006b06f4e73de4e83fc5ddaaa3725362f27f5a16727ae841fd8969b74f28517ec4
+$(DL_FILE)_BLAKE2 = f653a3177e0910fc156a792d5522fc2a0c04ce0bb43eabb68e06922303dcf6062d8f9b570440bfe1a94ac1b901ef6e9c32b6882d0f4a406e5a9090ea3396f89a
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] libsodium: Update to version 1.0.21
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (15 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] libpng: Update to version 1.6.56 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] liburcu: Update to version 0.15.6 Adolf Belka
                   ` (16 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 1.0.20 to 1.0.21
- Update of rootfile
- Changelog
    1.0.21
  This point release includes all the changes from 1.0.20-stable, which
include a security fix for the `crypto_core_ed25519_is_valid_point()`
function, as well as two new sets of functions:
 - The new `crypto_ipcrypt_*` functions implement mechanisms for securely
encrypting and anonymizing IP addresses as specified in https://ipcrypt-std.github.io
 - The `sodium_bin2ip` and `sodium_ip2bin` helper functions have been added
to complement the `crypto_ipcrypt_*` functions and easily convert addresses
between bytes and strings.
 - XOF: the `crypto_xof_shake*` and `crypto_xof_turboshake*` functions
are standard extendable output functions. From input of any length, they can
derive output of any length with the same properties as hash functions. These
primitives are required by many post-quantum mechanisms, but can also be used
for a wide range of applications, including key derivation, session encryption
and more.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/libsodium | 8 +++++++-
 lfs/libsodium                     | 6 +++---
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/config/rootfiles/common/libsodium b/config/rootfiles/common/libsodium
index baa63e259..423fabba1 100644
--- a/config/rootfiles/common/libsodium
+++ b/config/rootfiles/common/libsodium
@@ -16,6 +16,7 @@
 #usr/include/sodium/crypto_core_ed25519.h
 #usr/include/sodium/crypto_core_hchacha20.h
 #usr/include/sodium/crypto_core_hsalsa20.h
+#usr/include/sodium/crypto_core_keccak1600.h
 #usr/include/sodium/crypto_core_ristretto255.h
 #usr/include/sodium/crypto_core_salsa20.h
 #usr/include/sodium/crypto_core_salsa2012.h
@@ -25,6 +26,7 @@
 #usr/include/sodium/crypto_hash.h
 #usr/include/sodium/crypto_hash_sha256.h
 #usr/include/sodium/crypto_hash_sha512.h
+#usr/include/sodium/crypto_ipcrypt.h
 #usr/include/sodium/crypto_kdf.h
 #usr/include/sodium/crypto_kdf_blake2b.h
 #usr/include/sodium/crypto_kdf_hkdf_sha256.h
@@ -59,6 +61,10 @@
 #usr/include/sodium/crypto_verify_16.h
 #usr/include/sodium/crypto_verify_32.h
 #usr/include/sodium/crypto_verify_64.h
+#usr/include/sodium/crypto_xof_shake128.h
+#usr/include/sodium/crypto_xof_shake256.h
+#usr/include/sodium/crypto_xof_turboshake128.h
+#usr/include/sodium/crypto_xof_turboshake256.h
 #usr/include/sodium/export.h
 #usr/include/sodium/randombytes.h
 #usr/include/sodium/randombytes_internal_random.h
@@ -69,5 +75,5 @@
 #usr/lib/libsodium.la
 #usr/lib/libsodium.so
 usr/lib/libsodium.so.26
-usr/lib/libsodium.so.26.2.0
+usr/lib/libsodium.so.26.3.0
 #usr/lib/pkgconfig/libsodium.pc
diff --git a/lfs/libsodium b/lfs/libsodium
index 07c13adca..acd4a72dc 100644
--- a/lfs/libsodium
+++ b/lfs/libsodium
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.0.20
+VER        = 1.0.21
 
 THISAPP    = libsodium-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 2f1d8b2dc8a65f95433132b12bdccb7e0e4750326b05c4f42ddd3a74bf568faa2515384bfe94bba2ef420aff35c515d3d44945ea5a68f72e6a73b3a9b5bb234c
+$(DL_FILE)_BLAKE2 = df68159bbf0b5198ab185e93857b4f07af1d4aa7ffd178b7cb78ff5b020b6ee93ab5c3e71f59812b79906ff4df19e42845435c2bc22bbe8b0a0804076b0ddd05
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] liburcu: Update to version 0.15.6
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (16 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] libsodium: Update to version 1.0.21 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] lmdb: Update to version 0.9.35 Adolf Belka
                   ` (15 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 0.15.5 to 0.15.6
- No change to rootfile
- Changelog
    0.15.6
	* urcu-mb: Add missing TSAN annotation to _urcu_mb_read_lock_update
	* lfstack: Coding style cleanup
	* urcu-qsbr: Use CMM_SEQ_CST_FENCE for _urcu_qsbr_thread_online
	* urcu-mb: Use CMM_SEQ_CST_FENCE for _urcu_mb_read_lock_update
	* urcu-qsbr: Use CMM_SEQ_CST_FENCE for quiescent state update and offline
	* urcu-mb: Use CMM_SEQ_CST_FENCE for _urcu_mb_read_unlock_update_and_wakeup
	* Fix: Only include linux/time_types.h when __NR_futex_time64 is defined
	* Use __NR_futex_time64 in futex syscall wrapper

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/liburcu | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lfs/liburcu b/lfs/liburcu
index a76e5ac35..15f0ac602 100644
--- a/lfs/liburcu
+++ b/lfs/liburcu
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 0.15.5
+VER        = 0.15.6
 
 THISAPP    = userspace-rcu-$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 3e0ad236f77f1146ac3e7fe93ae8f3ea86632af38b78c6648a19c9df33959ff08e42779f6d34b47dfd3f7188efc39f8f4daaba81d702743e357d3bd9327000fc
+$(DL_FILE)_BLAKE2 = 7bc4892f7a322051a1326e7857a14ebdde5867dbccd6a7ceaf1ce0e74668e5ff5f829f6b9d5b6be2163ae000fe2a07bf937fb62b67e7959d7ed8021f67f6ce04
 
 install : $(TARGET)
 
@@ -76,8 +76,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 	$(UPDATE_AUTOMAKE)
 	cd $(DIR_APP) && ./configure \
-		            --prefix=/usr \
-		            --disable-static
+		            	--prefix=/usr \
+		            	--disable-static
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] lmdb: Update to version 0.9.35
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (17 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] liburcu: Update to version 0.15.6 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] lvm2: Update to version 2.03.39 Adolf Belka
                   ` (14 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 0.9.33 to 0.9.35
- No change to rootfile
- Changelog
    0.9.35
	ITS#10434 - Fix typo affecting Mac OSX
    0.9.34
	ITS#9564 - fix race condition freeing spilled pages at end of transaction
	ITS#10222 - Update mdb_dump(1) and mdb_load(1) man pages for append (-a) option
	ITS#10275 - mdb_load: add -Q option to use NOSYNC
	ITS#10296 - fix fdatasync on MacOS
	ITS#10342 - fix memleak in mdb_txn_begin for nested txns
	ITS#10346 - fix mdb_env_copy2 with values > (2GB-16)
	ITS#10355 - fix mplay build on musl
	ITS#10396 - fix mdb_cursor_del0 with multiple DUPSORT cursors
	ITS#10419 - add support for NetBSD
	ITS#10420 - add support for Haiku
	ITS#10421 - mdb_load: check for malicious input

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/lmdb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/lmdb b/lfs/lmdb
index 2da8f1fe2..407ea7703 100644
--- a/lfs/lmdb
+++ b/lfs/lmdb
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 0.9.33
+VER        = 0.9.35
 
 THISAPP    = openldap-LMDB_$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = d5f3df15b0b2b036121cf6c82d6ef5a7298d6a9e7476fa8f94f02bf39812684b3463de4971b782e52883e1b354d6833017cf95aebd99c1761990504bd63b2eb3
+$(DL_FILE)_BLAKE2 = 2c0b8c732cf774ac373420f41c95cbded18a8a23215351944ba51ae61f265aa80ba08dcf376d8f9105b02a31c3f0ff78d1920a52f1daa8630df8e5a1ab1638dd
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] lvm2: Update to version 2.03.39
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (18 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] lmdb: Update to version 0.9.35 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] man-pages: Update to version 6.17 Adolf Belka
                   ` (13 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 2.03.38 to 2.03.39
- Update of rootfile
- Changelog
    2.03.39
  Support --interval +N to delay first poll in pvmove and lvpoll.
  Add lvmpolld 'cmd' log keyword to enable verbose lvpoll output.
  Add atomic leases using Compare and Write (CAW) to lvmlockd.
  Fix pofile generation to include SOURCES2 binaries and update xgettext options.
  Reject lvreduce of CoW snapshot COW store when it would truncate exception data.
  Skip filesystem resize handling for CoW snapshot COW store LVs in lvresize.
  Fix dmeventd inode fallback to use /dev/dm-X when dm_dir() path is unavailable.
  Use temporary activations for integrity, writecache, thin and VDO pool conv.
  Add activate_lv_temporary() to consolidate LV_TEMPORARY and sync handling.
  Add missing sync in add_mirror_log() and activate_and_wipe_lv_list().
  Propagate bcache _wait_all() failure to bcache_flush() and bcache_invalidate_di().
  Propagate io_getevents() EINTR failure through bcache wait chain to abort I/O.
  Retry io_getevents() on EINTR unless LVM interrupt signal was caught.
  Fix checking error codes from io_destroy() and io_getevents().
  Add lvm-index(7), lvm-categories(7) and lvm-args(7) man pages.
  Show active cache mode in kernel table line with lvs -o kernel_cache_mode.
  Preserve file descriptors with CLOEXEC opened in library constructors.
  Use -Wl,-rpath-link for library linking.
  Switch from use of internal device_mapper library to libdm.
  Refactor libbase radix tree to lib/datastruct.
  Use dm_device_list_equal for DM cache comparison.
  Fix cachevol cmeta/cdata device offsets.
  Fix RAID LV health report to distinguish 'refresh needed' from 'repair needed'.
  Fix vgreduce --removemissing --force infinite loop for raid/mirror snapshot.
  Fix vgsplit to not fail on no active LV on a PV being split to an existing VG.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/lvm2 | 3 +++
 lfs/lvm2                     | 6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/config/rootfiles/common/lvm2 b/config/rootfiles/common/lvm2
index 0242549a9..61da721b1 100644
--- a/config/rootfiles/common/lvm2
+++ b/config/rootfiles/common/lvm2
@@ -74,6 +74,9 @@ usr/sbin/vgs
 usr/sbin/vgscan
 usr/sbin/vgsplit
 #usr/share/man/man5/lvm.conf.5
+#usr/share/man/man7/lvm-args.7
+#usr/share/man/man7/lvm-categories.7
+#usr/share/man/man7/lvm-index.7
 #usr/share/man/man7/lvmautoactivation.7
 #usr/share/man/man7/lvmcache.7
 #usr/share/man/man7/lvmraid.7
diff --git a/lfs/lvm2 b/lfs/lvm2
index f0384619e..bc2de3904 100644
--- a/lfs/lvm2
+++ b/lfs/lvm2
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.03.38
+VER        = 2.03.39
 
 THISAPP    = LVM2.$(VER)
 DL_FILE    = $(THISAPP).tgz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 2cdec7e7256855ec1d40f690e3b3b2d0538cef275c68bfaa15235b10890f05c4d9e861607fc611e420619e9e07a0dd431b1a0d9258c8ccf4af7a5b772281f33e
+$(DL_FILE)_BLAKE2 = 24dc0f3a07dbd07a808343bb35078b6fe9e0372052c5d58c1d18b525ed23621434accce891d0a9390f9b5bd790c2d67dd22280746aada409e02c7cef9d9fae1f
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] man-pages: Update to version 6.17
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (19 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] lvm2: Update to version 2.03.39 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] mdadm: Update to version 4.6 Adolf Belka
                   ` (12 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 6.14 to 6.17
- Update of rootfile
- Changelog
    6.17
New and rewritten pages
	man1/
		grepc.1
		grepc_c.1
		mansectf.1
	man2const/
		F_GETDELEG.2const
		IPPROTO_IP.2const			(previously, ip(7))
		IPPROTO_IPV6.2const			(previously, ipv6(7))
		IPV6_ADDRFORM.2const			(previously, ipv6(7))
		IPV6_ADD_MEMBERSHIP.2const		(previously, ipv6(7))
		IPV6_MTU.2const				(previously, ipv6(7))
		IPV6_MTU_DISCOVER.2const		(previously, ipv6(7))
		IPV6_MULTICAST_HOPS.2const		(previously, ipv6(7))
		IPV6_MULTICAST_IF.2const		(previously, ipv6(7))
		IPV6_MULTICAST_LOOP.2const		(previously, ipv6(7))
		IPV6_RECVERR.2const			(previously, ipv6(7))
		IPV6_RECVPKTINFO.2const			(previously, ipv6(7))
		IPV6_ROUTER_ALERT.2const		(previously, ipv6(7))
		IPV6_RTHDR.2const			(previously, ipv6(7))
		IPV6_UNICAST_HOPS.2const		(previously, ipv6(7))
		IPV6_V6ONLY.2const			(previously, ipv6(7))
		IP_ADD_MEMBERSHIP.2constA		(previously, ip(7))
		IP_ADD_SOURCE_MEMBERSHIP.2const		(previously, ip(7))
		IP_BIND_ADDRESS_NO_PORT.2const		(previously, ip(7))
		IP_BLOCK_SOURCE.2const			(previously, ip(7))
		IP_DROP_MEMBERSHIP.2const		(previously, ip(7))
		IP_DROP_SOURCE_MEMBERSHIP.2const	(previously, ip(7))
		IP_FREEBIND.2const			(previously, ip(7))
		IP_HDRINCL.2const			(previously, ip(7))
		IP_LOCAL_PORT_RANGE.2const		(previously, ip(7))
		IP_MSFILTER.2const			(previously, ip(7))
		IP_MTU.2const				(previously, ip(7))
		IP_MTU_DISCOVER.2const			(previously, ip(7))
		IP_MULTICAST_ALL.2const			(previously, ip(7))
		IP_MULTICAST_IF.2const			(previously, ip(7))
		IP_MULTICAST_LOOP.2const		(previously, ip(7))
		IP_MULTICAST_TTL.2const			(previously, ip(7))
		IP_NODEFRAG.2const			(previously, ip(7))
		IP_OPTIONS.2const			(previously, ip(7))
		IP_PASSSEC.2const			(previously, ip(7))
		IP_PKTINFO.2const			(previously, ip(7))
		IP_RECVERR.2const			(previously, ip(7))
		IP_RECVOPTS.2const			(previously, ip(7))
		IP_RECVORIGDSTADDR.2const		(previously, ip(7))
		IP_RECVTOS.2const			(previously, ip(7))
		IP_RECVTTL.2const			(previously, ip(7))
		IP_RETOPTS.2const			(previously, ip(7))
		IP_ROUTER_ALERT.2const			(previously, ip(7))
		IP_TOS.2const				(previously, ip(7))
		IP_TRANSPARENT.2const			(previously, ip(7))
		IP_TTL.2const				(previously, ip(7))
		IP_UNBLOCK_SOURCE.2const		(previously, ip(7))
		SO_PEERSEC.2const			(previously, ip(7))
		in_pktinfo.2type			(previously, ip(7))
		ip_mreq_source.2type			(previously, ip(7))
		ip_mreqn.2type				(previously, ip(7))
	man3/
		_Maxof.3
		aligned_alloc.3				(previously, posix_memalign(3))
		memalign.3				(previously, posix_memalign(3))
		getopt.3				(split into many pages)
		getopt_long.3				(previously, getopt(3))
		getopt_long_only.3			(previously, getopt(3))
		snprintf.3				(previously, printf(3))
		sprintf.3				(previously, printf(3))
		posix_memalign.3			(split into many pages)
		printf.3				(split into many pages)
		pvalloc.3				(previously, posix_memalign(3))
		valloc.3				(previously, posix_memalign(3))
	man3attr/
		gnu::warning.3attr
	man5/
		proc_sys_net_ipv4.5			(previously, ip(7))
	man7/
		ip.7					(split into many pages)
		ipv6.7					(split into many pages)
Newly documented interfaces in existing pages
	man2/
		clone.2
			E2BIG
		madvise.2
			PR_THP_DISABLE_EXCEPT_ADVISED
		mount.2
			ENOSPC
		ptrace.2
			PTRACE_SET_SYSCALL_INFO
			struct ptrace_syscall_info::reserved
			struct ptrace_syscall_info::flags
	man2const/
		PR_GET_THP_DISABLE.2const
		PR_SET_THP_DISABLE.2const
			PR_THP_DISABLE_EXCEPT_ADVISED
	man3/
		timespec_get.3
			TIME_MONOTONIC
			TIME_ACTIVE
			TIME_THREAD_ACTIVE
	man7/
		feature_test_macros.7
			_ISOC23_SOURCE
			_ISOC2X_SOURCE
		operator.7
			_Maxof(3)
			_Minof(3)
		rtnetlink.7
			.ifi_change
		standards.7
			K&R
			Unix/TS 4
			C94, C95, C96, C17, C23
			POSIX.1-2004, POSIX.1-2013, POSIX.1-2024
			SUSv5
New and changed links
	man2const/
		F_SETDELEG.2const			(F_GETDELEG(2const))
		IPV6_AUTHHDR.2const			(IPV6_RTHDR(2const))
		IPV6_DROP_MEMBERSHIP.2const		(IPV6_ADD_MEMBERSHIP(2const))
		IPV6_DSTOPTS.2const			(IPV6_RTHDR(2const))
		IPV6_FLOWINFO.2const			(IPV6_RTHDR(2const))
		IPV6_HOPLIMIT.2const			(IPV6_RTHDR(2const))
		IPV6_HOPOPTS.2const			(IPV6_RTHDR(2const))
	man2type/
		ip_mreq.2type				(ip_mreqn(2type))
	man3/
		_Countof.3				(countof(3))
		_Minof.3				(_Maxof(3))
		vsnprintf.3				(snprintf(3))
		vsprintf.3				(sprintf(3))
Global changes
	-  CONSTRIBUTING.d/
	   -  Add guidelines banning AI for contributing.
	   -  Document guidelines about In-Reply-To: header field.
	   -  Document guidelines about Fixes: trailed field.
	-  README.d/
	   -  Document dependencies of the project.
	-  share/mk/
	   -  Add help-list-* targets.
	-  man/
	   -  HISTORY, STANDARDS
	      -  Document new and old standards with precision.
	-  src/bin/
	   -  grepc, grepc_c, grepc_mk
	      Add new scripts to inspect C source code.
	-  */
	   -  Restore some old copyright notices.
    6.16
New and rewritten pages
	man2/
		fsconfig.2
		fsmount.2
		fsopen.2
		fspick.2
		move_mount.2
		open_tree.2
	man2const/
		PR_FUTEX_HASH_GET_SLOTS.2const
		PR_FUTEX_HASH_SET_SLOTS.2const
	man2type/
		mount_attr.2type			(split from mount_setattr(2))
	man3/
		_Fork.3
		countof.3
		memeq.3
		streq.3
Newly documented interfaces in existing pages
	man2/
		mount_setattr.2
			glibc wrapper
		pidfd_open.2
			PIDFD_THREAD
		pidfd_send_signal.2
			PIDFD_SIGNAL_THREAD
			PIDFD_SIGNAL_THREAD_GROUP
			PIDFD_SIGNAL_PROCESS_GROUP
		quotactl.2
			quotactl_fd(2)
		readv.2
			RWF_DONTCACHE
		sigaction.2
			SI_ASYNCNL
			FPE_FLTUNK
			FPE_CONDTRAP
			SEGV_ACCADI
			SEGV_ADIDERR
			SEGV_ADIPERR
			SEGV_MTEAERR
			SEGV_MTESERR
			SEGV_CPERR
			TRAP_UNK
			TRAP_PERF
			SYS_USER_DISPATCH
			EMT_TAGOVF
	man3/
		abs.3
			umaxabs(3)
		opendir.3
			ENAMETOOLONG
	man7/
		operator.7
			(type){}
			alignof
			_Countof
		rtnetlink.7
			RTAX_UNSPEC
			RTAX_LOCK
			RTAX_MTU
			RTAX_WINDOW
			RTAX_RTT
			RTAX_RTTVAR
			RTAX_SSTHRESH
			RTAX_CWND
			RTAX_ADVMSS
			RTAX_REORDERING
			RTAX_HOPLIMIT
			RTAX_INITCWND
			RTAX_FEATURES
			RTAX_RTO_MIN
			RTAX_INITRWND
			RTAX_QUICKACK
			RTAX_CC_ALGO
			RTAX_FASTOPEN_NO_COOKIE
		sched.7
			CONFIG_PREEMPT
			CONFIG_PREEMPT_LAZY
		tcp.7
			TCP_SAVE_SYN
			TCP_SAVED_SYN
New and changed links
	man2/
		open_tree_attr.2			(open_tree(2))
		quotactl_fd.2				(quotactl(2))
	man3/
		umaxabs.3				(abs(3))
Global changes
	-  man/
	   -  Update documentation for POSIX.1-2024 (still more work to do).
	   -  SYNOPSIS: Use GNU forward-declarations of parameters for sizes of
	      array parameters.
	   -  Improve style of source code for tbl(1) tables.
	   -  man2/: Use the common name 'fd' instead of 'fildes'.
	   -  Use semantic newlines.
	   -  EXAMPLES
	      -  Use err(3) and errc(3bsd) instead of similar macros.
	      -  Fix includes (thanks to iwyu(1)).
	      -  Use NITEMS() consistently.
	      -  Don't name unused parameters.
	-  share/mk/
	   -  Add support for the chapter man3attr.
	   -  help: Document the usual targets.
	   -  lint-man-blank: Add target to lint about blank lines.
	   -  lint-man-ws: Diagnose spurious use of white space.
	   -  lint-man-quote: Diagnose an unmatched quote.
	   -  lint-man-poems: Diagnose (lack of) semantic newlines.
	   -  lint-man-dash: Diagnose unescaped dashes
	   -  Merge handling of man(7) and mdoc(7) pages.
	   -  lint, build, check: Move exceptions to separate files.
	   -  Remove unused variables.
	   -  Unify local variable names.
	   -  Silence diagnostics about unnamed parameters.
	   -  configure/build-depends/:
	      -  Add awk/awk.
	      -  Add pcre2-utils/pcre2grep.
Changes to individual files
	-  src/bin/
	   -  sortman(1): Fix order of intro(*) pages for subsections.
	   -  diffman-git(1): Show sections as hunk context.
    6.15
New and rewritten pages
	man2/
		cachestat.2
		fcntl.2					(split into many pages)
		fcntl_locking.2				(previously, fcntl(2))
		futex.2					(split into many pages)
	man2const/
		FUTEX_CMP_REQUEUE.2const		(previously, futex(2))
		FUTEX_CMP_REQUEUE_PI.2const		(previously, futex(2))
		FUTEX_FD.2const				(previously, futex(2))
		FUTEX_LOCK_PI.2const			(previously, futex(2))
		FUTEX_LOCK_PI2.2const			(previously, futex(2))
		FUTEX_REQUEUE.2const			(previously, futex(2))
		FUTEX_TRYLOCK_PI.2const			(previously, futex(2))
		FUTEX_UNLOCK_PI.2const			(previously, futex(2))
		FUTEX_WAIT.2const			(previously, futex(2))
		FUTEX_WAIT_BITSET.2const		(previously, futex(2))
		FUTEX_WAIT_REQUEUE_PI.2const		(previously, futex(2))
		FUTEX_WAKE.2const			(previously, futex(2))
		FUTEX_WAKE_OP.2const			(previously, futex(2))
		F_DUPFD.2const				(previously, fcntl(2))
		F_GETFD.2const				(previously, fcntl(2))
		F_GETFL.2const				(previously, fcntl(2))
		F_GETLEASE.2const			(previously, fcntl(2))
		F_GETPIPE_SZ.2const			(previously, fcntl(2))
		F_GETSIG.2const				(previously, fcntl(2))
		F_GET_RW_HINT.2const			(previously, fcntl(2))
		F_GET_SEALS.2const			(previously, fcntl(2))
		F_NOTIFY.2const				(previously, fcntl(2))
		PR_FUTEX_HASH.2const			(previously, fcntl(2))
	man3attr/
		intro.3attr
		gnu::aligned.3attr
		gnu::format.3attr
Newly documented interfaces in existing pages
	man2/
		chmod.2
			fchmodat(AT_EMPTY_PATH)
			fchmodat(AT_SYMLINK_NOFOLLOW)
		ioctl_vt.2
			VT_GETCONSIZECSRPOS
		prctl.2
			PR_FUTEX_HASH
		*printf.3
			ERRORS
		statx.2
			statx.stx_atomic_write_unit_max_opt
	man2const/
		PR_FUTEX_HASH.2const
			PR_FUTEX_HASH
		TIOCLINUX.2const
			TIOCL_GETBRACKETEDPASTE
		UFFDIO_API.2const
			UFFDIO_FEATURE_MOVE
	man5/
		core.5
			/proc/sys/kernel/core_pattern	%F
New and changed links
	man2const/
		FUTEX_WAKE_BITSET.2const		(FUTEX_WAIT_BITSET(2const))
		F_ADD_SEALS.2const			(F_GET_SEALS(2const))
		F_DUPFD_CLOEXEC.2const			(F_DUPFD(2const))
		F_GETLK.2const				(fcntl_locking(2))
		F_GETOWN.2const				(F_GETSIG(2const))
		F_GETOWN_EX.2const			(F_GETSIG(2const))
		F_GET_FILE_RW_HINT.2const		(F_GET_RW_HINT(2const))
		F_OFD_GETLK.2const			(fcntl_locking(2))
		F_OFD_SETLK.2const			(fcntl_locking(2))
		F_OFD_SETLKW.2const			(fcntl_locking(2))
		F_SETFD.2const				(F_GETFD(2const))
		F_SETFL.2const				(F_GETFL(2const))
		F_SETLEASE.2const			(F_GETLEASE(2const))
		F_SETLK.2const				(fcntl_locking(2))
		F_SETLKW.2const				(fcntl_locking(2))
		F_SETOWN.2const				(F_GETSIG(2const))
		F_SETOWN_EX.2const			(F_GETSIG(2const))
		F_SETPIPE_SZ.2const			(F_GETPIPE_SZ(2const))
		F_SETSIG.2const				(F_GETSIG(2const))
		F_SET_FILE_RW_HINT.2const		(F_GET_RW_HINT(2const))
		F_SET_RW_HINT.2const			(F_GET_RW_HINT(2const))
		VT_GETCONSIZECSRPOS.2const		(ioctl_vt(2))
Global changes
	-  CREDITS renamed to AUTHORS.
	-  man/
	   -  realloc(3): Clarify (non)conformance of realloc(p,0) in glibc.
	   -  Don't use bold/italics for forward declarations of function
	      parameters.  This differentiates them from actual parameters.
	   -  fcntl(2) and futex(2) have been split into smaller spages that are
	      easier to read, and also easier to maintain.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/man-pages | 138 ++++++++++++++++++++++++++++++
 lfs/man-pages                     |   6 +-
 2 files changed, 141 insertions(+), 3 deletions(-)

diff --git a/config/rootfiles/common/man-pages b/config/rootfiles/common/man-pages
index 06c818bd6..c37472d24 100644
--- a/config/rootfiles/common/man-pages
+++ b/config/rootfiles/common/man-pages
@@ -1,15 +1,22 @@
 #usr/local/bin/diffman-git
+#usr/local/bin/grepc
+#usr/local/bin/grepc_c
+#usr/local/bin/grepc_mk
 #usr/local/bin/mansect
+#usr/local/bin/mansectf
 #usr/local/bin/pdfman
 #usr/local/bin/sortman
 #usr/local/share/man/man1/diffman-git.1
 #usr/local/share/man/man1/getent.1
+#usr/local/share/man/man1/grepc.1
+#usr/local/share/man/man1/grepc_c.1
 #usr/local/share/man/man1/iconv.1
 #usr/local/share/man/man1/intro.1
 #usr/local/share/man/man1/ldd.1
 #usr/local/share/man/man1/locale.1
 #usr/local/share/man/man1/localedef.1
 #usr/local/share/man/man1/mansect.1
+#usr/local/share/man/man1/mansectf.1
 #usr/local/share/man/man1/memusage.1
 #usr/local/share/man/man1/memusagestat.1
 #usr/local/share/man/man1/mtrace.1
@@ -44,6 +51,7 @@
 #usr/local/share/man/man2/break.2
 #usr/local/share/man/man2/brk.2
 #usr/local/share/man/man2/cacheflush.2
+#usr/local/share/man/man2/cachestat.2
 #usr/local/share/man/man2/capget.2
 #usr/local/share/man/man2/capset.2
 #usr/local/share/man/man2/chdir.2
@@ -97,6 +105,7 @@
 #usr/local/share/man/man2/fchownat.2
 #usr/local/share/man/man2/fcntl.2
 #usr/local/share/man/man2/fcntl64.2
+#usr/local/share/man/man2/fcntl_locking.2
 #usr/local/share/man/man2/fdatasync.2
 #usr/local/share/man/man2/fdetach.2
 #usr/local/share/man/man2/fgetxattr.2
@@ -106,7 +115,11 @@
 #usr/local/share/man/man2/fork.2
 #usr/local/share/man/man2/free_hugepages.2
 #usr/local/share/man/man2/fremovexattr.2
+#usr/local/share/man/man2/fsconfig.2
 #usr/local/share/man/man2/fsetxattr.2
+#usr/local/share/man/man2/fsmount.2
+#usr/local/share/man/man2/fsopen.2
+#usr/local/share/man/man2/fspick.2
 #usr/local/share/man/man2/fstat.2
 #usr/local/share/man/man2/fstat64.2
 #usr/local/share/man/man2/fstatat.2
@@ -247,6 +260,7 @@
 #usr/local/share/man/man2/modify_ldt.2
 #usr/local/share/man/man2/mount.2
 #usr/local/share/man/man2/mount_setattr.2
+#usr/local/share/man/man2/move_mount.2
 #usr/local/share/man/man2/move_pages.2
 #usr/local/share/man/man2/mprotect.2
 #usr/local/share/man/man2/mpx.2
@@ -278,6 +292,8 @@
 #usr/local/share/man/man2/olduname.2
 #usr/local/share/man/man2/open.2
 #usr/local/share/man/man2/open_by_handle_at.2
+#usr/local/share/man/man2/open_tree.2
+#usr/local/share/man/man2/open_tree_attr.2
 #usr/local/share/man/man2/openat.2
 #usr/local/share/man/man2/openat2.2
 #usr/local/share/man/man2/outb.2
@@ -331,6 +347,7 @@
 #usr/local/share/man/man2/pwritev2.2
 #usr/local/share/man/man2/query_module.2
 #usr/local/share/man/man2/quotactl.2
+#usr/local/share/man/man2/quotactl_fd.2
 #usr/local/share/man/man2/read.2
 #usr/local/share/man/man2/readahead.2
 #usr/local/share/man/man2/readdir.2
@@ -537,12 +554,109 @@
 #usr/local/share/man/man2const/FS_IOC_GETFSMAP.2const
 #usr/local/share/man/man2const/FS_IOC_SETFLAGS.2const
 #usr/local/share/man/man2const/FS_IOC_SETFSLABEL.2const
+#usr/local/share/man/man2const/FUTEX_CMP_REQUEUE.2const
+#usr/local/share/man/man2const/FUTEX_CMP_REQUEUE_PI.2const
+#usr/local/share/man/man2const/FUTEX_FD.2const
+#usr/local/share/man/man2const/FUTEX_LOCK_PI.2const
+#usr/local/share/man/man2const/FUTEX_LOCK_PI2.2const
+#usr/local/share/man/man2const/FUTEX_REQUEUE.2const
+#usr/local/share/man/man2const/FUTEX_TRYLOCK_PI.2const
+#usr/local/share/man/man2const/FUTEX_UNLOCK_PI.2const
+#usr/local/share/man/man2const/FUTEX_WAIT.2const
+#usr/local/share/man/man2const/FUTEX_WAIT_BITSET.2const
+#usr/local/share/man/man2const/FUTEX_WAIT_REQUEUE_PI.2const
+#usr/local/share/man/man2const/FUTEX_WAKE.2const
+#usr/local/share/man/man2const/FUTEX_WAKE_BITSET.2const
+#usr/local/share/man/man2const/FUTEX_WAKE_OP.2const
+#usr/local/share/man/man2const/F_ADD_SEALS.2const
+#usr/local/share/man/man2const/F_DUPFD.2const
+#usr/local/share/man/man2const/F_DUPFD_CLOEXEC.2const
+#usr/local/share/man/man2const/F_GETDELEG.2const
+#usr/local/share/man/man2const/F_GETFD.2const
+#usr/local/share/man/man2const/F_GETFL.2const
+#usr/local/share/man/man2const/F_GETLEASE.2const
+#usr/local/share/man/man2const/F_GETLK.2const
+#usr/local/share/man/man2const/F_GETOWN.2const
+#usr/local/share/man/man2const/F_GETOWN_EX.2const
+#usr/local/share/man/man2const/F_GETPIPE_SZ.2const
+#usr/local/share/man/man2const/F_GETSIG.2const
+#usr/local/share/man/man2const/F_GET_FILE_RW_HINT.2const
+#usr/local/share/man/man2const/F_GET_RW_HINT.2const
+#usr/local/share/man/man2const/F_GET_SEALS.2const
+#usr/local/share/man/man2const/F_NOTIFY.2const
+#usr/local/share/man/man2const/F_OFD_GETLK.2const
+#usr/local/share/man/man2const/F_OFD_SETLK.2const
+#usr/local/share/man/man2const/F_OFD_SETLKW.2const
+#usr/local/share/man/man2const/F_SETDELEG.2const
+#usr/local/share/man/man2const/F_SETFD.2const
+#usr/local/share/man/man2const/F_SETFL.2const
+#usr/local/share/man/man2const/F_SETLEASE.2const
+#usr/local/share/man/man2const/F_SETLK.2const
+#usr/local/share/man/man2const/F_SETLKW.2const
+#usr/local/share/man/man2const/F_SETOWN.2const
+#usr/local/share/man/man2const/F_SETOWN_EX.2const
+#usr/local/share/man/man2const/F_SETPIPE_SZ.2const
+#usr/local/share/man/man2const/F_SETSIG.2const
+#usr/local/share/man/man2const/F_SET_FILE_RW_HINT.2const
+#usr/local/share/man/man2const/F_SET_RW_HINT.2const
 #usr/local/share/man/man2const/GIO_CMAP.2const
 #usr/local/share/man/man2const/GIO_FONT.2const
 #usr/local/share/man/man2const/GIO_FONTX.2const
 #usr/local/share/man/man2const/GIO_SCRNMAP.2const
 #usr/local/share/man/man2const/GIO_UNIMAP.2const
 #usr/local/share/man/man2const/GIO_UNISCRNMAP.2const
+#usr/local/share/man/man2const/IPPROTO_IP.2const
+#usr/local/share/man/man2const/IPPROTO_IPV6.2const
+#usr/local/share/man/man2const/IPV6_ADDRFORM.2const
+#usr/local/share/man/man2const/IPV6_ADD_MEMBERSHIP.2const
+#usr/local/share/man/man2const/IPV6_AUTHHDR.2const
+#usr/local/share/man/man2const/IPV6_DROP_MEMBERSHIP.2const
+#usr/local/share/man/man2const/IPV6_DSTOPTS.2const
+#usr/local/share/man/man2const/IPV6_FLOWINFO.2const
+#usr/local/share/man/man2const/IPV6_HOPLIMIT.2const
+#usr/local/share/man/man2const/IPV6_HOPOPTS.2const
+#usr/local/share/man/man2const/IPV6_MTU.2const
+#usr/local/share/man/man2const/IPV6_MTU_DISCOVER.2const
+#usr/local/share/man/man2const/IPV6_MULTICAST_HOPS.2const
+#usr/local/share/man/man2const/IPV6_MULTICAST_IF.2const
+#usr/local/share/man/man2const/IPV6_MULTICAST_LOOP.2const
+#usr/local/share/man/man2const/IPV6_RECVERR.2const
+#usr/local/share/man/man2const/IPV6_RECVPKTINFO.2const
+#usr/local/share/man/man2const/IPV6_ROUTER_ALERT.2const
+#usr/local/share/man/man2const/IPV6_RTHDR.2const
+#usr/local/share/man/man2const/IPV6_UNICAST_HOPS.2const
+#usr/local/share/man/man2const/IPV6_V6ONLY.2const
+#usr/local/share/man/man2const/IP_ADD_MEMBERSHIP.2const
+#usr/local/share/man/man2const/IP_ADD_SOURCE_MEMBERSHIP.2const
+#usr/local/share/man/man2const/IP_BIND_ADDRESS_NO_PORT.2const
+#usr/local/share/man/man2const/IP_BLOCK_SOURCE.2const
+#usr/local/share/man/man2const/IP_DROP_MEMBERSHIP.2const
+#usr/local/share/man/man2const/IP_DROP_SOURCE_MEMBERSHIP.2const
+#usr/local/share/man/man2const/IP_FREEBIND.2const
+#usr/local/share/man/man2const/IP_HDRINCL.2const
+#usr/local/share/man/man2const/IP_LOCAL_PORT_RANGE.2const
+#usr/local/share/man/man2const/IP_MSFILTER.2const
+#usr/local/share/man/man2const/IP_MTU.2const
+#usr/local/share/man/man2const/IP_MTU_DISCOVER.2const
+#usr/local/share/man/man2const/IP_MULTICAST_ALL.2const
+#usr/local/share/man/man2const/IP_MULTICAST_IF.2const
+#usr/local/share/man/man2const/IP_MULTICAST_LOOP.2const
+#usr/local/share/man/man2const/IP_MULTICAST_TTL.2const
+#usr/local/share/man/man2const/IP_NODEFRAG.2const
+#usr/local/share/man/man2const/IP_OPTIONS.2const
+#usr/local/share/man/man2const/IP_PASSSEC.2const
+#usr/local/share/man/man2const/IP_PKTINFO.2const
+#usr/local/share/man/man2const/IP_RECVERR.2const
+#usr/local/share/man/man2const/IP_RECVOPTS.2const
+#usr/local/share/man/man2const/IP_RECVORIGDSTADDR.2const
+#usr/local/share/man/man2const/IP_RECVTOS.2const
+#usr/local/share/man/man2const/IP_RECVTTL.2const
+#usr/local/share/man/man2const/IP_RETOPTS.2const
+#usr/local/share/man/man2const/IP_ROUTER_ALERT.2const
+#usr/local/share/man/man2const/IP_TOS.2const
+#usr/local/share/man/man2const/IP_TRANSPARENT.2const
+#usr/local/share/man/man2const/IP_TTL.2const
+#usr/local/share/man/man2const/IP_UNBLOCK_SOURCE.2const
 #usr/local/share/man/man2const/KDADDIO.2const
 #usr/local/share/man/man2const/KDDELIO.2const
 #usr/local/share/man/man2const/KDDISABIO.2const
@@ -613,6 +727,9 @@
 #usr/local/share/man/man2const/PR_CAP_AMBIENT_IS_SET.2const
 #usr/local/share/man/man2const/PR_CAP_AMBIENT_LOWER.2const
 #usr/local/share/man/man2const/PR_CAP_AMBIENT_RAISE.2const
+#usr/local/share/man/man2const/PR_FUTEX_HASH.2const
+#usr/local/share/man/man2const/PR_FUTEX_HASH_GET_SLOTS.2const
+#usr/local/share/man/man2const/PR_FUTEX_HASH_SET_SLOTS.2const
 #usr/local/share/man/man2const/PR_GET_AUXV.2const
 #usr/local/share/man/man2const/PR_GET_CHILD_SUBREAPER.2const
 #usr/local/share/man/man2const/PR_GET_DUMPABLE.2const
@@ -688,6 +805,7 @@
 #usr/local/share/man/man2const/PR_SVE_SET_VL.2const
 #usr/local/share/man/man2const/PR_TASK_PERF_EVENTS_DISABLE.2const
 #usr/local/share/man/man2const/PR_TASK_PERF_EVENTS_ENABLE.2const
+#usr/local/share/man/man2const/SO_PEERSEC.2const
 #usr/local/share/man/man2const/TCFLSH.2const
 #usr/local/share/man/man2const/TCGETA.2const
 #usr/local/share/man/man2const/TCGETS.2const
@@ -754,6 +872,7 @@
 #usr/local/share/man/man2const/VFAT_IOCTL_READDIR_SHORT.2const
 #usr/local/share/man/man2const/VT_ACTIVATE.2const
 #usr/local/share/man/man2const/VT_DISALLOCATE.2const
+#usr/local/share/man/man2const/VT_GETCONSIZECSRPOS.2const
 #usr/local/share/man/man2const/VT_GETMODE.2const
 #usr/local/share/man/man2const/VT_GETSTATE.2const
 #usr/local/share/man/man2const/VT_OPENQRY.2const
@@ -763,6 +882,11 @@
 #usr/local/share/man/man2const/VT_SETMODE.2const
 #usr/local/share/man/man2const/VT_WAITACTIVE.2const
 #usr/local/share/man/man2type
+#usr/local/share/man/man2type/in_pktinfo.2type
+#usr/local/share/man/man2type/ip_mreq.2type
+#usr/local/share/man/man2type/ip_mreq_source.2type
+#usr/local/share/man/man2type/ip_mreqn.2type
+#usr/local/share/man/man2type/mount_attr.2type
 #usr/local/share/man/man2type/open_how.2type
 #usr/local/share/man/man3/CIRCLEQ_EMPTY.3
 #usr/local/share/man/man3/CIRCLEQ_ENTRY.3
@@ -901,7 +1025,11 @@
 #usr/local/share/man/man3/TAILQ_SWAP.3
 #usr/local/share/man/man3/TIMESPEC_TO_TIMEVAL.3
 #usr/local/share/man/man3/TIMEVAL_TO_TIMESPEC.3
+#usr/local/share/man/man3/_Countof.3
+#usr/local/share/man/man3/_Fork.3
 #usr/local/share/man/man3/_Generic.3
+#usr/local/share/man/man3/_Maxof.3
+#usr/local/share/man/man3/_Minof.3
 #usr/local/share/man/man3/_Static_assert.3
 #usr/local/share/man/man3/__after_morecore_hook.3
 #usr/local/share/man/man3/__fbufsize.3
@@ -1128,6 +1256,7 @@
 #usr/local/share/man/man3/coshf.3
 #usr/local/share/man/man3/coshl.3
 #usr/local/share/man/man3/cosl.3
+#usr/local/share/man/man3/countof.3
 #usr/local/share/man/man3/cpow.3
 #usr/local/share/man/man3/cpowf.3
 #usr/local/share/man/man3/cpowl.3
@@ -1758,6 +1887,7 @@
 #usr/local/share/man/man3/memchr.3
 #usr/local/share/man/man3/memcmp.3
 #usr/local/share/man/man3/memcpy.3
+#usr/local/share/man/man3/memeq.3
 #usr/local/share/man/man3/memfrob.3
 #usr/local/share/man/man3/memmem.3
 #usr/local/share/man/man3/memmove.3
@@ -2196,6 +2326,7 @@
 #usr/local/share/man/man3/strcspn.3
 #usr/local/share/man/man3/strdup.3
 #usr/local/share/man/man3/strdupa.3
+#usr/local/share/man/man3/streq.3
 #usr/local/share/man/man3/strerror.3
 #usr/local/share/man/man3/strerror_l.3
 #usr/local/share/man/man3/strerror_r.3
@@ -2338,6 +2469,7 @@
 #usr/local/share/man/man3/ulckpwdf.3
 #usr/local/share/man/man3/ulimit.3
 #usr/local/share/man/man3/ullabs.3
+#usr/local/share/man/man3/umaxabs.3
 #usr/local/share/man/man3/undocumented.3
 #usr/local/share/man/man3/ungetc.3
 #usr/local/share/man/man3/ungetwc.3
@@ -2475,6 +2607,11 @@
 #usr/local/share/man/man3/yn.3
 #usr/local/share/man/man3/ynf.3
 #usr/local/share/man/man3/ynl.3
+#usr/local/share/man/man3attr
+#usr/local/share/man/man3attr/gnu::aligned.3attr
+#usr/local/share/man/man3attr/gnu::format.3attr
+#usr/local/share/man/man3attr/gnu::warning.3attr
+#usr/local/share/man/man3attr/intro.3attr
 #usr/local/share/man/man3const
 #usr/local/share/man/man3const/EOF.3const
 #usr/local/share/man/man3const/EXIT_FAILURE.3const
@@ -2749,6 +2886,7 @@
 #usr/local/share/man/man5/proc_sys_fs.5
 #usr/local/share/man/man5/proc_sys_kernel.5
 #usr/local/share/man/man5/proc_sys_net.5
+#usr/local/share/man/man5/proc_sys_net_ipv4.5
 #usr/local/share/man/man5/proc_sys_proc.5
 #usr/local/share/man/man5/proc_sys_sunrpc.5
 #usr/local/share/man/man5/proc_sys_user.5
diff --git a/lfs/man-pages b/lfs/man-pages
index 6fbcea9f9..fb34a9084 100644
--- a/lfs/man-pages
+++ b/lfs/man-pages
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 6.14
+VER        = 6.17
 
 THISAPP    = man-pages-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 4e6e325b579072f5f4daca5dd7f31fb9eceb0ab04982bf1f541e01e723499b8cf997cd3d818bf3a2d4e8da5a49b3289649f2ea67ad428e00b60df004f7ee944c
+$(DL_FILE)_BLAKE2 = c167bb2023c5401624c18ae5445b2fb93a11aa298baa0e69bf6a817d8e715d7277429e759f60fcd72536e1a0d904982c0b81e26dc60130d691820227f822d5b2
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] mdadm: Update to version 4.6
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (20 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] man-pages: Update to version 6.17 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] ncat: Update to version 7.99 Adolf Belka
                   ` (11 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 4.5 to 4.6
- No change to rootfile
- Changelog
    4.6
Features:
- Add support for new lockless bitmap from Yu Kuai
- Add "PROBING ddf_extended" option in mdadm.conf from Martin Wilck
- Add --detail to usage in ReadMe from Brian Matheson
Fixes:
- Fix uuid endianness mismatch issue in sysfs_rules_apply() from Abirami0904
- Fix mdcheck: don't stop mdcheck_continue.timer from Martin Wilck
- Deal with hot-unplugged devices in platform-intel from Jean Delvare
- Detect corosync and libdlm via pkg-config in Makefile from Maxin John
- Fix UEFI backward compatibility for RAID10D4 in imsm from Blazej Kucman
- Optimize DDF header search using mmap for better performance from lilinzhe
- Set sysfs name after assembling imsm array in incremental from Xiao Ni
- Use creation_time for ctime in imsm container info from Xiao Ni
- Fix sigterm variable to be volatile sig_atomic_t from Cristian Rodríguez
- Use 64-bit off_t across both musl and glibc from Ankur Tyagi
- Fix format overflow error in super-intel.c from Martin Wilck
- Fix compilation errors for unused variables with GCC 16 from Martin Wilck
- Load md_mod first to avoid module loading issues from Xiao Ni

There are some important issues which led to boot failure. These issues
have been fixed recently. It's better to make a new release. So users
can choose a version without these problems.
https://github.com/md-raid-utilities/mdadm/issues/249 has the details.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/mdadm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/mdadm b/lfs/mdadm
index 930dac584..ed261aabb 100644
--- a/lfs/mdadm
+++ b/lfs/mdadm
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 4.5
+VER        = 4.6
 #          https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/
 
 THISAPP    = mdadm-$(VER)
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 6cfa80514b4d51c2e8c5e3275ec3dce1a59c509fd83dbc41d395e47ed59c19df30b0382cf6dc5f3c6faf973296e341bc5e461303b3a0f6ce58da887ef0e8a418
+$(DL_FILE)_BLAKE2 = 5a2c523670cc659397b0d36f1026f944e630d422e16d3830bb5d94a03ac84118d99553f7f7d555e3f8cd445908cb2519725bc56d9516de24dd837ecdea0be3bc
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] ncat: Update to version 7.99
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (21 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] mdadm: Update to version 4.6 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] nfs: Update to version 2.9.1 Adolf Belka
                   ` (10 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 7.98 to 7.99
- No change to rootfile
- Changelog
    7.99
o Integrated many of the most-frequently-submitted IPv4 and IPv6 OS
  fingerprints, as well as dozens of updated service fingerprints.
o Upgraded included libraries: OpenSSL 3.0.19, libpcap 1.10.6, libpcre2 10.47,
  liblinear 2.50, zlib 1.3.2
o [Windows] Upgraded the included version of Npcap from 1.83 to 1.87, resolving
  several crashes and stability-related issues. See https://npcap.com/changelog
o [Zenmap][GH#3182] Zenmap is now distributed as a universal wheel
  (zenmap-7.99-py3-none-any.whl) instead of an RPM package so that it can be
  installed on any system with Python 3. [Daniel Miller]
o [Ncat][Windows] Limited the number of handles inherited by subprocesses
  launched with -e, preventing interference between clients when -e and
  --keep-open are used. Reported by Nimish Verma.
o [Ncat] Several fixes for regressions or longstanding failure cases in
  ncat-test.pl [Daniel Miller]:
  + [Windows] Fixed handling of socket EOF with --exec
  + Fixed the -i (idle timeout) option for listen mode, which was broken
    when adding the -q option in Ncat 7.96
  + Fixed HTTP proxy server when SSL is used.
  + DTLS (SSL over UDP) shutdown connection on stdin EOF.
o [Windows][GH#2711] Nmap now supports scanning over various VPN virtual
  adapters like OpenVPN TAP adapters. [Daniel Miller]
o [GH#3280] Fix a performance regression in reverse-DNS in Nmap 7.98. The fix
  for #3130 had caused Nmap to send requests too slowly. [Daniel Miller]
o [macOS][GH#3289] Fixed a configure-time failure in libdnet that resulted in
  incorrect MAC addresses being reported. [Daniel Miller]
o [Zenmap][GH#3189] Fix a crash in Zenmap topology and hosts viewer:
  "TypeError: format requires a mapping" [Daniel Miller]
o [GH#2955] Fix a routing issue with -e and -S related to #2206
  causing error "setup_target: failed to determine route" [Daniel Miller]
o [GH#3214] Improve compatibility of build process on various platforms and add
  multiplatform autobuilds in Github workflow. [Jordan Ritter]
o [NSE][GH#2183][GH#3239] Script hostmap-crtsh now reports only true subdomains
  of a given target hostname by default. In the past, it was reporting any
  DNS name that included the target hostname as a substring (but not
  necessarily as a suffix). The old behavior can be enabled by setting script
  argument hostmap-crtsh.lax. [Sweekar-cmd, nnposter]
o [NSE] Function url.parse_query was not interpreting plus signs as spaces.
  [nnposter]
o [NSE] Function url.parse was not properly parsing URLs with query strings
  but empty paths. [nnposter]
o [NSE][GH#3287] Functions tableaux.tcopy and tableaux.shallow_tcopy were
  not behaving the same when the input table had a custom __pairs metamethod.
  Both functions now perform a raw copy, ignoring the metamethod. [nnposter]
o [NSE] Function tableaux.shallow_tcopy did not work correctly for tables
  with Boolean keys. [nnposter]
o [NSE] IPP print queue job details were not getting populated, having
  a hard dependency on Apple-specific attributes. [nnposter]
o [NSE][GH#3245] Functions connect and close have been removed from the IPP
  library, as they served no purpose. [nnposter]
o [NSE] ipOps.expand_ip was crashing upon malformed IPv6 addresses. [nnposter]
o [NSE][GH#3262] FTP banner parsing is now more closely aligned with RFC 959,
  section 4.2. [nnposter]
o [NSE][GH#3253] Function stdnse.make_buffer now accepts an extra parameter
  that allows preloading the newly created buffer with data. [nnposter]
o [NSE][GH#3191][GH#3218] Script http-internal-ip-disclosure has been enhanced,
  including added support for IPv6 and HTTPS and more accurate processing
  of target responses. [nnposter]
o [NSE][GH#3194] RPC-based scripts were sporadically failing due to privileged
  port conflicts. [nnposter]
o [NSE][GH#3196] Script rlogin-brute was sporadically failing due to using
  an off-by-one range for privileged ports and not handling potential
  port conflicts. [nnposter]

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/ncat | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/ncat b/lfs/ncat
index 01f2b114e..629f8c137 100644
--- a/lfs/ncat
+++ b/lfs/ncat
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = Network tool to concatenate and redirect sockets
 
-VER        = 7.98
+VER        = 7.99
 
 THISAPP    = ncat-$(VER)
 DL_FILE    = nmap-$(VER).tar.bz2
@@ -42,7 +42,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = bbc7f4931876b2a59dc8d94b5498e72ee76084db19089820030473628f215a0a89972638f4128e46a46ffa55bd92141bfceab311fa00f4798cf111aca5ec104a
+$(DL_FILE)_BLAKE2 = 76cc39c7ba28615a143eec7f6fdf009746ad1c3ca8f07a8d3fb8a707ee116bc1acbfd2e33515817dd3e64cf0b4d8c6d6674e796c06bf20a8ee73e9b38b89341a
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] nfs: Update to version 2.9.1
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (22 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] ncat: Update to version 7.99 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:10 ` [PATCH] nmap: Update to version 7.99 Adolf Belka
                   ` (9 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 2.8.5 to 2.9.1
- No change to rootfile
- Changelog is just a list of the commits. The details can be found in the changelog at
    2.9.1
	https://sourceforge.net/projects/nfs/files/nfs-utils/2.9.1/
    2.8.7
	https://sourceforge.net/projects/nfs/files/nfs-utils/2.8.7/
    2.8.6
	https://sourceforge.net/projects/nfs/files/nfs-utils/2.8.6/

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/nfs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/nfs b/lfs/nfs
index c404be338..d0da3266b 100644
--- a/lfs/nfs
+++ b/lfs/nfs
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = Support Utilities for Kernel nfsd
 
-VER        = 2.8.5
+VER        = 2.9.1
 
 THISAPP    = nfs-utils-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = nfs
-PAK_VER    = 29
+PAK_VER    = 30
 
 DEPS       = rpcbind
 
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 56a2e193de3810ef8fafec65356851ad5900ee03d3f5aefa7fc336712bfdaf7ee6b235f973fec815c7396996cd8806320e09825798202e9957c9817607641dd0
+$(DL_FILE)_BLAKE2 = 029cc11c1d72c880aa22c90d841c7c9427e2acb2a39d46df07aac5714db62fad0dd78b82779fa325399cb03f4df918f0570bf17006b05efa3a9318f61000daab
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] nmap: Update to version 7.99
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (23 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] nfs: Update to version 2.9.1 Adolf Belka
@ 2026-04-07 15:10 ` Adolf Belka
  2026-04-07 15:11 ` [PATCH] pango: Update to version 1.57.1 Adolf Belka
                   ` (8 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:10 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 7.98 to 7.99
- No change to rootfile
- Changelog
    7.99
o Integrated many of the most-frequently-submitted IPv4 and IPv6 OS
  fingerprints, as well as dozens of updated service fingerprints.
o Upgraded included libraries: OpenSSL 3.0.19, libpcap 1.10.6, libpcre2 10.47,
  liblinear 2.50, zlib 1.3.2
o [Windows] Upgraded the included version of Npcap from 1.83 to 1.87, resolving
  several crashes and stability-related issues. See https://npcap.com/changelog
o [Zenmap][GH#3182] Zenmap is now distributed as a universal wheel
  (zenmap-7.99-py3-none-any.whl) instead of an RPM package so that it can be
  installed on any system with Python 3. [Daniel Miller]
o [Ncat][Windows] Limited the number of handles inherited by subprocesses
  launched with -e, preventing interference between clients when -e and
  --keep-open are used. Reported by Nimish Verma.
o [Ncat] Several fixes for regressions or longstanding failure cases in
  ncat-test.pl [Daniel Miller]:
  + [Windows] Fixed handling of socket EOF with --exec
  + Fixed the -i (idle timeout) option for listen mode, which was broken
    when adding the -q option in Ncat 7.96
  + Fixed HTTP proxy server when SSL is used.
  + DTLS (SSL over UDP) shutdown connection on stdin EOF.
o [Windows][GH#2711] Nmap now supports scanning over various VPN virtual
  adapters like OpenVPN TAP adapters. [Daniel Miller]
o [GH#3280] Fix a performance regression in reverse-DNS in Nmap 7.98. The fix
  for #3130 had caused Nmap to send requests too slowly. [Daniel Miller]
o [macOS][GH#3289] Fixed a configure-time failure in libdnet that resulted in
  incorrect MAC addresses being reported. [Daniel Miller]
o [Zenmap][GH#3189] Fix a crash in Zenmap topology and hosts viewer:
  "TypeError: format requires a mapping" [Daniel Miller]
o [GH#2955] Fix a routing issue with -e and -S related to #2206
  causing error "setup_target: failed to determine route" [Daniel Miller]
o [GH#3214] Improve compatibility of build process on various platforms and add
  multiplatform autobuilds in Github workflow. [Jordan Ritter]
o [NSE][GH#2183][GH#3239] Script hostmap-crtsh now reports only true subdomains
  of a given target hostname by default. In the past, it was reporting any
  DNS name that included the target hostname as a substring (but not
  necessarily as a suffix). The old behavior can be enabled by setting script
  argument hostmap-crtsh.lax. [Sweekar-cmd, nnposter]
o [NSE] Function url.parse_query was not interpreting plus signs as spaces.
  [nnposter]
o [NSE] Function url.parse was not properly parsing URLs with query strings
  but empty paths. [nnposter]
o [NSE][GH#3287] Functions tableaux.tcopy and tableaux.shallow_tcopy were
  not behaving the same when the input table had a custom __pairs metamethod.
  Both functions now perform a raw copy, ignoring the metamethod. [nnposter]
o [NSE] Function tableaux.shallow_tcopy did not work correctly for tables
  with Boolean keys. [nnposter]
o [NSE] IPP print queue job details were not getting populated, having
  a hard dependency on Apple-specific attributes. [nnposter]
o [NSE][GH#3245] Functions connect and close have been removed from the IPP
  library, as they served no purpose. [nnposter]
o [NSE] ipOps.expand_ip was crashing upon malformed IPv6 addresses. [nnposter]
o [NSE][GH#3262] FTP banner parsing is now more closely aligned with RFC 959,
  section 4.2. [nnposter]
o [NSE][GH#3253] Function stdnse.make_buffer now accepts an extra parameter
  that allows preloading the newly created buffer with data. [nnposter]
o [NSE][GH#3191][GH#3218] Script http-internal-ip-disclosure has been enhanced,
  including added support for IPv6 and HTTPS and more accurate processing
  of target responses. [nnposter]
o [NSE][GH#3194] RPC-based scripts were sporadically failing due to privileged
  port conflicts. [nnposter]
o [NSE][GH#3196] Script rlogin-brute was sporadically failing due to using
  an off-by-one range for privileged ports and not handling potential
  port conflicts. [nnposter]

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/nmap | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lfs/nmap b/lfs/nmap
index 8418dcf4d..91d2863b8 100644
--- a/lfs/nmap
+++ b/lfs/nmap
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = Network exploration tool and security scanner
 
-VER        = 7.98
+VER        = 7.99
 # Also update ncat when nmap is updated
 
 THISAPP    = nmap-$(VER)
@@ -35,7 +35,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = nmap
-PAK_VER    = 20
+PAK_VER    = 21
 
 DEPS       =
 
@@ -49,7 +49,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = bbc7f4931876b2a59dc8d94b5498e72ee76084db19089820030473628f215a0a89972638f4128e46a46ffa55bd92141bfceab311fa00f4798cf111aca5ec104a
+$(DL_FILE)_BLAKE2 = 76cc39c7ba28615a143eec7f6fdf009746ad1c3ca8f07a8d3fb8a707ee116bc1acbfd2e33515817dd3e64cf0b4d8c6d6674e796c06bf20a8ee73e9b38b89341a
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] pango: Update to version 1.57.1
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (24 preceding siblings ...)
  2026-04-07 15:10 ` [PATCH] nmap: Update to version 7.99 Adolf Belka
@ 2026-04-07 15:11 ` Adolf Belka
  2026-04-07 15:11 ` [PATCH] postfix: Update to version 3.11.1 Adolf Belka
                   ` (7 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:11 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 1.57.0 to 1.57.1
- Update of rootfile
- Changelog
    1.57.1
* Bugs fixed:
  - #867 Bad font substitution causes application crashes
  - #869 MacOS: subprojects/cairo/meson.build:1:0: ERROR: Value "gnu11,c11" (of
    type "string") (sid)
  - #870 MacOS: subprojects/pango/utils/viewer-cocoa.m:23:10: fatal error:
    'cairo/cairo.h' file not found (sid)
  - #871 gtk4-widget-factory crashes with pango error on macOS when an emoji is
    entered into a text field
  - #876 Inconsistency between documentation and code in
    pango_context_set_font_description (Matthias Clasen)
  - #882 The hex box characters generated in PDF can not be copied
  - #885 warning: assignment discards 'const' qualifier from pointer target type
    [-Wdiscarded-qualifiers]
  - !884 Revert "meson: Rework introspection handling"
  - !890 Update the code to support Unicode 17.0.0
  - !892 Include fcfreetype.h where needed
  - !893 meson: Update freetype2 wrap to fix ci warnings
  - !894 Respect explicit language attribute when itemizing
  - !895 Fix some subproject woes
  - !896 meson: Add support for cross-compiling using Apple subsystems
  - !897 (break.c) pass sentences to handle_sentences
  - !898 add support for g_autoptr(PangoScriptIter)
  - !900 fontmap: Mark get_family as nullable

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/pango | 6 +++---
 lfs/pango                     | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/config/rootfiles/common/pango b/config/rootfiles/common/pango
index c8f27f903..3496adbad 100644
--- a/config/rootfiles/common/pango
+++ b/config/rootfiles/common/pango
@@ -41,13 +41,13 @@ usr/bin/pango-view
 #usr/include/pango-1.0/pango/pangoft2.h
 #usr/lib/libpango-1.0.so
 usr/lib/libpango-1.0.so.0
-usr/lib/libpango-1.0.so.0.5700.0
+usr/lib/libpango-1.0.so.0.5701.0
 #usr/lib/libpangocairo-1.0.so
 usr/lib/libpangocairo-1.0.so.0
-usr/lib/libpangocairo-1.0.so.0.5700.0
+usr/lib/libpangocairo-1.0.so.0.5701.0
 #usr/lib/libpangoft2-1.0.so
 usr/lib/libpangoft2-1.0.so.0
-usr/lib/libpangoft2-1.0.so.0.5700.0
+usr/lib/libpangoft2-1.0.so.0.5701.0
 #usr/lib/pkgconfig/pango.pc
 #usr/lib/pkgconfig/pangocairo.pc
 #usr/lib/pkgconfig/pangofc.pc
diff --git a/lfs/pango b/lfs/pango
index ee0a01fe0..d78ea27ef 100644
--- a/lfs/pango
+++ b/lfs/pango
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.57.0
+VER        = 1.57.1
 #          https://download.gnome.org/sources/pango/
 
 THISAPP    = pango-$(VER)
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = b74cb272812132c83d3654a0f5b292639556c014adf6b917f3588f242f56804336cf9bf701e6b32469251315e454a50b88216412ba39204ee6c4440f83eaeeaa
+$(DL_FILE)_BLAKE2 = 9b07a13c35a4b26df12ff720f727e54b4393640cd85a87253d1446eaa97d23d6c2ee3d09a7bb2379666cbb1097065f9aa20ec32bfe046c60c85e8bbb63fc65a8
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] postfix: Update to version 3.11.1
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (25 preceding siblings ...)
  2026-04-07 15:11 ` [PATCH] pango: Update to version 1.57.1 Adolf Belka
@ 2026-04-07 15:11 ` Adolf Belka
  2026-04-07 15:11 ` [PATCH] sqlite: Update to version 3510300 Adolf Belka
                   ` (6 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:11 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 3.10.7 to 3.11.1
- Update of rootfile
- Changelog
    3.11.1
Major changes - database
	[Incompat 20260220] The alias_maps and alias_database parameter
	default values have changed from hash:/path/to/aliases (or
	dbm:/path/to/aliases) to $default_database_type:/path/to/aliases.
	This simplifies the migration away from Berkeley DB.
	[Infrastructure 20260219] Support to migrate a Postfix configuration
	that uses Berkeley DB hash: or btree: tables, to a configuration
	that uses lmdb: or a combination of cdb: and lmdb:. This is needed
	for (Linux) OS distributions that have removed Berkeley DB support.
	See NON_BERKELEYDB_README for manual and automatic migration support.
	Postfix already supports CDB and LMDB for more than 10 years.  It
	may be a good idea to do the migration before you need to upgrade
	to an OS distribution that no longer supports Berkeley DB.
	[Infrastructure 20251226] Tooling to help with the migration away
	from Berkeley DB.
	The new parameter default_cache_db_type controls the default database
	type for address_verify_map, postscreen_cache_map, and
	smtp_sasl_auth_cache_name, previously hard-coded as 'btree'.
	[Feature 20250321] Safety: the SQLite client now logs a warning
	when a query uses double quotes instead of the Postfix-recommended
	single quotes. Only the recommended form is protected against SQL
	injection.
	[Feature 20250509] Support to run all memcache lookup keys through
	an OpenSSL digest function. This prevents a database access error
	when lookup keys may exceed the memcache server's key length limit
	(usually, 250 bytes).
	[Feature 20250624] Support for a new "debug:" pseudo lookup table.
	Specify debug:maptype:mapname to encapsulate a maptype:mapname
	lookup table and log all access. This builds on existing but unused
	code to log table access. Contributed by Richard Hansen.
	[Infrastructure 20250626] Overhauled in-memory lookup table life-cycle
	management; overhauled sharing/isolation for proxied lookup tables.
Major changes - deprecation
	[Feature 20250609] smtp_tls_enforce_peername and lmtp_tls_enforce_peername
	are now officially deprecated. Postfix will log a warning until the
	features are deleted. See DEPRECATION_README for a summary of
	deprecated and deleted features.
	[Feature 20251027] This adds 12 more deprecation warnings for
	parameters that have been renamed in the past, and that still provide
	a backwards-compatible default value for their replacement. The
	parameters deprecated by this change are: authorized_verp_clients,
	fallback_relay, lmtp_per_record_deadline, postscreen_blacklist_action,
	postscreen_dnsbl_ttl, postscreen_dnsbl_whitelist_threshold,
	postscreen_whitelist_interfaces, smtpd_client_connection_limit_exceptions,
	smtp_per_record_deadline, tlsproxy_client_level, tlsproxy_client_policy,
	virtual_maps.
	[Feature 20251028] Deprecate the smtp_cname_overrides_servername
	and lmtp_cname_overrides_servername parameters, and delete documentation
	that has been obsolete since Postfix 2.11.
Major changes - logging
	[Feature 20250910] TLS feature policy status summary in delivery
	status logging. This shows the desired and actual TLS security level
	enforcement status and, if a message requests REQUIRETLS, the
	REQUIRETLS policy enforcement status. For a list of examples see
	https://www.postfix.org/postconf.5.html#smtp_log_tls_feature_status
	[Feature 20251216] After a delivery failure, the bounce daemon
	logged "<old-queue-id>: sender non-delivery notification: <new-queue-id>"
	only if the notification was queued successfully. The bounce daemon
	now always logs this, making Postfix behavior easier to understand.
	Visible changes for logfile analyzers:
	- The bounce daemon now logs "<old-queue-id>: sender non-delivery
	notification: <new-queue-id>" BEFORE the cleanup daemon logs activity
	with "<new-queue-id>". Previously, the bounce daemon logged the
	old<=>new queue ID connection later, which made logfile analysis
	more difficult.
	- The bounce daemon now logs a logfile record "<old-queue-id>:
	sender notification failed to <address>: <reason>" when the
	notification was not queued. In some cases it will log "<old-queue-id>:
	sender notification failed to <address>" (without the reason). In
	those cases the failure reason was already logged by lower-level
	code, but without the queue ID.
Major changes - management tool integration
	[Feature 20251124] Basic JSON output support with "postconf
	-j|-jM|-jF|-jP", "postalias -jq|-js", "postmap -jq|-js", and
	"postmulti -jl". No support is planned for JSON input support.
Major changes - milter support
	[Feature 20251208] Improved Milter error handling for messages that
	arrive over a long-lived SMTP connection, by changing the default
	milter_default_action from "tempfail" to the new "shutdown" action
	(i.e. disconnect the remote SMTP client).
	This avoids a worst-case scenario where after a single Milter error,
	Postfix would tempfail all messages that the client sends over a
	long-lived connection, even if the Milter error was only temporary.
Major changes - mime support
	[Feature 20251104] New non_empty_end_of_header_action parameter
	with the cleanup(8) server action when a primary message header is
	terminated with a non-empty line:
	1) fix_quietly: Insert an empty line before the offending text (the
	backwards-compatible default),
	2) add_header: Insert a MIME-Error: header before inserting an empty
	line, or
	3) reject: Log a "mime-error" and reject the message.
	Note that the 'empty line' separator is not used for DKIM signature
	checks. Therefore, adding a missing separator does not break DKIM.
Major changes - mta-sts
	[Feature 20250906] Workaround for an interface mis-match between
	the Postfix SMTP client and MTA-STS policy plugins. This introduces
	a new parameter "smtp_tls_enforce_sts_mx_patterns" (default: "yes").
	The MTA-STS plugin configuration needs to enable TLSRPT support,
	so that it forwards STS policy attributes to Postfix. This works
	even if Postfix TLSRPT support is disabled at build time or at
	runtime.
	With the above two configurations, the Postfix SMTP client will
	connect to an MX host only if its name matches any STS policy MX
	host pattern, and will match a server certificate against the MX
	hostname. Otherwise, the old behavior stays in effect: connect to
	any MX host listed in DNS, and match a server certificate against
	any STS policy MX host pattern.
	This code was published first in Postfix 3.11, and later back-ported
	to Postfix 3.10.5.
Major changes - portability
	[Feature 20241201] Support for the C23 built-in bool type. Older
	Postfix releases have been updated with a makedefs script that
	disables C23 built-in bool support.
Major changes - postqueue
	[Feature 20251218] the postqueue (and mailq) command now also lists
	recipients in bounce logfiles (in JSON output, this uses a new
	object member 'bounce_reason' instead of the existing 'delay_reason').
	Such recipients have already been deleted from the message queue
	file, but they are still pending the creation of a non-delivery
	status notification message that will be returned to the sender.
Major changes - relocated_maps
	[Feature 20250608] Specify "relocated_prefix_enable = no" to disable
	the hard-coded prefix "5.1.6 User has moved to " that is by default
	prepended to all relocated_maps lookup results. This setting requires
	that the table contains responses with both custom enhanced status
	code (X.Y.Z) and text. For details, see "man 5 relocated" or
	https://www.postfix.org/relocated.5.html .
Major changes - requiretls
	[Feature 20241111] Support for the REQUIRETLS verb in SMTP. This,
	and everything that was added later through 2025, is described in
	REQUIRETLS_README.
	[Feature 20250120] After a certificate check fails, or a remote
	SMTP server does not announce REQUIRETLS support, the Postfix SMTP
	client will override the RFC 8689 5.x.x.  status and treat it as a
	soft error, until there are no more alternate MX servers to try.
	[Feature 20250827] New parameter requiretls_redact_dsn (default:
	yes) to redact bounce messages as described in RFC 8689 section 5,
	so that they don't need REQUIRETLS support on every hop in the
	return path.
	[Feature 20250827] smtp_requiretls_policy and lmtp_requiretls_policy
	for responsible REQUIRETLS policy enforcement. REQUIRETLS must be
	enforced with care, because at this time most domains do not publish
	DANE or MTA-STS policies, and most MTAs and content filters do not
	support REQUIRETLS.
	[Feature 20250916] support for a "Require-TLS-ESMTP: yes" header
	to propagate an ESMTP REQUIRETLS request through a FILTER_README
	or SMTPD_PROXY_README style content filter. This header is detected
	or added by the cleanup daemon and by the before-proxy-filter Postfix
	SMTP server. This feature is enabled by default with
	"requiretls_esmtp_header = yes". The Require-TLS-ESMTP header will
	be visible to local and remote recipients. This feature can safely
	be disabled when a configuration does not use REQUIRETLS, or does
	not use FILTER_README or SMTPD_PROXY_README style content filters.
Major changes - smtp server
	[Feature 20250801] smtpd_reject_filter_maps support to selectively
	replace a reject response from the Postfix SMTP server, or from a
	program that replies through the Postfix SMTP server.
Major changes - smtputf8
	[Feature 20250122] New Postfix sendmail command option "-O smtputf8"
	to request that deliveries over SMTP use the SMTPUTF8 extension.
	This reuses logic that was introduced for REQUIRETLS.
	[Feature 20250824] When a message needs to be delivered with SMTPUTF8,
	but a remote server does not support it, the Postfix SMTP client
	may now try alternate servers instead of returning the message
	immediately. This reuses code that was implemented for REQUIRETLS.
Major changes - tls support
	[Feature 20250623] This changes the Postfix SMTP client
	smtp_tls_security_level default value to "may" if Postfix was built
	with TLS support, and the compatibility_level is 3.11 or higher.
	There is no change to the default lmtp_tls_security_level value.
	It remains empty, because there is no default TLS security level
	that makes sense for connections over UNIX-domain and loopback TCP
	and non-loopback TCP sockets.
	There also is no equivalent change for Postfix SMTP server TLS
	security levels, because changing smtpd_tls_security_level is not
	sufficient. Server-side TLS requires that at least one private key
	and corresponding public-key certificate chain are configured.
	[Feature 20251029] Debugging: depending on OpenSSL build options,
	"posttls-finger -L ssl-debug" will decode TLS handshake messages.
	[Feature 20251102] Post-quantum cryptography support: with OpenSSL
	3.5 and later, change the tls_eecdh_auto_curves default value to
	avoid problems with network infrastructure that mis-handles TLS
	hello messages larger than one (Ethernet) TCP segment. This problem
	is more generally known as "protocol ossification".
Major changes - tlsrpt
	[Incompat 20250601] the default smtp_tlsrpt_skip_reused_handshakes
	setting was changed from "yes" to "no". The new default is enabled
	with compatibility level >= 3.11.
    3.10.8
Major changes - tls
	[Forward compatibility 20250212] Support for OpenSSL 3.5 post-quantum
	cryptography. To manage algorithm selection, OpenSSL introduces new
	TLS group syntax that Postfix will not attempt to imitate. Instead,
	Postfix now allows the tls_eecdh_auto_curves and tls_ffdhe_auto_groups
	parameter values to have an empty value. When both are set empty,
	the algorithm selection can be managed through OpenSSL configuration.
	For more, look for "Post-quantum" in the postconf(5) manpage.
	[Feature 20250117] Support for the RFC 8689 "TLS-Required: no"
	message header to request delivery of messages such as TLSRPT
	summaries even if the preferred TLS security policy cannot be
	enforced. This limits the Postfix SMTP client to "smtp_tls_security_level
	= may" which does not authenticate server certificates and which
	allows falling back to plaintext.
	Support for the REQUIRETLS SMTP service extension remains future work.
	[Feature 20240926] Support for the TLSRPT protocol (defined in RFC
	8460). With this, a domain can publish a policy in DNS, and request
	daily summary reports for successful and failed SMTP-over-TLS
	connections to that domain's MX hosts.
	Postfix supports TLSRPT summaries for DANE (built-in) and MTA-STS
	(via an smtp_tls_policy_maps plugin). For details, see TLSRPT_README.
Major changes - privacy
	[Feature 20250205] With "smtpd_hide_client_session = yes", the
	Postfix SMTP server generates a Received: header without client
	session info This setting may be used with the MUA submission
	services (port 465 and 587), but it must not be used with the MTA
	service (port 25).
	Depending on the number of recipients, a redacted Received: header
	has one of the following forms:
	Received: by mail.example.com (Postfix) id postfix-queue-id
	        for <user@example.com>; Day, dd Mon yyyy hh:mm:ss tz-offset (zone)
	Received: by mail.example.com (Postfix) id postfix-queue-id
	        Day, dd Mon yyyy hh:mm:ss tz-offset (zone)
	The redacted form hides that a message was received with SMTP, and
	therefore it does not need to provide the information required by
	RFC 5321. It only has to satisfy RFC 5322.
Major changes - rfc2047
	[Feature 20250105] Support for automatic RFC 2047 encoding of
	non-ASCII "full name" information in Postfix-generated From: message
	headers.  Encoding non-ASCII full names can avoid the need to use
	SMTPUTF8, and therefore can avoid incompatibility with sites that
	do not support SMTPUTF8.
	The encoded result looks like "=?charset?Q?gibberish?=: for
	quoted-printable encoding, or "=?charset?B?gibberish?=" for base64
	encoding. Postfix uses quoted-printable for a full name that is
	short or mostly ASCII, and uses base64 otherwise.
	Background: when a message without a From: header is submitted with
	the Postfix sendmail(1) command, Postfix may add a From: header and
	use the sender's full name specified with the Postfix sendmail(1)
	"-F" option, with the sendmail(1) "NAME" environment variable, or
	with the GECOS field in the UNIX password database.
	This introduces a new configuration parameter "full_name_encoding_charset"
	(default: utf8) which specifies the character set of the full name
	information in the Postfix sendmail(1) "-F" option or "NAME"
	environment variable, or in the GECOS field in the UNIX password
	database. The parameter value becomes part of the encoded full name,
	and informs a Mail User Agent how to display the decoded gibberish.
Major changes - bugfix
	[Incompat 20241130] The spawn(8) daemon failed to enforce the command
	time limit. It was sending the SIGKILL signal using the wrong
	effective UID and GID. The pipe(8) daemon has always done this
	right.
Major changes - database
	[Feature 20250207] When mysql: or pgsql: configuration specifies
	a single host, assume that it is a load balancer and reconnect
	immediately after a single failure, instead of failing all requests
	for 60s.
	[Feature 20250114] first/next iterator support for cdb: tables, and
	other cdb: table code cleanups by Michael Tokarev.
	[Feature 20241024] In a pgsql: client configuration, the setting
	"dbname" is required, but ignored when the setting "hosts" contains
	an URI with a database name.
	[Feature 20241025] The Postfix pgsql: client configuration now
	allows any well-formed URI prefix as a pgsql: client connection
	target (the PostgreSQL URI parser decides what is allowed). The
	dbname setting is now optional if the hosts setting specifies only
	URIs.
Major changes - internal protocol
	[Incompat 20250116] Postfix needs "postfix reload" after upgrade,
	because of a change in the delivery agent protocol. If this step
	is skipped, Postfix delivery agents will log a warning:
	    unexpected attribute smtputf8 from xxx socket (expecting: sendopts)
	where xxx is the delivery agent service name.
Major changes - milter
	[Incompat 20250106] The logging of the Milter 'quarantine' action
	has changed.  Instead of logging "milter triggers HOLD action", it
	logs the reason given by a Milter application, or "default_action"
	if a Milter application was unavailable and the milter_default_action
	parameter or per-Milter "default_action" property specifies
	"quarantine".
	[Feature 20250106] The Postfix Milter implementation now logs the
	reason for a 'quarantine' action, instead of "milter triggers HOLD
	action".
	- If the quarantine action was requested by a Milter application,
	  Postfix will log the reason given by the application.
	- If the quarantine action was requested with the "milter_default_action"
	  parameter setting or with a per-Milter "default_action" property,
	  Postfix will log "default_action".
Major changes - logging
	[Feature 20250106] The Postfix Milter implementation now logs the
	reason for a 'quarantine' action, instead of "milter triggers HOLD
	action".
	- If the quarantine action was requested by a Milter application,
	  Postfix will log the reason given by the application.
	- If the quarantine action was requested with the "milter_default_action"
	  parameter setting or with a per-Milter "default_action" property,
	  Postfix will log "default_action".
	[Incompat 20250105] The SMTP server now logs the queue ID (or
	"NOQUEUE") when a connection ends abnormally (timeout, lost connection,
	or too many errors).
	[Feature 20250105] The SMTP server now logs the queue ID (or
	"NOQUEUE") when a connection ends abnormally (timeout, lost connection,
	or too many errors).
	[Incompat 20241104] The cleanup server now logs "queueid: canceled"
	when a message transaction is started but not completed.
	[Feature 20241104] The cleanup server now logs "queueid: canceled"
	when a message transaction is started but not completed. This
	provides a clear signal to logfile collation tools.
	[Incompat 20241031] the Dovecot SASL client logging for "Invalid
	authentication mechanism" now includes the name of that mechanism.
	[Incompat 20241023] Postfix SMTP server 'reject' logging now shows
	the sasl_method, sasl_username, and sasl_sender if available.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/packages/postfix | 4 ++++
 lfs/postfix                       | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/config/rootfiles/packages/postfix b/config/rootfiles/packages/postfix
index b77a5b42a..d4e598545 100644
--- a/config/rootfiles/packages/postfix
+++ b/config/rootfiles/packages/postfix
@@ -31,11 +31,13 @@ usr/lib/postfix/flush
 usr/lib/postfix/lmtp
 usr/lib/postfix/local
 usr/lib/postfix/master
+usr/lib/postfix/nbdb_reindexd
 usr/lib/postfix/nqmgr
 usr/lib/postfix/oqmgr
 usr/lib/postfix/pickup
 usr/lib/postfix/pipe
 usr/lib/postfix/post-install
+usr/lib/postfix/postfix-non-bdb-script
 usr/lib/postfix/postfix-script
 usr/lib/postfix/postfix-tls-script
 usr/lib/postfix/postfix-wrapper
@@ -74,6 +76,7 @@ usr/sbin/sendmail.postfix
 #usr/share/man/man1/postcat.1
 #usr/share/man/man1/postconf.1
 #usr/share/man/man1/postdrop.1
+#usr/share/man/man1/postfix-non-bdb.1
 #usr/share/man/man1/postfix-tls.1
 #usr/share/man/man1/postfix.1
 #usr/share/man/man1/postkick.1
@@ -121,6 +124,7 @@ usr/sbin/sendmail.postfix
 #usr/share/man/man8/lmtp.8
 #usr/share/man/man8/local.8
 #usr/share/man/man8/master.8
+#usr/share/man/man8/nbdb_reindexd.8
 #usr/share/man/man8/oqmgr.8
 #usr/share/man/man8/pickup.8
 #usr/share/man/man8/pipe.8
diff --git a/lfs/postfix b/lfs/postfix
index e248d232e..389405293 100644
--- a/lfs/postfix
+++ b/lfs/postfix
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = A fast, secure, and flexible mailer
 
-VER        = 3.10.7
+VER        = 3.11.1
 
 THISAPP    = postfix-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = postfix
-PAK_VER    = 51
+PAK_VER    = 52
 
 DEPS       =
 
@@ -72,7 +72,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = b08dc8879bc5ce0ea72c14f27e648fc4007f9121438860b4c51475c868fa11918a828a86ec4e79120570468b2b4f38023ccd135083ad250713e470a0759b5991
+$(DL_FILE)_BLAKE2 = 38f5579b9252c6b91f1ea5af170fef3f1348dccdb41aaf0ab1c33eaaca2789d0b757bb03ef4b0e5ade1f69d7b195cbac4a714a0e5f0d2c8768d62db8adce23fc
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] sqlite: Update to version 3510300
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (26 preceding siblings ...)
  2026-04-07 15:11 ` [PATCH] postfix: Update to version 3.11.1 Adolf Belka
@ 2026-04-07 15:11 ` Adolf Belka
  2026-04-07 15:11 ` [PATCH] strongswan: Update to version 6.0.5 Adolf Belka
                   ` (5 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:11 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 3510100 to 3510300
- Update of rootfile
- Changelog
    3510300
	Fix the WAL-reset database corruption bug.
	Other minor bug fixes.
    3510200
	Fix an obscure deadlock in the new broken-posix-lock detection logic in item 17 above.
	Fix multiple problems in the EXISTS-to-JOIN optimization that was added as part of optimization item 6b above.
	Other minor bug fixes.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/sqlite | 2 +-
 lfs/sqlite                     | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/config/rootfiles/common/sqlite b/config/rootfiles/common/sqlite
index 0d18c64c1..50553bb75 100644
--- a/config/rootfiles/common/sqlite
+++ b/config/rootfiles/common/sqlite
@@ -3,6 +3,6 @@ usr/bin/sqlite3
 #usr/include/sqlite3ext.h
 usr/lib/libsqlite3.so
 usr/lib/libsqlite3.so.0
-usr/lib/libsqlite3.so.3.51.1
+usr/lib/libsqlite3.so.3.51.3
 #usr/lib/pkgconfig/sqlite3.pc
 #usr/share/man/man1/sqlite3.1
diff --git a/lfs/sqlite b/lfs/sqlite
index 45dcfea34..214f8c824 100644
--- a/lfs/sqlite
+++ b/lfs/sqlite
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 3510100
+VER        = 3510300
 
 THISAPP    = sqlite-autoconf-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = c946652f07cf743f425aa8182e29bb4fff9f929ee56202235f6e6dfd9d06c4fcda06a3f0b0a41a1d52401f067dfb6e4c0871851ce402c1f7cfc358aac72855aa
+$(DL_FILE)_BLAKE2 = 2fa1fac0a0fe539c637602a5c7a066c62e429f153bce23f8055dfb5c4c9970ab3b3d4a1c25b59d1861567631b63fdadb2fa9495cff6b6800eb7eb038195577de
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] strongswan: Update to version 6.0.5
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (27 preceding siblings ...)
  2026-04-07 15:11 ` [PATCH] sqlite: Update to version 3510300 Adolf Belka
@ 2026-04-07 15:11 ` Adolf Belka
  2026-04-07 15:11 ` [PATCH] transmission: Update to version 4.1.1 Adolf Belka
                   ` (4 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:11 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 6.0.4 to 6.0.5
- No change to rootfile
- One CVE fix included
- Changelog
    6.0.5
- Fixed a vulnerability in the eap-ttls plugin related to processing EAP-TTLS
  AVPs that can lead to a resource exhaustion or a crash.
  This vulnerability has been registered as CVE-2026-25075.
- Added support for forwarding certain ICMP errors even if their source address
  doesn't match the traffic selectors, when running on Linux 6.9+.
- The dhcp plugin now tracks leases across make-before-break reauthentications.
- charon-cmd support childless IKE SA initiation and IKEv2 PSK authentication.
- The kernel-netlink plugin now doesn't default to the peer's address as next
  hop when installing routes if at least an interface was found.
- organizationIdentifier RDNs are supported when parsing ASN.1 DN identities
  from strings.
- Options shared by all commands in the swanctl and pki tools (e.g. --debug) are
  now parsed even if passed before the command. The log level is now always
  changed before initializing the libraries and plugins. And due to conflicts,
  the short options for swanctl's `--version` and `--uninstall` commands were
  changed to `-V` and `-U`, respectively. Similarly, the short option for pki's
  `--verify` command is now `-V`.
- For distributions that package plugins separately a new configure option is
  provided to change the log message if a plugin can't be loaded.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/strongswan | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/strongswan b/lfs/strongswan
index a993dd39e..aea530fd9 100644
--- a/lfs/strongswan
+++ b/lfs/strongswan
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 6.0.4
+VER        = 6.0.5
 
 THISAPP    = strongswan-$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
@@ -43,7 +43,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 2291900bda3e679cb68f35e44fe20011d82b44e7a9ed3fd0ae7c40ed57154c5ecded1ab5bffc9ab30c93de667ef9b103a7da1a2b31d8e2eae97b268f0be11f01
+$(DL_FILE)_BLAKE2 = 202515de3c275be32f5c9485c37a4b6c0d0f6d4e7298bc0594cb166cca8c2a78fa3ea7398f67311d26bf49479645d0a91bb1f8ccc8d374374d13fd0d3ea2fb48
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] transmission: Update to version 4.1.1
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (28 preceding siblings ...)
  2026-04-07 15:11 ` [PATCH] strongswan: Update to version 6.0.5 Adolf Belka
@ 2026-04-07 15:11 ` Adolf Belka
  2026-04-07 15:11 ` [PATCH] tzdata: Update to version 2026a Adolf Belka
                   ` (3 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:11 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 4.0.5 to 4.1.1
- Update of rootfile
- Removal of patches that are no longer needed as content is included in tarball.
- Previously transmission had been updated to 4.0.6 but then reverted due to a bug that
   caused transmission to spam tracker announcements. This bug was fixed in 4.1.0
- Changelog
    4.1.1
All Platforms
    Fixed a 4.1.0 bug that failed to report some filesystem errors to RPC clients who were querying the system's free space available. (#8258)
    Fixed a 4.1.0 bug that kept a a torrent's updated queue position from being shown. (#8298)
    Fixed a 4.1.0 bug that caused torrents' queuing order to sometimes be lost between sessions. (#8306)
    Fixed "assertion failed: no timezone" error on OpenSolaris. (#8358)
    Fixed a 4.0.0 bug that displayed the wrong mime-type icon for mp4 video files. (#8411)
    Hardened .torrent parsing by exiting sooner if pieces has an invalid size. (#8412)
    Reverted a 4.1.0 RPC change that broke some 3rd party code by returning floating-point numbers, rather than integers, for speed limit fields. (#8416)
    Fixed crash that could happen if a user paused a torrent and edited its tracker list at the same time. (#8478)
    Fixed 4.1.0 crash on arm32 by switching crc32 libraries to Mark Madler's crcany. (#8529)
    Require UTF-8 filenames in .torrent files, as required by the BitTorrent spec. (#8541)
    Fixed crash that could occur when parsing a .torrent file with a bad pieces key. (#8542)
    Fixed potential file descriptor leak when launching scripts on POSIX systems. (#8549)
    Changed the network traffic algorithm to spread bandwidth more evenly amongst peers. (#8259)
    Improved laggy user interface when bandwidth usage is high. (#8454)
macOS Client
    Fixed a 4.1.0 crash that occurred if deleting a torrent's files on macOS returned a system error. (#8275)
    Fixed a crash in the "Rename File ..." dialog when trying to rename a torrent right when the torrent finished downloading. (#8425)
    Fixed 4.1.0 crash when removing a torrent that was being show in the Inspector. (#8496)
    Improved performance of internal Torrent lookup code. (#8505)
    Improved responsiveness when scrolling the torrent list with keyboard navigation. (#8323)
Qt Client
    Fixed a 4.1.0 bug where the RPC error response arguments were not handled. (#8414)
    Fixed a long-standing bug that wouldn't let file:/// URIs be added from the command line. (#8448)
    Fixed broken icons in the torrent list on Windows. (#8456)
GTK Client
    Fixed a 4.1.0-beta.5 assertion failure when fetching a blocklist failed on a system compiled with GLIBCXX_ASSERTIONS enabled. (#8273)
    Fixed a 4.1.0 bug that wouldn't let magnet links be added from the "Add URL" dialog. (#8277)
    Fixed a 4.1.0 bug that broke keyboard shortcuts when built with GTK3. (#8293)
    Fixed a crash that could happen when removing some torrents. (#8340)
    Fixed a 4.1.0 bug that showed the wrong encryption mode being shown in the Preferences dialog. (#8345)
    Fixed a 4.0.x bug that prevented a handful of strings from being marked for translation. (#8350)
    Fixed a 4.1.0 packaging error that prevented the Qt and GTK clients from being installed side-by-side on Arch. (#8387)
    Fixed a 4.1.0 bug that wouldn't let magnet links be added from the command line. (#8415)
Web Client
    Reverted a 4.1.0 change that merged the "Remove torrent" and "Trash torrent" confirmation dialogs into a single dialog. (#8355)
    Fixed a 4.1.0 bug that showed a "Connection failed" popup when opening the "Open torrent" dialog while the current download directory path was invalid. (#8386)
Everything Else
    Updated documentation. (#8245, #8526)
    4.1.0
Highlights
    Improved µTP download performance. (#6508)
    Added support for IPv6 and dual-stack UDP trackers. (#6687)
    Support trackers that only support the old BEP-7 with &ipv4= and &ipv6=. (#7481)
    New JSON-RPC 2.0-compliant RPC API. (#7269)
    Added optional sequential downloading. (#4795)
    Use native icons for menus and toolbars: SF Symbols on macOS, Segoe Fluent on Windows 11, Segoe MDL2 on Windows 10, and XDG standard icon names everywhere else. (#7819, Qt Client)
    Fixed 4.0.6 bug where Transmission might spam HTTP tracker announces. (#7086)
All Platforms
    Improved libtransmission code to use less CPU. (#4876, #5645, #5715, #5734, #5740, #5792, #6103, #6111, #6325, #6549, #6589, #6712, #7027, #7744, #7800)
    Avoid unnecessary heap memory allocations. (#5519, #5520, #5522, #5527, #5540, #5649, #5666, #5672, #5676, #5720, #5722, #5725, #5726, #5768, #5788, #5830, #6542)
    Slightly reduced latency when sending protocol messages to peers. (#5394)
    Added the option preferred_transport to settings.json, so that users can choose their preference between µTP and TCP. (#5939)
    Return X-Transmission-Rpc-Version header in RPC HTTP 409 response to indicate JSON-RPC support. (#7958)
    Added an option to verify a torrent immediately after it finishes downloading. (#4178)
    Feat: add stats for known peers, not just connected ones. (#4900)
    Added support for using a proxy server for web connections. (#5038, #7486)
    Added ability to cache IP addresses used in global communications, and use it to fix UDP6 warning log spam. (#5329, #5510)
    Updated the torrent creator's default piece size to handle very large torrents better. (#5615)
    Added support for sending an ipv4 parameter during the Extension Protocol handshake. (#5643)
    Setting "cache-size-mb": 0 in settings.json now disables the disk write cache. (#5668)
    Improved libtransmission code to use less CPU and RAM. (#5801)
    The WebUI now does separate port checks for IPv4 and IPv6. (#5953)
    Transmission now checks if local files exists after setting torrent location. (#5978)
    Added forced variant of the "Verify Local Data" context menu item to WebUI. (#5981)
    Improved handling of plaintext and MSE handshakes. (#6025)
    If a torrent contains empty (zero byte) files, create them when starting the torrent. (#6232)
    Added optional sequential downloading. (#6450, #6746, #6893, #7047)
    The Qt and GTK Client now does separate port checks for IPv4 and IPv6. (#6525)
    Improved DHT performance. (#6569, #6695)
    Added advanced sleep-per-seconds-during-verify setting to settings.json. (#6572)
    Improved µTP download performance. (#6586)
    Added support for IPv6 Local Peer Discovery. (#6700)
    Allow port forwarding state to automatically recover from error. (#6718)
    Save upload/download queue order between sessions. (#6753, #7332)
    Added BEP-21 downloader count to tr_tracker_view and RPC. (#6936)
    Make client reqq configurable. (#7030)
    Daemon log timestamps are now in local ISO8601 format. (#7057)
    Log the reason when the RPC server rejects requests. (#7114)
    Added peer traffic statistics to torrent-get rpc method. (#7172)
    Added bytesCompleted field to torrent-get rpc call. (#7173)
    Deprecate tcp-enabled and udp-enabled in favour of preferred_transports. (#7473)
    Added raw PeerID to RPC interface. (#7514)
    IPv4 patterns in the RPC whitelist can now match with IPv4-mapped IPv6 addresses. (#7523)
    torrent_get.wanted is now an array of booleans in the JSON-RPC API. (#7997)
    Encryption mode in settings.json and RPC are now serialized to the same set of strings. (#8032)
    Fixed crash in tr_peerMgrPeerStats(). (#5279)
    Fixed "no such file or directory" warning when adding a magnet link. (#5426)
    Fixed bug that caused the wrong decimal separator to be used in some locales. (#5444)
    Fixed bug in sending torrent metadata to peers. (#5460)
    Fixed filename collision edge case when renaming files. (#5563)
    Fixed locale errors that broke number rounding when displaying statistics, e.g. upload / download ratios. (#5587)
    In RPC responses, change the default sort order of torrents to match Transmission 3.00. (#5604)
    Improved handling of multiple connections from the same IP address. (#5619)
    Always use a fixed-length key query in tracker announces. This isn't required by the spec, but some trackers rely on that fixed length because it's common practice by other BitTorrent clients. (#5652)
    Fixed minor performance bug that caused disk writes to be made in smaller batches than intended. (#5671)
    Fixed potential Windows crash when getstdhandle() returns NULL. (#5675)
    Modified LTEP to advertise PEX support more proactively, and added an sanity check for magnet metadata exchange. (#5783)
    Fixed 4.0.0 bug where the port numbers in LPD announces are sometimes malformed. (#5825)
    Fixed a bug that prevented editing the query part of a tracker URL. (#5871)
    Fixed a bug where Transmission may not announce LPD on its listening interface. (#5875)
    Fixed a bug that prevented editing trackers on magnet links. (#5957)
    Fixed HTTP tracker announces and scrapes sometimes failing after adding a torrent file by HTTPS URL. (#5969)
    Fixed blocklist error seen on some Synology devices due to a bug in tr_sys_path_copy(). (#5974)
    Run peerMgrPeerStats in session thread. (#5992)
    In some locales, some JSON stirngs were incorrectly escaped. (#6005)
    If there was some disk error with torrent removal, fail with a user readable error message. (#6055)
    Fixed 1.60 bug where low priority torrents behaved as if they had a normal priority. (#6079)
    Fixed 4.0.4 regression that could cause slower downloads when upload speed limits were enabled. (#6082)
    Fixed 4.0.0 bug where the IP address field in UDP announces were not encoded in network byte order. [BEP-15]. (#6126)
    Improved parsing HTTP tracker announce response. (#6223)
    Fixed 4.0.0 bugs where some RPC methods don't put torrents in recently-active anymore. (#6355, #6405)
    Fixed error when using mbedtls crypto backend: "CTR_DRBG - The requested random buffer length is too big". (#6379)
    Fixed 4.0.0 bug that caused some user scripts to have an invalid TR_TORRENT_TRACKERS environment variable. (#6434)
    Fixed a couple of logging issues. (#6463)
    Fixed 4.0.0 bug where alt-speed-enabled had no effect in settings.json. (#6483)
    Fixed 4.0.0 bug where the GTK client's "Use authentication" option was not saved between's sessions. (#6514)
    Fixed 4.0.0 bug where secondsDownloading and secondsSeeding will be reset when stopping the torrent. (#6844)
    Fixed 4.0.0 bug where the filename for single-file torrents aren't sanitized. (#6846)
    Partial file suffixes will now be updated after torrent verification. (#6871)
    Limit the number of bad pieces to accept from a webseed before banning it. (#6875)
    Fixed a 4.0.0 bug where 2.20-3.00 torrent piece timestamps saved in the resume file aren't loaded correctly. (#6896)
    Fixed a bug that could discard BT messages that immediately followed a handshake. (#6913)
    Various bug fixes and improvements related to PEX flags. (#6917)
    Fixed a bug where the turtle icon is active but not effective on starting Transmission. (#6937)
    Fixed a bug where Transmission does not properly reconnect on handshake error. (#6950)
    Fixed edge cases where date done and recently-active does not get updated after torrent state change. (#6992)
    Fixed a 4.0.0 bug where the tracker error is not cleared when the tracker is removed from the torrent. (#7141)
    Fixed a bug where torrent progress is not properly updated after verifying. (#7143)
    Disconnect blocklisted peers immediately upon blocklist update. (#7167)
    New files are assigned a file mode per the process umask defined in settings.json. (#7195)
    Fixed 1.74 bug where resume files are not saved when shutting down Transmission. (#7216)
    Fixed 4.0.0 bug where the download rate of webseeds are double-counted. (#7235)
    Harden the HTTP tracker response parser. (#7326)
    Fixed an issue where the speed limits are not effective below 16KiB/s. (#7339)
    Added workaround for crashes related to Curl bug 10936. (#7416)
    Sanitize torrent filenames depending on current OS. (#3823)
    Added a workaround for users affected by Curl bug 6312. (#7447)
    When downloading in sequential mode, flush pieces to disk as soon as they're completed and pass their checksum test. This helps apps that are trying to use the data in realtime, e.g. streaming media. (#7489)
    Respect the min interval and interval keys from any tracker responses. (#7493)
    Announce port-forwarded peer port instead of local peer port on DHT. (#7511)
    Reject incoming BT data if they are not selected for download. (#7866)
    Fixed intermittent crashes on macOS and GTK app. (#7948)
    Fixed remote RPC bug where querying recently_active torrents missed some torrents. (#8029)
    Fixed a bug where the UDP sockets are not rebound after changing the bind addresses. (#8106)
    Fixed potential use-after-free bug when parsing torrent files on macOS. (#8146)
    Fixed a bug where disk IO rate is much higher than transfer rate. (#7089)
    Dropped jsonsl in favour of RapidJSON as our json lexer. (#6138)
    Easier recovery from temporarily missing data files, no longer needing to remove and re-add torrent. (#6277)
    Better utilize high Internet bandwidth. (#7029)
    Renamed setting to cache_size_mib to reflect the correct size units. (#7971)
    Renamed peer_socket_tos to peer_socket_diffserv. (#8004)
    Use a consistent unit formatting code between clients. (#5108)
    Raised minimum OpenSSL version to 1.1.0. (#6047)
    Refactor: add libtransmission::Values. (#6215)
    Fixed building with older versions of CMake. (#6418)
    Support dual stack by manually creating and binding socket on Windows platform. (#6548)
    Fixed building on macOS 10.14.6, 10.15.7 and 11.7. (#6590)
    Added torrent priority to completion script environment variables. (#6629)
    Dropped support for miniupnpc version below 1.7. (#6665)
    Default initialize sleep callback duration in tr_verify_worker. (#6789)
    Removed TR_ASSERT(now >= latest). (#7018)
    Deprecated the RPC field torrent-get.manualAnnounceTime. (#7497)
    Generate imported targets for MbedTLS. (#7631)
    Added support for libevent 2.2.1-alpha-dev. (#7765)
    Deprecated session_get.rpc_version and session_get.rpc_version_minimum in favour of session_get.rpc_version_semver in RPC. (#8022)
macOS Client
    Added "Show Toolbar" toggle. (#4419)
    Better dark mode support. (#6101, #6959)
    Feat: support redirects to magnet. (#6012)
    Render file tree in QuickLook plugin for .torrent files. (#6091)
    Added an option to set Transmission as the default app for torrent files. (#6099)
    Support pasting multiple magnets on the same line. (#6465)
    Support multiple URL objects from pasteboard. (#6467)
    Feat: clear the badge when quitting app. (#7088)
    Reimplemented QuickLook previews for torrent files with Quick Look preview extension API on macOS 12+. (#7213)
    Use modern macOS APIs to prevent idle system sleep and add support for Low Power Mode. (#7543)
    Fix: apply i18n to percentage values. (#5568)
    Fixed "Unrecognized colorspace number -1" error message. (#6049)
    Fix: URL cleanup in BlocklistDownloader on macOS. (#6096)
    Fixed early truncation of long group names in groups list. (#6104)
    Use screen.visibleFrame instead of screen.frame. (#6321)
    Fixed dock bug that prevented resizing. (#7188)
    Fixed the context menu's appearance in compact mode. (#7350)
    Fixed missing tooltips for Group rows in Torrent Table View. (#7828)
    Fixed re-opening the filter bar is showing an incorrect selected filter. (#7844)
    Fixed Hide Status Bar/Filter Bar never changing to "Show". (#8170)
    Added alternating row color in QuickLook plugin. (#5216)
    Updated app icon for Liquid Glass. (#7736)
    Removing Liquid Glass icons on older Macs. (#7994)
    Added sort-by-ETA option. (#4169)
    Support localized punctuation for "Port:". (#4452)
    Replace mac app default BindPort with a random port. (#5102)
    Updated code that had been using deprecated API. (#5633)
    Support macOS Sonoma when building from sources. (#6016)
    Chore: replace deprecated NSNamePboardType with NSPasteboardTypeName. (#6107)
    Fixed building on macOS Mojave. (#6180)
    Improved macOS UI code to use less CPU. (#6452)
    Fixed app unable to start when having many torrents and TimeMachine enabled. (#6523)
    Support finding Transmission in Spotlight with keywords "torrent" and "magnet". (#6578)
    Removed warning "don't cut off end". (#6890)
    Opt-in to secure coding explicitly. (#7020)
    Added Afrikaans and Greek translations. (#7477)
    Fixed crash when opening the messages log. (#8035)
    Converted TorrentTableView to view based. (#5147)
Qt Client
    Use native icons for menus and toolbars: SF Symbols on macOS, Segoe Fluent on Windows 11, Segoe MDL2 on Windows 10, and XDG standard icon names everywhere else. (#7819, Qt Client)
    Added ETA to compact view. (#3926)
    Added the web client's Labels feature. (#6428)
    Added the ability to use a custom URL path when connecting to remote Transmission servers. (#7561)
    Added color-coding to progressbars to differentiate torrent states. (#7756)
    Fixed torrent name rendering when showing magnet links in compact view. (#5491)
    Fixed bug that broke the "Move torrent file to trash" setting. (#5505)
    Fixed poor resolution of the app icon. (#5570)
    Fixed compatibility issue with 4.x clients talking to Transmission 3.x servers. (#6438)
    Fixed 4.0.0 bug where piece size description text and slider state in torrent creation dialog were not always up-to-date. (#6516)
    Use semi-transparent color for inactive torrents. (#6544)
    Correct "Queue for download" last activity. (#6872)
    Fixed build script bug that could cause extra instances of Transmission to launch on Windows. (#7841)
    Fixed a Qt API deprecation warning when building with Qt >= 6.13. (#7940)
    Fixed "sequence not ordered" assertion error in debug builds. (#8000)
    Fix: use URL base path. (#8078)
    Fixed spinbox translation ambiguity. (#5124)
    Improved Qt client's accessibility. (#6518, #6520)
    Fix: QT build missing an icon. (#6683)
    Changed Qt client CLI options parsing to accept Qt options as a separate group. (#7076)
    Modified the "New Torrent" dialog's piece size range to [16 KiB..256 MiB]. (#6211)
    Raised the minimum Qt5 version to 5.15. (#7943)
GTK Client
    Use native file chooser dialogs (GTK client). (#6545)
    Improved GTK client's accessibility. (#7119)
    Adjust slider limits in GTK. (#7251)
    Fixed file list text size adjustment based on global settings. (#7096)
    Fixed missing 'Remove torrent' tooltip. (#5777)
    Fixed crash when opening torrent file from "Recently used" section in GTK 4. (#6131)
    Fixed 4.0.0 regression causing GTK client to hang in some cases. (#7097)
    Setting default behaviour for GTK dialogs to add torrent from url and add tracker. (#7102)
    Updated progressbar colours to match macOS and Web clients. (#5906)
    Added developer_name entry to the Flathub build. (#6596)
Web Client
    Added support for adding torrents by drag-and-drop. (#5082)
    Added high contrast theme. (#5470)
    Replaced background colors with system color keywords to enable using browser's colors. CSS style adjustments esp. for label and buttons. (#5897)
    Added percent digits into the progress bar. (#5937)
    Improved WebUI responsiveness and made quality of life improvements. (#5947)
    Feat: Only show .torrent files in the web UI. (#6320)
    Added separate port checks for IPv4 and IPv6. (#6607)
    Added new options for web client to filter torrents by their privacy or error status. (#6977)
    The inspector can now be hidden by clicking. (#6863)
    Implemented a context menu for file list in web app making way to rename or copy name of individual file. (#7389)
    Added a new alert message of a problem when renaming torrent or file name. (#7394)
    Added accept torrent files in web. (#7683)
    Don't show null as a tier name in the inspector's tier list. (#5462)
    Fixed truncated play / pause icons. (#5771)
    Fixed overflow when rendering peer lists and made speed indicators honor prefers-color-scheme media queries. (#5814)
    Made the main menu accessible even on smaller displays. (#5827)
    Fixed graying out inspector. (#5893)
    Fixed updating magnet link after selecting same torrent again. (#6028)
    Added seed progress percentage to compact rows. (#6034)
    Fixed 4.0.0 bug where the WebUI "Set Location" dialogue does not auto fill the selected torrent's current download location. (#6334)
    Fixed 4.0.5 bug where svg and png icons in the WebUI might not be displayed. (#6409, #6430)
    Fixed a 4.0.0 bug where the infinite ratio symbol was displayed incorrectly. (#6491)
    Fix(web): pressing the enter key now submits dialogs. (#7036)
    Fixed a bug inflating per-torrent rows by long torrent names in compact view. (#7336)
    Fixed incorrect text entry sensitivity when sessions changed. (#7346)
    Fixed filtering torrents by tracker after a torrent's tracker list is edited. (#7761)
    Removed excessive session-set RPC calls related to WebUI preference dialogue. (#5994)
    Removed modifiers for keyboard shortcuts. (#5331)
    Improved some UI styling and spacing. (#5466)
    Updated WebUI progress bar and highlight colours. (#5762)
    Improved the filterbar for narrowed viewports. (#5828)
    Unified CSS shadow properties. (#5840)
    Updated play/pause monochrome icons. (#5868)
    Improved overflow menu for web client. (#5895)
    Added display and time in torrent detail. (#5918)
    Added touchscreen support in the context menu. (#5928)
    Updated turtle for web app. (#6940)
    Added waiting 1/4 seconds of typing in the search bar before executing and a new button to clear the search. (#6948)
    Added checkbox to delete data while removing torrents. (#7000)
    Fixed truncated hash in inspector page, added name section to inspector page. (#7014)
    Added column mode for viewport unconstrained browsers. (#7051)
    Updated gray color for grayed out objects. (#7248)
    Updated displaying number in new gigabyte per second unit. (#7279)
    Fixed an issue where Transmission web's custom context menu does not close when clicking on some outside element. (#7296)
    Implemented a new popup management system for web client to support multiple popups in a hierarchy-like system. (#7297)
    Updated viewport-sensitive layout and style to uniform across browsers of varying viewport. (#7328)
    Increased base font sizes, and progress bar size in compact view. (#5340)
    Use esbuild to build the web client. (#6280)
    Gave labels to the mainwin buttons for web client. (#6985)
Daemon
    Added optional sequential downloading. (#7048)
    Added start_paused to settings and daemon. (#6728)
    More accurate timestamps for daemon logs. (#7009)
    Fixed minor memory leak. (#5695)
    Avoid unnecessary heap memory allocations. (#5724)
    Added documentation key to systemd service file. (#6781)
    Use Type=notify-reload in the systemd service file. (#7570)
    Included daemon-specific options in the generated settings.json. (#6499)
    Updated transmission-daemon.1 to sync with --help. (#6059)
    Deprecated tcp-enabled and udp-enabled in favour of preferred_transports. (#7988)
transmission-remote
    Added support to download sequentially from a specific piece. This can enable apps to seek within media files for streaming use cases. (#6454, #7808, #7809)
    Implemented idle seeding limits. (#2947)
    transmission-remote --blocklist-update now prints blocklist size after update. (#8021)
    Fixed display bug that failed to show some torrent labels. (#5572)
    Fixed crash in printTorrentList. (#6819)
    Improved error logging. (#7034)
    Added 'months' and 'years' to ETA display for extremely slow torrents. (#5584)
    Added default sorting by date added when listing torrents. (#5608)
    Fixed layout bug that caused columns to be misaligned when transfer speed was >= 10MB. (#8019)
    Exposed the torrent-get.percentDone key in transmission-remote. (#7622)
    Deprecated --(no-)utp in transmission-remote. (#7990)
Everything Else
    Improved libtransmission code to use less CPU. (#5651)
    Improved support for building with the NDK on Android. (#6024)
    Ran all PNG files through lossless compressors to make them smaller. (#5586)
    Fixed RPC spec that confused torrent-get.wanted with torrent-get.fileStats.wanted. (#6677)
    Updated documentation. (#5565, #5578, #5688, #5702, #5790, #5831, #6037, #6156, #6196, #6199, #6255, #6367, #6391, #6427, #6676, #6703, #6800, #6814, #7120, #7576, #7826, #7829, #7830, #7836, #7840, #8039)
    Updated peer-id documentation to account for post-3.00 changes. (#6083)
    Fixed potential build issue when compiling on macOS with gcc. (#5632)
    Build with -latomic on platforms that need it. (#6774)
    Fixed building with mbedtls 3.X. (#6822)
    Configuring Transmission's CMake project no longer inserts third-party submodules to CMake's user package registry. (#7648)
    Bumping libdeflate/small/utfcpp to newer versions. (#6709)
    Bumped fast-float to 6.1.1 and miniupnpc to 2.2.7 and libdeflate to 1.2.0. (#6721)
    Bumped miniupnpc to 2.2.8. (#6907)
    Apply Xcode 26.0 recommendations. (#7823)
    4.0.6
All Platforms
    Improved parsing HTTP tracker announce response. (#6223)
    Fixed 4.0.0 bug that caused some user scripts to have an invalid TR_TORRENT_TRACKERS environment variable. (#6434)
    Fixed 4.0.0 bug where alt-speed-enabled had no effect in settings.json. (#6483)
    Fixed 4.0.0 bug where the GTK client's "Use authentication" option was not saved between's sessions. (#6514)
    Fixed 4.0.0 bug where the filename for single-file torrents aren't sanitized. (#6846)
macOS Client
    Fix: Sparkle support for handling beta version updates. (#5263)
    Fixed app unable to start when having many torrents and TimeMachine enabled. (#6523)
    Fix: Sparkle Version Comparator. (#6623)
Qt Client
    Fixed 4.0.0 bug where piece size description text and slider state in torrent creation dialog are not always up-to-date. (#6516)
GTK Client
    Fixed build when compiling with GTKMM 4. (#6393)
    Added developer name to metainfo files. (#6598)
    Added the launchable desktop-id to metainfo files. (#6779)
    Fixed build when compiling on BSD. (#6812)
Web Client
    Fixed a 4.0.0 bug where the infinite ratio symbol was displayed incorrectly in the WebUI. (#6491, #6500)
    Fixed layout issue in speed display. (#6570)
    General UI improvement related to filterbar and fixes download/upload speed info wrap. (#6761)
Daemon
    Fixed a couple of logging issues. (#6463)
Everything Else
    Updated flatpak release metainfo. (#6357)
    Fixed libtransmission build on very old cmake versions. (#6418)
    UTP peer connections follow user-defined speed limits better now. (#6551)
    Only use a single concurrent queue for timeMachineExclude instead of one queue per torrent (#6523). (#6558)
    Fixed 4.0.5 bug where svg and png icons in the WebUI might not be displayed. (#6563)
    Fixed 4.0.0 bug where alt-speed-enabled had no effect in settings.json. (#6564)
    Fixed 4.0.0 bugs where some RPC methods don't put torrents in recently-active anymore. (#6565)
    Improved parsing HTTP tracker announce response. (#6567)
    Fixed compatibility with clang-format 18. (#6690)
    Fixed build when compiling with mbedtls 3.x . (#6823)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/packages/transmission        |   3 +
 lfs/transmission                              |   9 +-
 ...n-4.0.5-allow_build_with_cmake-4.0.x.patch | 117 ------------------
 ...ission-4.0.6-fix_for_miniupnpc-2.2.8.patch |  34 -----
 4 files changed, 7 insertions(+), 156 deletions(-)
 delete mode 100644 src/patches/transmission-4.0.5-allow_build_with_cmake-4.0.x.patch
 delete mode 100644 src/patches/transmission-4.0.6-fix_for_miniupnpc-2.2.8.patch

diff --git a/config/rootfiles/packages/transmission b/config/rootfiles/packages/transmission
index 66b832e3c..a248aea20 100644
--- a/config/rootfiles/packages/transmission
+++ b/config/rootfiles/packages/transmission
@@ -6,6 +6,7 @@ usr/bin/transmission-daemon
 usr/bin/transmission-edit
 usr/bin/transmission-remote
 usr/bin/transmission-show
+usr/lib/systemd/system/transmission-daemon.service
 usr/share/transmission
 #usr/share/transmission/public_html
 #usr/share/transmission/public_html/images
@@ -14,6 +15,8 @@ usr/share/transmission
 #usr/share/transmission/public_html/images/webclip-icon.png
 #usr/share/transmission/public_html/index.html
 #usr/share/transmission/public_html/transmission-app.css
+#usr/share/transmission/public_html/transmission-app.css.LEGAL.txt
+#usr/share/transmission/public_html/transmission-app.css.map
 #usr/share/transmission/public_html/transmission-app.js
 #usr/share/transmission/public_html/transmission-app.js.LEGAL.txt
 var/ipfire/backup/addons/includes/transmission
diff --git a/lfs/transmission b/lfs/transmission
index bbc8de19c..e93bca069 100644
--- a/lfs/transmission
+++ b/lfs/transmission
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = A BitTorrent client with multiple UIs
 
-VER        = 4.0.5
+VER        = 4.1.1
 
 THISAPP    = transmission-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = transmission
-PAK_VER    = 26
+PAK_VER    = 27
 
 DEPS       =
 
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 60caa3bc615137b225d3ac3f25daa352c6960fcc848c91e5ea45488ae109d93b53e314e4683bd7c4ef3f9b2f364d796b6c5bb014ca647d3f44fb5c9df9f8c997
+$(DL_FILE)_BLAKE2 = ad0062b1838662a023dec0872154193e1e548f6e88d4939b3ce4c31714b91692674aa6918d10b451e4a72dbb869473292b3120de70d2d8d594697e5e9812b477
 
 install : $(TARGET)
 
@@ -81,7 +81,6 @@ $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/transmission-4.0.5-allow_build_with_cmake-4.0.x.patch
 	cd $(DIR_APP) && cmake . \
 			-DCMAKE_INSTALL_PREFIX=/usr \
 			-DCMAKE_BUILD_TYPE=Release \
diff --git a/src/patches/transmission-4.0.5-allow_build_with_cmake-4.0.x.patch b/src/patches/transmission-4.0.5-allow_build_with_cmake-4.0.x.patch
deleted file mode 100644
index 8dbb3d37d..000000000
--- a/src/patches/transmission-4.0.5-allow_build_with_cmake-4.0.x.patch
+++ /dev/null
@@ -1,117 +0,0 @@
-diff -Naur transmission-4.0.5.orig/third-party/dht/CMakeLists.txt transmission-4.0.5/third-party/dht/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/dht/CMakeLists.txt	2023-12-07 00:14:35.000000000 +0100
-+++ transmission-4.0.5/third-party/dht/CMakeLists.txt	2025-05-08 21:06:46.228619936 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 2.8)
-+cmake_minimum_required(VERSION 3.10)
- project(dht C)
- 
- add_library(${PROJECT_NAME} STATIC
-diff -Naur transmission-4.0.5.orig/third-party/fast_float/CMakeLists.txt transmission-4.0.5/third-party/fast_float/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/fast_float/CMakeLists.txt	2023-12-07 00:14:35.000000000 +0100
-+++ transmission-4.0.5/third-party/fast_float/CMakeLists.txt	2025-05-08 21:07:00.907066965 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 3.9)
-+cmake_minimum_required(VERSION 3.10)
- 
- project(fast_float VERSION 3.4.0 LANGUAGES CXX)
- option(FASTFLOAT_TEST "Enable tests" OFF)
-diff -Naur transmission-4.0.5.orig/third-party/fmt/CMakeLists.txt transmission-4.0.5/third-party/fmt/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/fmt/CMakeLists.txt	2023-12-07 00:14:35.000000000 +0100
-+++ transmission-4.0.5/third-party/fmt/CMakeLists.txt	2025-05-08 21:07:41.135292083 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 3.1...3.18)
-+cmake_minimum_required(VERSION 3.10...3.18)
- 
- # Fallback for using newer policies on CMake <3.12.
- if(${CMAKE_VERSION} VERSION_LESS 3.12)
-diff -Naur transmission-4.0.5.orig/third-party/googletest/CMakeLists.txt transmission-4.0.5/third-party/googletest/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/googletest/CMakeLists.txt	2023-12-07 00:14:35.000000000 +0100
-+++ transmission-4.0.5/third-party/googletest/CMakeLists.txt	2025-05-08 21:08:06.835074741 +0200
-@@ -1,7 +1,7 @@
- # Note: CMake support is community-based. The maintainers do not use CMake
- # internally.
- 
--cmake_minimum_required(VERSION 3.5)
-+cmake_minimum_required(VERSION 3.10)
- 
- if (POLICY CMP0048)
-   cmake_policy(SET CMP0048 NEW)
-diff -Naur transmission-4.0.5.orig/third-party/libb64/CMakeLists.txt transmission-4.0.5/third-party/libb64/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/libb64/CMakeLists.txt	2023-12-07 00:14:35.000000000 +0100
-+++ transmission-4.0.5/third-party/libb64/CMakeLists.txt	2025-05-08 21:08:40.035085810 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
-+cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
- project(libb64 VERSION 2.0.0 LANGUAGES C)
- 
- set(LIBB64_STANDALONE_BUILD OFF)
-diff -Naur transmission-4.0.5.orig/third-party/libdeflate/CMakeLists.txt transmission-4.0.5/third-party/libdeflate/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/libdeflate/CMakeLists.txt	2023-12-07 00:14:35.000000000 +0100
-+++ transmission-4.0.5/third-party/libdeflate/CMakeLists.txt	2025-05-08 21:08:58.870659428 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 3.7)
-+cmake_minimum_required(VERSION 3.10)
- 
- # Default to a release build.
- if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
-diff -Naur transmission-4.0.5.orig/third-party/libevent/CMakeLists.txt transmission-4.0.5/third-party/libevent/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/libevent/CMakeLists.txt	2023-12-07 00:14:35.000000000 +0100
-+++ transmission-4.0.5/third-party/libevent/CMakeLists.txt	2025-05-08 21:09:27.056517789 +0200
-@@ -19,7 +19,7 @@
- #       start libevent.sln
- #
- 
--cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
-+cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
- 
- if (POLICY CMP0054)
-     cmake_policy(SET CMP0054 NEW)
-diff -Naur transmission-4.0.5.orig/third-party/libnatpmp/CMakeLists.txt transmission-4.0.5/third-party/libnatpmp/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/libnatpmp/CMakeLists.txt	2023-12-07 00:14:35.000000000 +0100
-+++ transmission-4.0.5/third-party/libnatpmp/CMakeLists.txt	2025-05-08 21:09:46.043096005 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 2.8)
-+cmake_minimum_required(VERSION 3.10)
- project(natpmp C)
- 
- add_definitions(-DNATPMP_STATICLIB -DENABLE_STRNATPMPERR)
-diff -Naur transmission-4.0.5.orig/third-party/libpsl/CMakeLists.txt transmission-4.0.5/third-party/libpsl/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/libpsl/CMakeLists.txt	2023-12-07 00:14:35.000000000 +0100
-+++ transmission-4.0.5/third-party/libpsl/CMakeLists.txt	2025-05-08 21:09:59.844516650 +0200
-@@ -2,7 +2,7 @@
- # This is just the minimum subset needed for building an embedded
- # static library into Transmission.
- 
--cmake_minimum_required(VERSION 3.0)
-+cmake_minimum_required(VERSION 3.10)
- 
- project(psl
-   VERSION 0.21.1.0 # when changing this, must set LIBPSL_VERSION_NUMBER too
-diff -Naur transmission-4.0.5.orig/third-party/libutp/CMakeLists.txt transmission-4.0.5/third-party/libutp/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/libutp/CMakeLists.txt	2023-12-07 00:14:36.000000000 +0100
-+++ transmission-4.0.5/third-party/libutp/CMakeLists.txt	2025-05-08 21:10:25.155290353 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
-+cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
- project(libutp VERSION 3.4 LANGUAGES C CXX)
- 
- set(LIBUTP_STANDALONE_BUILD OFF)
-diff -Naur transmission-4.0.5.orig/third-party/miniupnpc/CMakeLists.txt transmission-4.0.5/third-party/miniupnpc/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/miniupnpc/CMakeLists.txt	2023-12-07 00:14:36.000000000 +0100
-+++ transmission-4.0.5/third-party/miniupnpc/CMakeLists.txt	2025-05-08 21:10:44.852892384 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required (VERSION 2.6)
-+cmake_minimum_required (VERSION 3.10)
- 
- project (miniupnpc C)
- set (MINIUPNPC_VERSION 2.0)
-diff -Naur transmission-4.0.5.orig/third-party/utfcpp/CMakeLists.txt transmission-4.0.5/third-party/utfcpp/CMakeLists.txt
---- transmission-4.0.5.orig/third-party/utfcpp/CMakeLists.txt	2023-12-07 00:14:36.000000000 +0100
-+++ transmission-4.0.5/third-party/utfcpp/CMakeLists.txt	2025-05-08 21:10:59.986354870 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required (VERSION 3.0.2)
-+cmake_minimum_required (VERSION 3.10)
- project (utf8cpp VERSION 3.2 LANGUAGES CXX)
- 
- if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
diff --git a/src/patches/transmission-4.0.6-fix_for_miniupnpc-2.2.8.patch b/src/patches/transmission-4.0.6-fix_for_miniupnpc-2.2.8.patch
deleted file mode 100644
index 3426d13bc..000000000
--- a/src/patches/transmission-4.0.6-fix_for_miniupnpc-2.2.8.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From febfe49ca3ecab1a7142ecb34012c1f0b2bcdee8 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?C=C5=93ur?= <coeur@gmx.fr>
-Date: Sat, 15 Jun 2024 07:24:06 +0800
-Subject: [PATCH] bump miniupnpc to 2.2.8 (#6907)
-
-* bump miniupnpc to 2.2.8
-
-* Avoid build error "ln: include/miniupnpc/.: Operation not permitted"
----
- Transmission.xcodeproj/project.pbxproj  | 2 +-
- libtransmission/port-forwarding-upnp.cc | 9 +++++++--
- third-party/miniupnp                    | 2 +-
- 3 files changed, 9 insertions(+), 4 deletions(-)
-
-diff --git a/libtransmission/port-forwarding-upnp.cc b/libtransmission/port-forwarding-upnp.cc
-index 6d7bbc7f7c2..a4146e0df13 100644
---- a/libtransmission/port-forwarding-upnp.cc
-+++ b/libtransmission/port-forwarding-upnp.cc
-@@ -261,8 +261,13 @@ tr_port_forwarding_state tr_upnpPulse(
- 
-         FreeUPNPUrls(&handle->urls);
-         auto lanaddr = std::array<char, TR_ADDRSTRLEN>{};
--        if (UPNP_GetValidIGD(devlist, &handle->urls, &handle->data, std::data(lanaddr), std::size(lanaddr) - 1) ==
--            UPNP_IGD_VALID_CONNECTED)
-+        if (
-+#if (MINIUPNPC_API_VERSION >= 18)
-+            UPNP_GetValidIGD(devlist, &handle->urls, &handle->data, std::data(lanaddr), std::size(lanaddr) - 1, nullptr, 0)
-+#else
-+            UPNP_GetValidIGD(devlist, &handle->urls, &handle->data, std::data(lanaddr), std::size(lanaddr) - 1)
-+#endif
-+            == UPNP_IGD_VALID_CONNECTED)
-         {
-             tr_logAddInfo(fmt::format(_("Found Internet Gateway Device '{url}'"), fmt::arg("url", handle->urls.controlURL)));
-             tr_logAddInfo(fmt::format(_("Local Address is '{address}'"), fmt::arg("address", lanaddr.data())));
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] tzdata: Update to version 2026a
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (29 preceding siblings ...)
  2026-04-07 15:11 ` [PATCH] transmission: Update to version 4.1.1 Adolf Belka
@ 2026-04-07 15:11 ` Adolf Belka
  2026-04-07 15:11 ` [PATCH] vim: Update to version 9.2.0305 Adolf Belka
                   ` (2 subsequent siblings)
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:11 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 2025c to 2026a
- No change to rootfile
- Changelog
    2026a
   Briefly:
      Moldova has used EU transition times since 2022.
      The "right" TZif files are no longer installed by default.
      -DTZ_RUNTIME_LEAPS=0 disables runtime support for leap seconds.
      TZif files are no longer limited to 50 bytes of abbreviations.
      zic is no longer limited to 50 leap seconds.
      Several integer overflow bugs have been fixed.
   Changes to past and future timestamps
     Since 2022 Moldova has observed EU transition times, that is, it
      has sprung forward at 03:00, not 02:00, and has fallen back at
      04:00, not 03:00.  (Thanks to Heitor David Pinto.)
   Changes to data
     Remove Europe/Chisinau from zonenow.tab, as it now agrees with
      Europe/Athens for future timestamps.
   Changes to build procedure
     The Makefile no longer by default installs an alternate set
      of TZif files for system clocks that count leap seconds.
      Install with 'make REDO=posix_right' to get the old default,
      which is rarely used in major downstream distributions.
      If your system clock counts leap seconds (contrary to POSIX),
      it is better to install with 'make REDO=right_only'.
      This change does not affect the leapseconds file, which is still
      installed as before.
     The Makefile's POSIXRULES option, which was declared obsolete in
      release 2019b, has been removed.  The Makefile's build procedure
      thus no longer optionally installs the obsolete posixrules file.
   Changes to code
     Compiling with the new option -DTZ_RUNTIME_LEAPS=0 disables
      runtime support for leap seconds.  Although this conforms to
      POSIX, shrinks tzcode's attack surface, and is more efficient,
      it fails to support Internet RFC 9636's leap seconds.
     zic now can generate, and localtime.c can now use, TZif files that
      hold up to 256 bytes of abbreviations, counting trailing NULs.
      The previous limit was 50 bytes, and some tzdata TZif files were
      already consuming 40 bytes.  zic -v warns if it generates a file
      that exceeds the old 50-byte limit.
     zic -L can now generate TZif files with more than 50 leap seconds.
      This helps test TZif readers not limited to 50 leap seconds, as
      tzcode's localtime.c is; it has little immediate need for
      practical timekeeping as there have been only 27 leap seconds and
      possibly there will be no more, due to planned changes to UTC.
      zic -v warns if its output exceeds the old 50-second limit.
     localtime.c no longer accesses the posixrules file generated by
      zic -p.  Hence for obsolete and nonconforming settings like
      TZ="AST4ADT" it now typically falls back on US DST rules, rather
      than attempting to override this fallback with the contents of the
      posixrules file.  This removes library support that was declared
      obsolete in release 2019b, and fixes some undefined behavior.
      (Undefined behavior reported by GitHub user Naveed8951.)
     The posix2time, posix2time_z, time2posix, and time2posix_z
      functions now set errno=EOVERFLOW and return ((time_t) -1) if the
      result is not representable.  Formerly they had undefined behavior
      that could in practice result in crashing, looping indefinitely,
      or returning an incorrect result.  As before, these functions are
      defined only when localtime.c is compiled with the -DSTD_INSPIRED
      option.
     Some other undefined behavior, triggered by TZif files containing
      outlandish but conforming UT offsets or leap second corrections,
      has also been fixed.  (Some of these bugs reported by Naveed8951.)
     localtime.c no longer rejects TZif files that exactly fit in its
      internal structures, fixing off-by-one typos introduced in 2014g.
     zic no longer generates a no-op transition when
      simultaneous Rule and Zone changes cancel each other out.
      This occurs in tzdata only in Asia/Tbilisi on 1997-03-30.
      (Thanks to Renchunhui for a test case showing the bug.)
     zic no longer assumes you can fflush a read-only stream.
      (Problem reported by Christos Zoulas.)
     zic no longer generates UT offsets equal to -2**31 and localtime.c
      no longer accepts them, as they can cause trouble in both
      localtime.c and its callers.  RFC 9636 prohibits such offsets.
     zic -p now warns that the -p option is obsolete and likely
      ineffective.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/tzdata | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/lfs/tzdata b/lfs/tzdata
index ca813384f..50410a8ff 100644
--- a/lfs/tzdata
+++ b/lfs/tzdata
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,8 @@
 
 include Config
 
-VER        = 2025c
+VER        = 2026a
+# https://data.iana.org/time-zones/releases/.tar.gx & .asc
 
 TZDATA_VER = $(VER)
 TZCODE_VER = $(VER)
@@ -46,8 +47,8 @@ objects = tzdata$(TZDATA_VER).tar.gz tzcode$(TZCODE_VER).tar.gz
 tzdata$(TZDATA_VER).tar.gz = $(DL_FROM)/tzdata$(TZDATA_VER).tar.gz
 tzcode$(TZCODE_VER).tar.gz = $(DL_FROM)/tzcode$(TZCODE_VER).tar.gz
 
-tzdata$(TZDATA_VER).tar.gz_BLAKE2 = f7d8fa0286f72e90058693dcdc39b8e9ddca198b157807b8d7d33969c07a2ee5a0391c6ebe8f3d86990de765216f563cf7ca75d8ea6f5c3b2950a16b973827de
-tzcode$(TZCODE_VER).tar.gz_BLAKE2 = b649847fcc59db2e43bc3f942e9ee4abb5968ac45114f6dcf362ec0ec23bd60117f976b539412cf062d8ba097a9d9a85f642ba46c5fbd96e2fb1a5e7b6f2ed53
+tzdata$(TZDATA_VER).tar.gz_BLAKE2 = 01fd07f9bfef107c8fb1ca677b0c25b3162220377610173de6d3591a6e714d25ab763cd2b3121dabeed3f6c95f27a4f402ac4ab59f3959b6f6418824c28fdfc5
+tzcode$(TZCODE_VER).tar.gz_BLAKE2 = 6e427e937a91ed814dc3c25bfb2b64703b2fdaa2129f8a39ecc302090eccd1939403d9eb39b41d7a9252249f970deb106ac5e13030e2c79b90a5f2fcc9acb419
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] vim: Update to version 9.2.0305
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (30 preceding siblings ...)
  2026-04-07 15:11 ` [PATCH] tzdata: Update to version 2026a Adolf Belka
@ 2026-04-07 15:11 ` Adolf Belka
  2026-04-07 15:11 ` [PATCH] xfsprogs: Update to version 6.19.0 Adolf Belka
  2026-04-07 15:11 ` [PATCH] xz: Update to version 5.8.3 Adolf Belka
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:11 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 9.2.0089 to 9.2.0305
- Update of rootfile
- Changelog is not available. Generally each patch version number update is related to
   a commit entry in the git repository. The details for all the commit changes can be
   found at https://github.com/vim/vim/commits/master/

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/vim | 8 ++++++++
 lfs/vim                     | 4 ++--
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/config/rootfiles/common/vim b/config/rootfiles/common/vim
index 249cf4a39..4be32a8fe 100644
--- a/config/rootfiles/common/vim
+++ b/config/rootfiles/common/vim
@@ -209,6 +209,7 @@ usr/share/vim
 #usr/share/vim/vim92/compiler/jq.vim
 #usr/share/vim/vim92/compiler/jshint.vim
 #usr/share/vim/vim92/compiler/jsonlint.vim
+#usr/share/vim/vim92/compiler/just.vim
 #usr/share/vim/vim92/compiler/make.vim
 #usr/share/vim/vim92/compiler/maven.vim
 #usr/share/vim/vim92/compiler/mcs.vim
@@ -696,6 +697,7 @@ usr/share/vim
 #usr/share/vim/vim92/ftplugin/neomuttrc.vim
 #usr/share/vim/vim92/ftplugin/netrc.vim
 #usr/share/vim/vim92/ftplugin/nginx.vim
+#usr/share/vim/vim92/ftplugin/nickel.vim
 #usr/share/vim/vim92/ftplugin/nim.vim
 #usr/share/vim/vim92/ftplugin/nix.vim
 #usr/share/vim/vim92/ftplugin/nroff.vim
@@ -857,6 +859,7 @@ usr/share/vim
 #usr/share/vim/vim92/ftplugin/wat.vim
 #usr/share/vim/vim92/ftplugin/wget.vim
 #usr/share/vim/vim92/ftplugin/wget2.vim
+#usr/share/vim/vim92/ftplugin/wks.vim
 #usr/share/vim/vim92/ftplugin/xcompose.vim
 #usr/share/vim/vim92/ftplugin/xdefaults.vim
 #usr/share/vim/vim92/ftplugin/xf86conf.vim
@@ -870,6 +873,7 @@ usr/share/vim
 #usr/share/vim/vim92/ftplugin/xslt.vim
 #usr/share/vim/vim92/ftplugin/yacc.vim
 #usr/share/vim/vim92/ftplugin/yaml.vim
+#usr/share/vim/vim92/ftplugin/yara.vim
 #usr/share/vim/vim92/ftplugin/zathurarc.vim
 #usr/share/vim/vim92/ftplugin/zig.vim
 #usr/share/vim/vim92/ftplugin/zimbu.vim
@@ -944,6 +948,7 @@ usr/share/vim
 #usr/share/vim/vim92/indent/gyp.vim
 #usr/share/vim/vim92/indent/haml.vim
 #usr/share/vim/vim92/indent/hamster.vim
+#usr/share/vim/vim92/indent/handlebars.vim
 #usr/share/vim/vim92/indent/hare.vim
 #usr/share/vim/vim92/indent/hcl.vim
 #usr/share/vim/vim92/indent/hog.vim
@@ -1507,6 +1512,7 @@ usr/share/vim
 #usr/share/vim/vim92/syntax/gitsendemail.vim
 #usr/share/vim/vim92/syntax/gkrellmrc.vim
 #usr/share/vim/vim92/syntax/gleam.vim
+#usr/share/vim/vim92/syntax/glimmer.vim
 #usr/share/vim/vim92/syntax/glsl.vim
 #usr/share/vim/vim92/syntax/gnash.vim
 #usr/share/vim/vim92/syntax/gnuplot.vim
@@ -1529,6 +1535,7 @@ usr/share/vim
 #usr/share/vim/vim92/syntax/gyp.vim
 #usr/share/vim/vim92/syntax/haml.vim
 #usr/share/vim/vim92/syntax/hamster.vim
+#usr/share/vim/vim92/syntax/handlebars.vim
 #usr/share/vim/vim92/syntax/hare.vim
 #usr/share/vim/vim92/syntax/haredoc.vim
 #usr/share/vim/vim92/syntax/haskell.vim
@@ -2024,6 +2031,7 @@ usr/share/vim
 #usr/share/vim/vim92/syntax/wget2.vim
 #usr/share/vim/vim92/syntax/whitespace.vim
 #usr/share/vim/vim92/syntax/winbatch.vim
+#usr/share/vim/vim92/syntax/wks.vim
 #usr/share/vim/vim92/syntax/wml.vim
 #usr/share/vim/vim92/syntax/wsh.vim
 #usr/share/vim/vim92/syntax/wsml.vim
diff --git a/lfs/vim b/lfs/vim
index 32cf2b6b3..2f53dce1d 100644
--- a/lfs/vim
+++ b/lfs/vim
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 9.2.0089
+VER        = 9.2.0305
 
 THISAPP    = vim-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 0b9fffbe3e2b31aab98c17121dde34790ff436f874b021e846458a92646ddadd9a662ba42982bef2eadbc307936d95d9c77390f8a99adaff5b5d4be230e2ebaa
+$(DL_FILE)_BLAKE2 = cdd1146ac0f761ce7530ec823620a06e529224799c18eb404d251df7bdbb4ea3be86a38bc4d11d6ac02dc6b60d4a5281d5ac9db71e72cd45fa06cdfd50097761
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] xfsprogs: Update to version 6.19.0
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (31 preceding siblings ...)
  2026-04-07 15:11 ` [PATCH] vim: Update to version 9.2.0305 Adolf Belka
@ 2026-04-07 15:11 ` Adolf Belka
  2026-04-07 15:11 ` [PATCH] xz: Update to version 5.8.3 Adolf Belka
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:11 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 6.18.0 to 6.19.0
- No change to rootfile
- Changelog
    6.19.0
	xfs_io: print more realtime subvolume related information in statfs (Christoph Hellwig)
	xfs_io: fix fsmap help (Christoph Hellwig)
	mkfs: fix log sunit automatic configuration (Darrick J. Wong)
	mkfs: fix protofile data corruption when in/out file block sizes don't match (Darrick J. Wong)
	libxfs: fix data corruption bug in libxfs_file_write (Darrick J. Wong)
	misc: fix a few memory leaks (Darrick J. Wong)
	debian: Drop Uploader: Bastian Germann (Bastian Germann)
	mkfs.xfs fix sunit size on 512e and 4kN disks. (Lukas Herbolt)
	xfs_scrub_all: fix non-service-mode arguments to xfs_scrub (Darrick J. Wong)
	mkfs: remove unnecessary return value affectation (Damien Le Moal)
	xfs: use blkdev_report_zones_cached() (Damien Le Moal)
	include blkzoned.h in platform_defs.h (Christoph Hellwig)
	debian: don't explicitly reload systemd from postinst (Darrick J. Wong)
	xfs_mdrestore: fix restoration on filesystems with 4k sectors (Darrick J. Wong)
	mkfs: quiet down warning about insufficient write zones (Darrick J. Wong)
	xfs_logprint: print log data to the screen in host-endian order (Darrick J. Wong)
	mkfs: set rtstart from user-specified dblocks (Darrick J. Wong)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/xfsprogs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/xfsprogs b/lfs/xfsprogs
index df5f63fe0..a91c92c67 100644
--- a/lfs/xfsprogs
+++ b/lfs/xfsprogs
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 6.18.0
+VER        = 6.19.0
 #          https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/
 
 THISAPP    = xfsprogs-$(VER)
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 225cb49a39a2539e48513985d72602c0c067f73597e3fe1d9d4062989ed98c3a0b2c85bb9d465c60acefce3243a7e2320808727e6ce527fbc35216bde235144e
+$(DL_FILE)_BLAKE2 = 30ef424589e96175aa38776d809c7a0e1ce2d74ba3ccfca83c00bf102836f93f131afd63e5be8d639aee4e3c8831f6d536029b4e7d6dd44b9297426d6c028d2c
 
 install : $(TARGET)
 
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

* [PATCH] xz: Update to version 5.8.3
  2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
                   ` (32 preceding siblings ...)
  2026-04-07 15:11 ` [PATCH] xfsprogs: Update to version 6.19.0 Adolf Belka
@ 2026-04-07 15:11 ` Adolf Belka
  33 siblings, 0 replies; 35+ messages in thread
From: Adolf Belka @ 2026-04-07 15:11 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 5.8.2 to 5.8.3
- Update of rootfile
- Fix for a CVE
- Changelog
    5.8.3
    IMPORTANT: This includes a fix for CVE-2026-34743 which affects all
    XZ Utils versions since 5.0.0. No new 5.2.x, 5.4.x, or 5.6.x
    releases will be made, but the fix is in the v5.2, v5.4, and v5.6
    branches in the xz Git repository.
    * liblzma:
        - Fix a buffer overflow in lzma_index_append(): If
          lzma_index_decoder() was used to decode an Index that
          contained no Records, the resulting lzma_index was left in
          a state where where a subsequent lzma_index_append() would
          allocate too little memory, and a buffer overflow would occur.
          The lzma_index functions are rarely used by applications
          directly. In the few applications that do use these functions,
          the combination of function calls required to trigger this bug
          are unlikely to exist, because there typically is no reason to
          append Records to a decoded lzma_index. Thus, it's likely that
          this bug cannot be triggered in any real-world application.
          The bug was reported and discovered by Cantina using their
          AppSec agent, Apex.
        - Fix the build on Windows ARM64EC.
        - Add "License: 0BSD" to liblzma.pc.
    * xz:
        - Fix invalid memory access in --files and --files0. All of
          the following must be true to trigger it:
            1. A string being read (which supposedly is a filename) is
               at least SIZE_MAX / 2 bytes long. This size is plausible
               on 32-bit platforms (2 GiB - 1 B).
            2. realloc(ptr, SIZE_MAX / 2 + 1) must succeed.
               On glibc >= 2.30 it shouldn't because the value
               exceeds PTRDIFF_MAX.
            3. An integer overflow results in a realloc(ptr, 0) call.
               If it doesn't return NULL, then invalid memory access
               will occur.
        - On QNX, don't use fsync() on directories because it fails.
    * Autotools: Enable 32-bit x86 assembler on Hurd by default.
      It was already enabled in the CMake-based build.
    * Translations: Add Arabic man page translations.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/xz | 27 ++++++++++++++++++++++++++-
 lfs/xz                     |  9 +++++----
 2 files changed, 31 insertions(+), 5 deletions(-)

diff --git a/config/rootfiles/common/xz b/config/rootfiles/common/xz
index c6b433803..5debdf404 100644
--- a/config/rootfiles/common/xz
+++ b/config/rootfiles/common/xz
@@ -41,7 +41,7 @@ usr/bin/xzmore
 #usr/lib/liblzma.la
 #usr/lib/liblzma.so
 usr/lib/liblzma.so.5
-usr/lib/liblzma.so.5.8.2
+usr/lib/liblzma.so.5.8.3
 #usr/lib/pkgconfig/liblzma.pc
 #usr/share/doc/xz
 #usr/share/doc/xz/AUTHORS
@@ -88,6 +88,31 @@ usr/lib/liblzma.so.5.8.2
 #usr/share/locale/vi/LC_MESSAGES/xz.mo
 #usr/share/locale/zh_CN/LC_MESSAGES/xz.mo
 #usr/share/locale/zh_TW/LC_MESSAGES/xz.mo
+#usr/share/man/ar
+#usr/share/man/ar/man1
+#usr/share/man/ar/man1/lzcat.1
+#usr/share/man/ar/man1/lzcmp.1
+#usr/share/man/ar/man1/lzdiff.1
+#usr/share/man/ar/man1/lzegrep.1
+#usr/share/man/ar/man1/lzfgrep.1
+#usr/share/man/ar/man1/lzgrep.1
+#usr/share/man/ar/man1/lzless.1
+#usr/share/man/ar/man1/lzma.1
+#usr/share/man/ar/man1/lzmadec.1
+#usr/share/man/ar/man1/lzmainfo.1
+#usr/share/man/ar/man1/lzmore.1
+#usr/share/man/ar/man1/unlzma.1
+#usr/share/man/ar/man1/unxz.1
+#usr/share/man/ar/man1/xz.1
+#usr/share/man/ar/man1/xzcat.1
+#usr/share/man/ar/man1/xzcmp.1
+#usr/share/man/ar/man1/xzdec.1
+#usr/share/man/ar/man1/xzdiff.1
+#usr/share/man/ar/man1/xzegrep.1
+#usr/share/man/ar/man1/xzfgrep.1
+#usr/share/man/ar/man1/xzgrep.1
+#usr/share/man/ar/man1/xzless.1
+#usr/share/man/ar/man1/xzmore.1
 #usr/share/man/de
 #usr/share/man/de/man1
 #usr/share/man/de/man1/lzcat.1
diff --git a/lfs/xz b/lfs/xz
index 465a3b183..a8de6c5d7 100644
--- a/lfs/xz
+++ b/lfs/xz
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 5.8.2
+VER        = 5.8.3
 
 THISAPP    = xz-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -45,7 +45,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 3788b52c41adb4af32a5221b9c497044068343f1489508b90c9fb00188463e1eb3bc9df91b0457f1e9524c5e45dd2c374fd26f535994f04f94d2d200ccc4d85c
+$(DL_FILE)_BLAKE2 = 36d6ae3ce1ee70f1d18d10107f7d6b4dfb43c34e11d8ec4504feeaa50b43cfa8d80de2b8ac2a1b66478723a83b4ebacf4179b69fb4d746f08b120b2e804fc2ce
 
 install : $(TARGET)
 
@@ -75,7 +75,8 @@ $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && ./configure --prefix=$(PREFIX)
+	cd $(DIR_APP) && ./configure \
+				--prefix=$(PREFIX)
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)
-- 
2.53.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

end of thread, other threads:[~2026-04-07 15:11 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-07 15:10 [PATCH] boost: Update to version 1_90_0 Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship boost Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship libpng Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship libsodium Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship liburcu Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship lmdb Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship lvm2 Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship man-pages Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship mdadm Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship ncat Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship pango Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship sqlite Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship tzdata Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship vim Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship xfsprogs Adolf Belka
2026-04-07 15:10 ` [PATCH] core202: Ship xz Adolf Belka
2026-04-07 15:10 ` [PATCH] libpng: Update to version 1.6.56 Adolf Belka
2026-04-07 15:10 ` [PATCH] libsodium: Update to version 1.0.21 Adolf Belka
2026-04-07 15:10 ` [PATCH] liburcu: Update to version 0.15.6 Adolf Belka
2026-04-07 15:10 ` [PATCH] lmdb: Update to version 0.9.35 Adolf Belka
2026-04-07 15:10 ` [PATCH] lvm2: Update to version 2.03.39 Adolf Belka
2026-04-07 15:10 ` [PATCH] man-pages: Update to version 6.17 Adolf Belka
2026-04-07 15:10 ` [PATCH] mdadm: Update to version 4.6 Adolf Belka
2026-04-07 15:10 ` [PATCH] ncat: Update to version 7.99 Adolf Belka
2026-04-07 15:10 ` [PATCH] nfs: Update to version 2.9.1 Adolf Belka
2026-04-07 15:10 ` [PATCH] nmap: Update to version 7.99 Adolf Belka
2026-04-07 15:11 ` [PATCH] pango: Update to version 1.57.1 Adolf Belka
2026-04-07 15:11 ` [PATCH] postfix: Update to version 3.11.1 Adolf Belka
2026-04-07 15:11 ` [PATCH] sqlite: Update to version 3510300 Adolf Belka
2026-04-07 15:11 ` [PATCH] strongswan: Update to version 6.0.5 Adolf Belka
2026-04-07 15:11 ` [PATCH] transmission: Update to version 4.1.1 Adolf Belka
2026-04-07 15:11 ` [PATCH] tzdata: Update to version 2026a Adolf Belka
2026-04-07 15:11 ` [PATCH] vim: Update to version 9.2.0305 Adolf Belka
2026-04-07 15:11 ` [PATCH] xfsprogs: Update to version 6.19.0 Adolf Belka
2026-04-07 15:11 ` [PATCH] xz: Update to version 5.8.3 Adolf Belka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox