FreeBSD/ports 06b01a3www/librewolf Makefile

www/librewolf: Fix build on i386, improve port

- Fix build on i386 - use www/node24 on i386 and hande sse2.
- Unification of Makefile with Firefox - make it more similar.
- Use ${DESKTOPDIR} instead if ${PREFIX}/share/applications.

PR:     288107
MFH:    2025Q3
(cherry picked from commit 6f3a8ff37218c5200c8822de90577e95811c3a5e)
DeltaFile
+11-7www/librewolf/Makefile
+11-71 files

FreeBSD/ports 6f3a8ffwww/librewolf Makefile

www/librewolf: Fix build on i386, improve port

- Fix build on i386 - use www/node24 on i386 and hande sse2.
- Unification of Makefile with Firefox - make it more similar.
- Use ${DESKTOPDIR} instead if ${PREFIX}/share/applications.

PR:     288107
MFH:    2025Q3
DeltaFile
+11-7www/librewolf/Makefile
+11-71 files

FreeBSD/ports 750c25cnet/p5-URI Makefile

net/p5-URI: Update RUN_DEPENDS
DeltaFile
+3-0net/p5-URI/Makefile
+3-01 files

pfSense/pfsense 82db67fsrc/etc/inc filter.inc globals.inc, src/usr/local/pfSense/include/www firewall_nat_npt.inc firewall_nat_out.inc

Refactor rule labels. Implement #16325

- Define labels as key/value pairs.
- Add new functions to handle labels defined in config.xml rules.
- Support generating unique labels for pf rules from the respective
  config.xml rules when possible; namely NAT rules cannot have labels.

A max of 5 labels may be used in a pf rule; current code can include:
- rule identifier label
- schedule label
- gateway label
- description label
Refactor existing labels to match the KV pair structure and introduce a
new label for a list of comma-separated "rule tags". The current only use
of these tags is for hashing the generated ruleset.
DeltaFile
+459-211src/etc/inc/filter.inc
+21-0src/etc/inc/globals.inc
+4-0src/usr/local/pfSense/include/www/firewall_nat_npt.inc
+4-0src/usr/local/pfSense/include/www/firewall_nat_out.inc
+4-0src/usr/local/pfSense/include/www/firewall_nat.inc
+4-0src/usr/local/pfSense/include/www/firewall_nat_1to1.inc
+496-2116 files not shown
+503-21612 files

FreeBSD/ports 5f9347fwww/waterfox/files patch-libwebrtc-generated waterfox.desktop.in

www/waterfox: Update 6.5.9 => 6.6.0-beta-2

Changes:
Platform Changes (128.0 to 140.0)
https://www.waterfox.net/docs/releases/6.6.0-beta-1/
https://www.waterfox.net/docs/releases/6.6.0-beta-2/

Improve port:
- Fix build on i386 - use www/node24 on i386 and hande sse2.
- Unification of Makefile with Firefox - make it more similar.
- Use ${DESKTOPDIR} instead if ${PREFIX}/share/applications.

PR:     288283 288109
MFH:    2025Q3
(cherry picked from commit 46a4933e863e1da25fcbbe76718d11aedd094f4b)
DeltaFile
+24,251-13,144www/waterfox/files/patch-libwebrtc-generated
+218-0www/waterfox/files/waterfox.desktop.in
+0-131www/waterfox/files/patch-bug1559213
+0-104www/waterfox/files/patch-toolkit_components_processtools_procinfo__bsd.c
+31-50www/waterfox/files/patch-bug847568
+32-41www/waterfox/files/patch-third__party_libwebrtc_build_config_BUILDCONFIG.gn
+24,532-13,47011 files not shown
+24,675-13,60717 files

LLVM/project af3207bllvm/lib/Transforms/Scalar LoopDistribute.cpp, llvm/test/Transforms/LoopDistribute cross-partition-access.ll

[LoopDist] Add some runtime checks for cross partition loads

Emit safety guards for ptr accesses when cross partition
loads exist which have a corresponding store to the same
address in a different partition.  This will emit the
necessary ptr checks for these accesses.
DeltaFile
+159-0llvm/test/Transforms/LoopDistribute/cross-partition-access.ll
+15-0llvm/lib/Transforms/Scalar/LoopDistribute.cpp
+174-02 files

FreeBSD/ports 46a4933www/waterfox/files patch-libwebrtc-generated waterfox.desktop.in

www/waterfox: Update 6.5.9 => 6.6.0-beta-2

Changes:
Platform Changes (128.0 to 140.0)
https://www.waterfox.net/docs/releases/6.6.0-beta-1/
https://www.waterfox.net/docs/releases/6.6.0-beta-2/

