LLVM/project f091be6llvm/lib/ExecutionEngine/Orc/Shared CMakeLists.txt, llvm/lib/ExecutionEngine/Orc/TargetProcess CMakeLists.txt

[ORC] Fixed incorrect additional header dirs (#175193)

The CMake ADDITIONAL_HEADER_DIRS directive for two Orc libraries,
specifically Shared and TargetProcess, used incorrect values that
pointed to its parent library include directory instead of its own. This
is now fixed.
DeltaFile
+2-1llvm/lib/ExecutionEngine/Orc/Shared/CMakeLists.txt
+1-1llvm/lib/ExecutionEngine/Orc/TargetProcess/CMakeLists.txt
+3-22 files

LLVM/project bc51c9dlibc/src/__support/math log.h log_range_reduction.h, libc/src/math/generic log.cpp log_range_reduction.h

[libc][math] Refactor log to header-only shared math (#175395)

Refactors log to a header-only shared math implementation.

Fixes #175369
DeltaFile
+861-0libc/src/__support/math/log.h
+2-836libc/src/math/generic/log.cpp
+98-0libc/src/__support/math/log_range_reduction.h
+0-94libc/src/math/generic/log_range_reduction.h
+22-14utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+27-0libc/src/__support/math/CMakeLists.txt
+1,010-9447 files not shown
+1,044-96813 files

FreeBSD/src e3bfcf6. RELNOTES

RELNOTES: Add some entries from the past several weeks

Reviewed by:    emaste
Differential Revision:  https://reviews.freebsd.org/D54628
DeltaFile
+32-0RELNOTES
+32-01 files

NetBSD/src ohcf3kVusr.sbin/sunlabel sunlabel.8

   sunlabel: document partition map line printed by the 'P' command

   The interactive 'P' command prints the partition table and
   also emits a simple textual map of the partition layout
   (e.g., a line of 'a' when the whole disk is covered by partition a).
   Mention this additional output in the man page to avoid confusion.
VersionDeltaFile
1.10+12-2usr.sbin/sunlabel/sunlabel.8
+12-21 files

FreeNAS/freenas 93a0c2esrc/middlewared/middlewared/plugins/interface/netif_linux ethernet_settings.py, src/middlewared/middlewared/plugins/interface/netif_linux/ethtool netlink.py constants.py

NAS-139244 / 25.10.2 / fix mem leak in netif library (#17996)

DeltaFile
+478-0src/middlewared/middlewared/plugins/interface/netif_linux/ethtool/netlink.py
+52-76src/middlewared/middlewared/plugins/interface/netif_linux/ethernet_settings.py
+56-0src/middlewared/middlewared/plugins/interface/netif_linux/ethtool/constants.py
+25-0src/middlewared/middlewared/plugins/interface/netif_linux/ethtool/__init__.py
+611-764 files

FreeBSD/src b558c92release Makefile.ec2

EC2: Add extra SSM Parameter names for releases

Record releases in the SSM Parameter Store not just as e.g.
  /aws/service/freebsd/arm64/small/ufs/15.0/RELEASE
but also as .../RELEASE/latest, e.g.
  /aws/service/freebsd/arm64/small/ufs/15.0/RELEASE/latest

The latter parameters will be updated when new AMIs are built with
security and errata updates appplied, and have been backfilled for
15.0.

MFC after:      3 days
MFC to:         stable/15 (14.x will not get security-update AMIs)
Sponsored by:   Amazon
DeltaFile
+5-1release/Makefile.ec2
+5-11 files

NetBSD/src HFLrKHlexternal/cddl/dtracetoolkit/dist execsnoop

   execsnoop: remove -J and trailing whitespace

   -J is for jails, since this comes from FreeBSD; however it broke
   -a|-A.
VersionDeltaFile
1.2+18-27external/cddl/dtracetoolkit/dist/execsnoop
+18-271 files

FreeBSD/ports 34113f4net/bsdec2-image-upload distinfo Makefile

net/bsdec2-image-upload: Update to 1.4.10

This adds a --ssm-name-extra option which will be used in src shortly.

Sponsored by:   Amazon
DeltaFile
+3-3net/bsdec2-image-upload/distinfo
+1-1net/bsdec2-image-upload/Makefile
+4-42 files

NetBSD/src noFpJEqtools/compat compat_defs.h

   fix braino
VersionDeltaFile
1.133+7-7tools/compat/compat_defs.h
+7-71 files

NetBSD/pkgsrc XRC8O4Onet/mDNSResponder builtin.mk

   mDNSResponder: put detected mDNSResponder version into MAKEVARS

   Avoids having to recompute this if this file is included via multiple
   paths.
VersionDeltaFile
1.15+2-1net/mDNSResponder/builtin.mk
+2-11 files

FreeBSD/ports f3686e4www/firefox-esr Makefile, www/firefox-esr/files patch-bug1962139-c27-ffmpeg8

www/firefox-esr: make legacy firefox compatible with current ffmpeg

Import patch from upstream
  https://bugzilla.mozilla.org/show_bug.cgi?id=1962139

PR:                             291974
Reported By:    Yusuf Yaman

(cherry picked from commit e7234a76a58bc02514fe14534753fab0debe7958)
DeltaFile
+15,936-0www/firefox-esr/files/patch-bug1962139-c27-ffmpeg8
+1-0www/firefox-esr/Makefile
+15,937-02 files

FreeBSD/ports e7234a7www/firefox-esr Makefile, www/firefox-esr/files patch-bug1962139-c27-ffmpeg8

www/firefox-esr: make legacy firefox compatible with current ffmpeg

Import patch from upstream
  https://bugzilla.mozilla.org/show_bug.cgi?id=1962139

PR:                             291974
Reported By:    Yusuf Yaman
DeltaFile
+15,936-0www/firefox-esr/files/patch-bug1962139-c27-ffmpeg8
+1-1www/firefox-esr/Makefile
+15,937-12 files

LLVM/project c726fffllvm/lib/Transforms/InstCombine InstCombineAndOrXor.cpp, llvm/test/Transforms/InstCombine and.ll binop-cast.ll

[InstCombine][profcheck] Add unknown branch weights to selects created in InstCombineAndOrXor.cpp (#175269)

These select instructions were created from combinations of bitwise
operators which have no branch weight information.

Tracking issue: #147390
DeltaFile
+30-19llvm/test/Transforms/InstCombine/and.ll
+27-20llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
+19-11llvm/test/Transforms/InstCombine/binop-cast.ll
+11-3llvm/test/Transforms/InstCombine/sub-ashr-or-to-icmp-select.ll
+9-3llvm/test/Transforms/InstCombine/conditional-negation.ll
+9-3llvm/test/Transforms/InstCombine/xor-ashr.ll
+105-591 files not shown
+105-707 files

FreeBSD/ports 2107143games/corsix-th distinfo Makefile

games/corsix-th: Update to 0.69.2
DeltaFile
+3-3games/corsix-th/distinfo
+1-2games/corsix-th/Makefile
+4-52 files

FreeBSD/ports 13f7435mail/mailpit distinfo Makefile

mail/mailpit: Update to 1.28.2

MFH:            2025Q4
Security:       https://www.vuxml.org/freebsd/d822839e-ee4f-11f0-b53e-0897988a1c07.html
(cherry picked from commit edbf5446fb2de4498ce3667ef89f02d39a2fb45c)
DeltaFile
+7-7mail/mailpit/distinfo
+1-1mail/mailpit/Makefile
+8-82 files

LLVM/project 2f7e218llvm/lib/Transforms/Vectorize VPlanUtils.cpp, llvm/test/Transforms/LoopVectorize/AArch64 induction-costs.ll

[VPlan] Add missing sext(sub) SCEV fold to getSCEVExprForVPValue.

SCEV has a manual fold when doing SCEV construction from IR, that is not
integrated in the regular SCEV construction functions. Mirror the
behavior in getSCEVExprForVPValue, to match results when constructing
SCEVs from IR.

Fixes https://github.com/llvm/llvm-project/issues/174622.
DeltaFile
+255-0llvm/test/Transforms/LoopVectorize/AArch64/induction-costs.ll
+69-0llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
+324-02 files

FreeBSD/ports edbf544mail/mailpit distinfo Makefile

mail/mailpit: Update to 1.28.2

MFH:            2025Q4
Security:       https://www.vuxml.org/freebsd/d822839e-ee4f-11f0-b53e-0897988a1c07.html
DeltaFile
+7-7mail/mailpit/distinfo
+1-1mail/mailpit/Makefile
+8-82 files

FreeNAS/freenas b645d7csrc/middlewared/middlewared/plugins sysdataset.py

Fix
DeltaFile
+9-6src/middlewared/middlewared/plugins/sysdataset.py
+9-61 files

FreeBSD/ports aff412abiology/sra-tools Makefile

biology/sra-tools: Unbreak with extra JDK present

Cmake find_package(Java) uses the latest version found, and plist
varies depending on the version used.  Set JAVE_HOME to limit
cmake's search to the version specified in the port.  This is the
only way to control find_package() for Java versions.
DeltaFile
+3-1biology/sra-tools/Makefile
+3-11 files

FreeBSD/ports f1d1dd1net/py-bonsai Makefile distinfo, net/py-bonsai/files patch-pyproject.toml

net/py-bonsai: Update 1.5.3 => 1.5.4

Changelog:
https://github.com/noirello/bonsai/blob/v1.5.4/CHANGELOG.rst

Switch to pep.

PR:             292302
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
DeltaFile
+11-5net/py-bonsai/Makefile
+12-0net/py-bonsai/files/patch-pyproject.toml
+3-3net/py-bonsai/distinfo
+26-83 files

OpenBSD/ports TYzfuotx11/kde-applications/libkdcraw distinfo

   Fix libkdcraw-kf5-25.12.1 distinfo
VersionDeltaFile
1.53+2-2x11/kde-applications/libkdcraw/distinfo
+2-21 files

OpenBSD/ports smt6cvpdevel/quirks Makefile, devel/quirks/files Quirks.pm

   Revert libkdcraw change

   We still need libkdcraw-kf5 for krita
VersionDeltaFile
1.1780+1-2devel/quirks/files/Quirks.pm
1.1768+1-1devel/quirks/Makefile
1.3+0-2x11/kde-applications/kf6-libkdcraw/pkg/PLIST
1.107+1-0x11/kde-applications/Makefile
1.3+1-0x11/kde-applications/kf6-libkdcraw/Makefile
+4-55 files

LLVM/project fbad7d8llvm/lib/Analysis ValueTracking.cpp, llvm/test/Transforms/Attributor nofpclass.ll

ValueTracking: Fix handling of fadd with mixed denormal modes

Fix case where the input mode is IEEE, the output flushes, and the
input could be subnormal. Also improves accuracy with positive zero
case.
DeltaFile
+45-1llvm/test/Transforms/Attributor/nofpclass.ll
+4-1llvm/lib/Analysis/ValueTracking.cpp
+49-22 files

NetBSD/pkgsrc zoB14ekdoc CHANGES-2026

   doc: Updated geography/viking to 1.11
VersionDeltaFile
1.245+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 866GdNwgeography/viking PLIST Makefile

   geography/viking: Update to 1.11

   Viking 1.11 (2026-01-11)

   New features since 1.10
     * Return to OpenStreetMap (https://openstreet.org) as the Map Default.
     ** Raster tiles from https://opentopomap.org is depreciated.
     * Read support of Garmin .FIT files.
     * SF Features#135: Support Georef layer image rotation.
     * SF Features#151: Enable visual status indicator of each tile cache.
     * More support for GPX fields: URL/Link properties.
     * Support reading as much information as read in from invalid GPX files (rather than just giving up).
     * More support for KML properties: snippet, track color, name and description.
     * New TAC analysis for consecutive squares in linear directions.
     * Support daylight times and basic astronomical data using libnova.
     * Support Waypoint proximity alarms.
     * GPX Lap support read only display output in tooltips and a table view.
     * Github #148: Allow horizontal scroll on preferences.
     * GitHub #152: GeoRef Zoomed in image fast redraw.

    [22 lines not shown]
VersionDeltaFile
1.15+10-1geography/viking/PLIST
1.160+8-3geography/viking/Makefile
1.34+4-4geography/viking/distinfo
+22-83 files

FreeBSD/ports c6fdb1dmail/mlmmj distinfo Makefile

mail/mlmmj: update to 1.7.0
DeltaFile
+3-3mail/mlmmj/distinfo
+2-2mail/mlmmj/Makefile
+5-52 files

NetBSD/pkgsrc DUbLNzRpkgtools/varcache Makefile

   varcache: cache endian information
VersionDeltaFile
1.3+3-1pkgtools/varcache/Makefile
+3-11 files

FreeNAS/freenas 6842e27src/middlewared/middlewared/plugins/interface/netif_linux ethernet_settings.py, src/middlewared/middlewared/plugins/interface/netif_linux/ethtool netlink.py constants.py

fix mem leak in netif library
DeltaFile
+478-0src/middlewared/middlewared/plugins/interface/netif_linux/ethtool/netlink.py
+52-76src/middlewared/middlewared/plugins/interface/netif_linux/ethernet_settings.py
+56-0src/middlewared/middlewared/plugins/interface/netif_linux/ethtool/constants.py
+25-0src/middlewared/middlewared/plugins/interface/netif_linux/ethtool/__init__.py
+611-764 files

NetBSD/src bMNZ7Tmtools/compat compat_defs.h configure

   tools/compat: Warning fixes for linux cross-builds.

   pointed out by skrll.
VersionDeltaFile
1.132+25-19tools/compat/compat_defs.h
1.112+14-0tools/compat/configure
1.114+4-3tools/compat/configure.ac
1.63+6-0tools/compat/nbtool_config.h.in
+49-224 files

FreeNAS/freenas d5436cdsrc/middlewared/middlewared/plugins sysdataset.py, src/middlewared/middlewared/utils mount.py

Fix
DeltaFile
+29-41src/middlewared/middlewared/plugins/sysdataset.py
+47-1src/middlewared/middlewared/utils/mount.py
+76-422 files