LLVM/project fb13191libsycl/include/sycl/__impl usm_functions.hpp usm_alloc_type.hpp, libsycl/src usm_functions.cpp

[libsycl] add USM alloc/free functions

Signed-off-by: Tikhomirova, Kseniya <kseniya.tikhomirova at intel.com>
DeltaFile
+300-0libsycl/include/sycl/__impl/usm_functions.hpp
+130-0libsycl/src/usm_functions.cpp
+124-0libsycl/test/usm/alloc_functions.cpp
+25-0libsycl/include/sycl/__impl/usm_alloc_type.hpp
+17-0libsycl/src/detail/offload/offload_utils.cpp
+13-0libsycl/src/detail/global_objects.hpp
+609-07 files not shown
+638-013 files

NetBSD/pkgsrc NTpAv5kdoc TODO CHANGES-2026

   doc: Updated net/slumber to 5.1.1
VersionDeltaFile
1.26888+1-2doc/TODO
1.1503+2-1doc/CHANGES-2026
+3-32 files

NetBSD/pkgsrc WnaOohFnet/slumber distinfo Makefile

   slumber: update to 5.1.1.

   ## [5.1.1] - 2026-02-26

   ### Fixed

   - Fix JSON template previews not rendering unpacked values correctly [#627](https://github.com/LucasPickering/slumber/issues/627)
   - Fix cycling backward (shift-tab) from the sidebar to the bottom pane
VersionDeltaFile
1.42+4-4net/slumber/distinfo
1.56+2-2net/slumber/Makefile
+6-62 files

NetBSD/pkgsrc 0jYHoMHdoc CHANGES-2026

   Updated textproc/py-linkify-it-py, devel/py-line_profiler
VersionDeltaFile
1.1502+3-1doc/CHANGES-2026
+3-11 files

LLVM/project 88693c4clang/test/Analysis z3-crosscheck.c z3-refute-enum-crash.cpp, clang/test/Analysis/z3 z3-crosscheck.c z3-refute-enum-crash.cpp

[NFC][analyzer][test][z3] Move test cases requiring Z3 to the `Analysis/z3/` subdirectory (#183724)

Addressing #181581, continuing #183034

This enables executing all test cases with the `REQUIRES: z3` tag via
the `check-clang-analysis-z3` target.
DeltaFile
+91-0clang/test/Analysis/z3/z3-crosscheck.c
+0-91clang/test/Analysis/z3-crosscheck.c
+77-0clang/test/Analysis/z3/z3-refute-enum-crash.cpp
+0-77clang/test/Analysis/z3-refute-enum-crash.cpp
+0-63clang/test/Analysis/cstring-addrspace.c
+63-0clang/test/Analysis/z3/cstring-addrspace.c
+231-23110 files not shown
+409-40916 files

NetBSD/pkgsrc-wip a7cd6f2cyclone distinfo, cyclone-bootstrap distinfo

cyclone{,-bootstrap}: fix patch for detecting open_memstream

The second argument for open_memstream is of type (size_t*),
not int. This fixes the detection of open_memstream.
DeltaFile
+1-1cyclone-bootstrap/patches/patch-Makefile.config
+1-1cyclone-bootstrap/distinfo
+1-1cyclone/distinfo
+1-1cyclone/patches/patch-Makefile.config
+4-44 files

OPNSense/core b09a3c6src/opnsense/mvc/app/models/OPNsense/Firewall DNat.xml, src/opnsense/mvc/app/views/OPNsense/Firewall nat_rule.volt

Firewall: NAT: Destination NAT: Allow well known ports in local-port (#9880)

DeltaFile
+0-1src/opnsense/mvc/app/views/OPNsense/Firewall/nat_rule.volt
+1-0src/opnsense/mvc/app/models/OPNsense/Firewall/DNat.xml
+1-12 files

LLVM/project 87cbea6openmp/cmake/modules LibompUtils.cmake LibompHandleFlags.cmake, openmp/runtime/cmake LibompMicroTests.cmake LibompExports.cmake

[openmp][cmake][NFCI] Avoid non-eval uses of ${var} (#182267)

When using

    set(var "Example")
    if (${var})

CMake will first resolve the if-argument to

    if (Example)

And what then happens depends on the existance of a variable with the
name "Example":

1. If instead of "Example", a truth constant is used ("TRUE", "FALSE",
   "ON", "OFF", "", "-NOTFOUND" ...), it is prioritized
   (https://cmake.org/cmake/help/latest/command/if.html#constant)

2. If a variable with the name "Example" exists: Use the truthiness of

    [28 lines not shown]
DeltaFile
+28-28openmp/cmake/modules/LibompUtils.cmake
+15-15openmp/runtime/cmake/LibompMicroTests.cmake
+12-12openmp/cmake/modules/LibompHandleFlags.cmake
+8-8openmp/runtime/src/CMakeLists.txt
+6-6openmp/runtime/cmake/LibompExports.cmake
+5-5openmp/runtime/cmake/config-ix.cmake
+74-744 files not shown
+81-8110 files

NetBSD/pkgsrc RMfreUHdevel/py-line_profiler PLIST distinfo

   py-line_profiler: updated to 5.0.2

   5.0.2
   Type fix base
   Ruff format
   FIX: test for async-generator ref-counting behavior (un-)broken by 3.13.12 and 3.14.3
   FIX: building Linux-ARM64 wheels
VersionDeltaFile
1.11+2-17devel/py-line_profiler/PLIST
1.13+4-4devel/py-line_profiler/distinfo
1.24+2-2devel/py-line_profiler/Makefile
+8-233 files

LLVM/project b39247cllvm/lib/Target/AMDGPU AMDGPUAsmPrinter.cpp

[AMDGPU] Fix typo "PGRM" in variable name. NFC. (#184104)

DeltaFile
+4-4llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
+4-41 files

LLVM/project 4249347libsycl/include/sycl/__impl queue.hpp async_handler.hpp, libsycl/include/sycl/__impl/detail default_async_handler.hpp

[libsycl] Add sycl::queue stub

Signed-off-by: Tikhomirova, Kseniya <kseniya.tikhomirova at intel.com>
DeltaFile
+159-0libsycl/include/sycl/__impl/queue.hpp
+83-0libsycl/src/detail/queue_impl.hpp
+55-0libsycl/include/sycl/__impl/detail/default_async_handler.hpp
+36-0libsycl/src/queue.cpp
+33-0libsycl/include/sycl/__impl/async_handler.hpp
+33-0libsycl/include/sycl/__impl/property_list.hpp
+399-04 files not shown
+429-010 files

OpenBSD/ports s6dTawRx11/xfce4/xfce4-session distinfo Makefile

   x11/xfce4/xfce4-session: update to 4.20.4.

   see https://gitlab.xfce.org/xfce/xfce4-session/-/tags/xfce4-session-4.20.4

   startxfce4 now properly parses /etc/kbdtype to automagically set kbd
   layout in labwc when using wayland.
VersionDeltaFile
1.28+2-2x11/xfce4/xfce4-session/distinfo
1.103+1-2x11/xfce4/xfce4-session/Makefile
+3-42 files

NetBSD/pkgsrc dF1rOj6textproc/py-linkify-it-py distinfo Makefile

   py-linkify-it-py: updated to 2.1.0

   2.1.0

   - Drop support for EOL Python 3.7, 3.8
   - Drop support for EOL Python 3.9
   - Add support for Python 3.14
   - Migrate to OIDC trusted publishing for PyPI and TestPyPI
   - Add workflow permissions for security hardening
   - Bump GitHub Actions dependencies
VersionDeltaFile
1.3+4-4textproc/py-linkify-it-py/distinfo
1.5+3-4textproc/py-linkify-it-py/Makefile
+7-82 files

OpenBSD/ports HYIOFkrx11/xfce4/mousepad distinfo Makefile, x11/xfce4/mousepad/pkg PLIST

   x11/xfce4/mousepad: update to 0.7.0.

   see https://gitlab.xfce.org/apps/mousepad/-/tags/mousepad-0.7.0
VersionDeltaFile
1.27+2-2x11/xfce4/mousepad/distinfo
1.21+2-0x11/xfce4/mousepad/pkg/PLIST
1.67+1-1x11/xfce4/mousepad/Makefile
+5-33 files

NetBSD/pkgsrc nBosMQetextproc/treemd Makefile

   textproc/treemd: reneble xdg-utils
VersionDeltaFile
1.18+2-2textproc/treemd/Makefile
+2-21 files

OpenBSD/ports x2jClFXx11/xfce4/xfce4-panel distinfo Makefile

   x11/xfce4/xfce4-panel: update to 4.20.7.

   see https://gitlab.xfce.org/xfce/xfce4-panel/-/tags/xfce4-panel-4.20.7
VersionDeltaFile
1.48+2-2x11/xfce4/xfce4-panel/distinfo
1.105+1-1x11/xfce4/xfce4-panel/Makefile
+3-32 files

OpenBSD/ports lf8QuWBx11/xfce4/xfce4-settings Makefile distinfo

   x11/xfce4/xfce4-settings: update to 4.20.4.

   see https://gitlab.xfce.org/xfce/xfce4-settings/-/tags/xfce4-settings-4.20.4
VersionDeltaFile
1.74+2-2x11/xfce4/xfce4-settings/Makefile
1.38+2-2x11/xfce4/xfce4-settings/distinfo
+4-42 files

NetBSD/pkgsrc 0veq56Bdoc CHANGES-2026 TODO

   doc: Updated textproc/tree-sitter to 0.26.6
VersionDeltaFile
1.1501+2-1doc/CHANGES-2026
1.26887+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc NaznvuStextproc/tree-sitter distinfo Makefile

   tree-sitter: update to 0.26.6.

   What's Changed

       lib: clean up strict aliasing fixes in array.h by @tree-sitter-ci-bot[bot] in #5311
       feat: allow - in grammar names by @tree-sitter-ci-bot[bot] in #5318
       fix(cli): allow for both debug logs and graphs by @tree-sitter-ci-bot[bot] in #5319
       web: add default export to CJS bundle by @tree-sitter-ci-bot[bot] in #5323
       fix(query): prevent cross-branch capture contamination in alternations with quantifiers by @tree-sitter-ci-bot[bot] in #5320
       ci: speed it up by @WillLillis in #5325
       use provided by RedoxOS byte orders implementations by @tree-sitter-ci-bot[bot] in #5346
       build(deps): bump wasmtime to v36.0.5 LTS by @clason in #5351
       fix(lib): cast NULL in ts_subtree_children macro by @tree-sitter-ci-bot[bot] in #5353
       ci: backport release check workflow by @WillLillis in #5358
       ci: retrigger crates check on PR updates by @tree-sitter-ci-bot[bot] in #5361
       cli: init -u fixes by @WillLillis in #5367
       build(deps): bump wasmtime to v36.0.6 by @clason in #5370
       0.26.6 by @clason in #5372
VersionDeltaFile
1.27+4-4textproc/tree-sitter/distinfo
1.29+2-2textproc/tree-sitter/Makefile
+6-62 files

NetBSD/pkgsrc IEwF5tXdoc TODO CHANGES-2026

   doc: Updated textproc/tree-sitter-markdown to 0.5.3
VersionDeltaFile
1.26886+1-2doc/TODO
1.1500+2-1doc/CHANGES-2026
+3-32 files

NetBSD/pkgsrc jsGLrL4textproc/tree-sitter-markdown Makefile distinfo

   tree-sitter-markdown: update to 0.5.3.

   What's Changed

       fix: cmake --install by @podsvirov in #219
       fix: Correct typo to make "make install" work again by @heirecka in #220
       feat: Implement other cursor wrapper methods by @DanikVitek in #222
       fix: Allow ordered lists to start from any number by @Kafva in #226
       chore: regenerate parser and bindings with 0.26.6 by @clason in #228
       release v0.5.3 by @clason in #229
VersionDeltaFile
1.7+3-6textproc/tree-sitter-markdown/Makefile
1.7+4-4textproc/tree-sitter-markdown/distinfo
+7-102 files

NetBSD/pkgsrc vqG5WeCdoc CHANGES-2026

   Updated www/py-pook, devel/py-testtools
VersionDeltaFile
1.1499+3-4doc/CHANGES-2026
+3-41 files

FreeNAS/freenas cf9ad5ctests/api2 test_300_nfs.py test_200_ftp.py

rm bulk tests
DeltaFile
+0-2,224tests/api2/test_300_nfs.py
+0-1,411tests/api2/test_200_ftp.py
+0-936tests/api2/test_345_acl_nfs4.py
+0-700tests/api2/test_011_user.py
+0-565tests/api2/test_audit_websocket.py
+0-495tests/api2/test_440_snmp.py
+0-6,331257 files not shown
+0-32,794263 files

FreeNAS/freenas 552c437src/middlewared/middlewared/plugins/pool_ info.py

fix pool.get_disks (and subsequently CI)
DeltaFile
+8-6src/middlewared/middlewared/plugins/pool_/info.py
+8-61 files

NetBSD/pkgsrc qFRb2Qbdevel/py-testtools distinfo Makefile

   py-testtools: updated to 2.8.5

   2.8.5
   Unknown changes
VersionDeltaFile
1.23+4-4devel/py-testtools/distinfo
1.31+2-2devel/py-testtools/Makefile
+6-62 files

NetBSD/pkgsrc g3YEKgwdoc CHANGES-2026 TODO

   doc: Updated geography/libmaxminddb to 1.13.2
VersionDeltaFile
1.1498+2-1doc/CHANGES-2026
1.26885+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc CrXoCHqgeography/libmaxminddb distinfo Makefile

   ## 1.13.2 - 2026-02-25

   - Fixed a compilation failure on macOS 26 (Tahoe) where `sys/endian.h` defines
     `bswap32` and `bswap64` as macros, conflicting with our function declarations.
     Reported by Anton Melnikov. GitHub #419.

   ## 1.13.1 - 2026-02-24

   - Re-release for Ubuntu PPA. No code changes.

   ## 1.13.0 - 2026-02-24

   - `MMDB_get_entry_data_list()` now validates that the claimed array/map size is
     plausible given the remaining bytes in the data section. A crafted database
     could previously claim millions of array elements while only having a few
     bytes of data, causing disproportionate memory allocation (memory
     amplification DoS).
   - On Windows, `GetFileSize()` was replaced with `GetFileSizeEx()` to correctly
     handle files larger than 4GB. The previous code passed `NULL` for the high

    [48 lines not shown]
VersionDeltaFile
1.16+4-4geography/libmaxminddb/distinfo
1.17+2-2geography/libmaxminddb/Makefile
+6-62 files

NetBSD/pkgsrc vVGy807doc CHANGES-2026

   doc: Updated textproc/treemd to 0.5.8
VersionDeltaFile
1.1497+6-1doc/CHANGES-2026
+6-11 files

NetBSD/pkgsrc RYXk8spdoc CHANGES-2026 TODO

   doc: Updated textproc/moor to 2.11.0
VersionDeltaFile
1.1496+2-1doc/CHANGES-2026
1.26884+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc RnNibA5textproc/moor distinfo Makefile

   moor: update to 2.11.0.

   v2.11.0: Suspend on CTRL-z

   Also in this release, filtering is now faster, thanks to @plutonium-239
   in #387. Thanks!
VersionDeltaFile
1.21+4-4textproc/moor/distinfo
1.30+2-4textproc/moor/Makefile
+6-82 files