Improve port:
- Fix build on i386 - use www/node24 on i386 and hande sse2.
- Unification of Makefile with Firefox - make it more similar.
- Use ${DESKTOPDIR} instead if ${PREFIX}/share/applications.

PR:     288283 288109
MFH:    2025Q3
DeltaFile
+24,251-13,144www/waterfox/files/patch-libwebrtc-generated
+218-0www/waterfox/files/waterfox.desktop.in
+0-131www/waterfox/files/patch-bug1559213
+0-104www/waterfox/files/patch-toolkit_components_processtools_procinfo__bsd.c
+31-50www/waterfox/files/patch-bug847568
+32-41www/waterfox/files/patch-third__party_libwebrtc_build_config_BUILDCONFIG.gn
+24,532-13,47011 files not shown
+24,675-13,60717 files

LLVM/project 68fd102lldb/source/Target StopInfo.cpp

[lldb] Use std::make_shared for StopInfoSP (#149612)

Use std::make_shared to create a StopInfoSP, which inherits from
shared_from_this. It's both the most efficient and safest way to create
these objects:

- With make_shared, the object and the control block are allocated
together, which is more efficient.
- With make_shared, the enable_shared_from_this base class is properly
linked to the control block before the constructor finishes, so
shared_from_this() will be safe to use (though still not recommended
during construction).
DeltaFile
+19-18lldb/source/Target/StopInfo.cpp
+19-181 files

LLVM/project 09bea21mlir/lib/Dialect/MemRef/IR MemRefOps.cpp

[mlir][memref] Simplify memref.copy canonicalization (#149506)

FoldCopyOfCast has both a OpRewritePattern implementation and a folder
implementation. This PR removes the OpRewritePattern implementation.
DeltaFile
+14-53mlir/lib/Dialect/MemRef/IR/MemRefOps.cpp
+14-531 files

LLVM/project 3b23fdelld/test/ELF keep-text-section-prefix.s

apply suggestions

Co-authored-by: Sam Elliott <quic_aelliott at quicinc.com>
DeltaFile
+1-1lld/test/ELF/keep-text-section-prefix.s
+1-11 files

LLVM/project 7c57b55lldb/test/Shell/Scripts TestFrameworkFixUnifdef.test

[lldb][scripts] Fix framework script unifdef test (#149607)

Fixes a test that's failing on LLDB GreenDragon due to a mistake in the
arguments used when calling the framework-header-fix script.
DeltaFile
+1-1lldb/test/Shell/Scripts/TestFrameworkFixUnifdef.test
+1-11 files

FreeNAS/freenas 4355c82tests/api2 test_261_iscsi_cmd.py test_nvmet_tcp.py, tests/sharing_protocols/fibre_channel test_fibre_channel.py

NAS-136781 / 25.10 / Shift iSCSI, nvmet, FC functional tests to sharing_protocols (#16788)

DeltaFile
+0-3,324tests/api2/test_261_iscsi_cmd.py
+3,324-0tests/sharing_protocols/iscsi/test_261_iscsi_cmd.py
+0-1,678tests/api2/test_nvmet_tcp.py
+1,678-0tests/sharing_protocols/nvmet/test_nvmet_tcp.py
+0-1,053tests/api2/test_fibre_channel.py
+1,053-0tests/sharing_protocols/fibre_channel/test_fibre_channel.py
+6,055-6,0555 files not shown
+7,012-7,01111 files

HardenedBSD/ports e518253Mk bsd.port.mk, ports-mgmt/pkg Makefile

HBSD: Resolve merge conflicts

Signed-off-by:  Shawn Webb <shawn.webb at hardenedbsd.org>
DeltaFile
+1-6Mk/bsd.port.mk
+1-5ports-mgmt/pkg/Makefile
+2-112 files

HardenedBSD/ports 5b52c60finance/odoo pkg-plist, finance/odoo15 pkg-plist

Merge remote-tracking branch 'origin/hardenedbsd/main' into shawn.webb/cross-dso-cfi/main

Conflicts:
        Mk/bsd.port.mk (unresolved)
        ports-mgmt/pkg/Makefile (unresolved)
DeltaFile
+98,851-0mail/thunderbird-esr/files/patch-libwebrtc-generated
+0-95,952www/tor-browser/files/patch-libwebrtc-generated
+48,353-0finance/odoo17/pkg-plist
+23,100-18,430security/wazuh-manager/pkg-plist
+22,956-17,374finance/odoo/pkg-plist
+0-38,884finance/odoo15/pkg-plist
+193,260-170,64055,734 files not shown
+1,758,617-1,343,77555,740 files

LLVM/project 4d21ee1llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll maximumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323685 files not shown
+64,048-34,474691 files

LLVM/project d892b83llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll minimumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

Address review comments.

Created using spr 1.3.6-beta.1
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323685 files not shown
+64,048-34,474691 files

LLVM/project 9592631llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll minimumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

Address review comments.

Created using spr 1.3.6-beta.1
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323685 files not shown
+64,048-34,474691 files

LLVM/project c9f6c5cllvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll maximumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323685 files not shown
+64,048-34,474691 files

LLVM/project df57b4fllvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll maximumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

Address review comments.

Created using spr 1.3.6-beta.1
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323685 files not shown
+64,048-34,474691 files

LLVM/project f1a4e6cllvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll minimumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323683 files not shown
+64,044-34,460689 files

LLVM/project 44d4463llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll minimumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

Address review comments.

Created using spr 1.3.6-beta.1
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323683 files not shown
+64,044-34,460689 files

LLVM/project 37e8d19llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll maximumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323683 files not shown
+64,044-34,460689 files

LLVM/project 6928996llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll maximumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

Address review comments.

Created using spr 1.3.6-beta.1
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323683 files not shown
+64,044-34,460689 files

LLVM/project 18b26b5llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll maximumnum.bf16.ll, llvm/test/MC/Disassembler/AMDGPU gfx1250_dasm_vop3_from_vop1.txt

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6-beta.1

[skip ci]
DeltaFile
+6,026-5,980llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/maximumnum.bf16.ll
+3,459-3,732llvm/test/CodeGen/AMDGPU/minimumnum.bf16.ll
+6,030-0llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
+2,831-2,715llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+4,247-164llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop3_from_vop1.txt
+26,052-16,323680 files not shown
+64,036-34,452686 files

Linux/linux 414aaefarch/riscv Kconfig, arch/riscv/include/asm uaccess.h

Merge tag 'riscv-for-linus-6.16-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux

Pull RISC-V fixes from Palmer Dabbelt:

 - Three fixes for unnecessary spew: an ACPI CPPC boot-time debug
   message, the link-time warnings for R_RISCV_NONE in binaries, and
   some compile-time warnings in __put_user_nocheck

 - A fix for a race during text patching

 - Interrupts are no longer disabled during exception handling

 - A fix for a missing sign extension in the misaligned load handler

 - A fix to avoid static ftrace being selected in Kconfig, as we have
   moved to dynamic ftrace

* tag 'riscv-for-linus-6.16-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux:
  riscv: uaccess: Fix -Wuninitialized and -Wshadow in __put_user_nocheck

    [6 lines not shown]
DeltaFile
+14-4arch/riscv/kernel/ftrace.c
+6-4arch/riscv/kernel/traps.c
+2-2arch/riscv/include/asm/uaccess.h
+3-1arch/riscv/tools/relocs_check.sh
+2-1arch/riscv/Kconfig
+1-1arch/riscv/kernel/traps_misaligned.c
+28-131 files not shown
+28-157 files

pfSense/pfsense ac89aedsrc/etc/inc filter.inc

Also check the pf config file when checking if a filter reload is needed

This serves to keep the pf config file in an expected state in case it was
modified by some other method.

Followup to d8f4932a4d91794c76a02c2fb0a8209a92fa478b
DeltaFile
+33-1src/etc/inc/filter.inc
+33-11 files

LLVM/project 7b5d8a0llvm/tools/llvm-profdata llvm-profdata.cpp

Revert "[NFC][profdata] Apply lints and other format fixes" (#149601)

Reverts llvm/llvm-project#149433

This broke the hwasan buildbot:
https://lab.llvm.org/buildbot/#/builders/55/builds/14455
DeltaFile
+62-58llvm/tools/llvm-profdata/llvm-profdata.cpp
+62-581 files

LLVM/project 23fa312llvm/tools/llvm-profdata llvm-profdata.cpp

Revert "[NFC][profdata] Apply lints and other format fixes (#149433)"

This reverts commit 4dc6dfd65397e65f62a453b65cd180639c3a8b9e.
DeltaFile
+62-58llvm/tools/llvm-profdata/llvm-profdata.cpp
+62-581 files

LLVM/project b9aa06fllvm/docs LangRef.rst

[llvm] Improve grammar and punctuation of LLVM Language Reference Manual (#149553)

DeltaFile
+24-24llvm/docs/LangRef.rst
+24-241 files

LLVM/project 28c1433llvm/lib/Transforms/Vectorize VPlanConstruction.cpp

[Vectorize] Fix a warning

This patch fixes:

  llvm/lib/Transforms/Vectorize/VPlanConstruction.cpp:726:13: error:
  unused variable 'RedPhiRK' [-Werror,-Wunused-variable]
DeltaFile
+1-0llvm/lib/Transforms/Vectorize/VPlanConstruction.cpp
+1-01 files