FreeBSD/ports 0c02363devel/perfetto Makefile distinfo

devel/perfetto: upgrade to 58.2
DeltaFile
+5-3devel/perfetto/distinfo
+2-1devel/perfetto/Makefile
+7-42 files

FreeBSD/ports a2f0a4ddatabases/py-harlequin-postgres Makefile distinfo

databases/py-harlequin-postgres: Update to 1.4.1

ChangeLog:

1. https://github.com/tconbeer/harlequin-postgres/releases/tag/v1.4.1

Reported by:    Ted Conbeer <notifications at github.com>
DeltaFile
+3-3databases/py-harlequin-postgres/distinfo
+1-1databases/py-harlequin-postgres/Makefile
+4-42 files

NetBSD/src TSuA3jxsys/dev/ic ct65550.c

   - support screen blanking
   - make sure we can map the whole fb at 0
VersionDeltaFile
1.16+25-10sys/dev/ic/ct65550.c
+25-101 files

FreeBSD/ports 4c16592databases/py-harlequin Makefile distinfo

databases/py-harlequin: Update to 2.12.2

ChangeLog:

1. https://github.com/tconbeer/harlequin/releases/tag/v2.12.2

Reported by:    Ted Conbeer <notifications at github.com>
DeltaFile
+3-3databases/py-harlequin/distinfo
+1-1databases/py-harlequin/Makefile
+4-42 files

LLVM/project b1d1dcdclang/lib/CodeGen CGExprScalar.cpp, clang/test/CodeGen compound-assign-atomic-fp-fallback.c compound-assign-atomic-fp.c

[Clang] Lower fp atomic compound assignments into atomicrmw (#216033)

This patch lowers fp atomic compound assignments into
atomicrmw when not in strictfp environment as
exception handling and status flags updates can be ignored. This should
improve final assembly.

Co-authored-by: Amina Chabane <amina.chabane at arm.com>
DeltaFile
+269-0clang/test/CodeGen/compound-assign-atomic-fp.c
+234-0clang/test/CodeGen/compound-assign-atomic-fp-fallback.c
+34-8clang/lib/CodeGen/CGExprScalar.cpp
+537-83 files

NetBSD/pkgsrc x0a61e4doc CHANGES-2026

   Updated devel/pcre2, devel/protobuf, devel/py-protobuf
VersionDeltaFile
1.5728+4-1doc/CHANGES-2026
+4-11 files

NetBSD/pkgsrc oeOiTo2devel/protobuf Makefile distinfo, devel/py-protobuf Makefile PLIST

   protobuf py-protobuf: updated to [7.]36.1

   36.1

   Rust

   Update README files for each crate. (e64a176)
   Include runtime version details in assertion error messages. (fecb404)
   Drop special treatment of rust versions below 4.33. (1312f3b)
   Invert the relationship between rust crates (fbf3069)

   Python

   Optimize pure Python parse path for custom JSON enum names. (333846a)
   Additional unit tests for Python handling of custom JSON enum names.
VersionDeltaFile
1.91+4-4devel/py-protobuf/distinfo
1.104+4-4devel/protobuf/distinfo
1.31+4-1devel/py-protobuf/PLIST
1.100+2-2devel/py-protobuf/Makefile
1.112+2-2devel/protobuf/Makefile
+16-135 files

LLVM/project dd1cb54clang/docs ReleaseNotes.md, clang/lib/Sema SemaAvailability.cpp

[Clang] Only omit deprecation warnings for implicit special members (#219177)

31db0f0a7ae isn't very correct because synthesized deduction guides are
also marked 'implicit', and it's supposed to apply to only
non-user-defined special members.

This patch corrects that behavior.

Fixes #160543
DeltaFile
+63-0clang/test/SemaCXX/implicit-special-member-deprecated.cpp
+0-24clang/test/Sema/implicit-special-member-deprecated.cpp
+3-6clang/lib/Sema/SemaAvailability.cpp
+3-0clang/docs/ReleaseNotes.md
+69-304 files

FreeBSD/ports 95c8b69databases/sabiql Makefile pkg-descr

databases/sabiql: Update to 3.0.0

- Update COMMENT and pkg-descr to include the new feature of sabiql:
  MySQL support

ChangeLog:

1. https://github.com/riii111/sabiql/releases/tag/v3.0.0

Reported by:    riii111 <notifications at github.com>
DeltaFile
+141-71databases/sabiql/distinfo
+69-34databases/sabiql/Makefile.crates
+7-5databases/sabiql/pkg-descr
+2-2databases/sabiql/Makefile
+219-1124 files

FreeBSD/src aa85e7asys/dev/ixgbe if_ix.c

ix(4): Sanitize negative error codes

Due to development history FreeBSD driver error codes are reported
the same way as in Linux (as negatives) which is inconsistent
with FreeBSD standard. It may cause unexpected behavior when driver
errors are interpreted by a kernel as syscall handler return values.
This patch converts error codes from negative to positive values for
NVM access functions.

Signed-off-by: Pawel Sobczyk <pawel.sobczyk at intel.com>

Reviewed by:    kbowling, erj, milosz.linkiewicz_intel.com
Tested by:      Mateusz Moga <mateusz.moga at intel.com>
Sponsored by:   Intel Corporation
Differential Revision:  https://reviews.freebsd.org/D57642

(cherry picked from commit 33e2eac3e3e738daa95a06f42d6c661b87ad9aac)
DeltaFile
+19-4sys/dev/ixgbe/if_ix.c
+19-41 files

FreeBSD/src 63e9ab9sys/dev/ixgbe ixgbe_e610.c

ix(4): Remove workaround for 2.5/5G speeds on E610

The problem observed on X550 adapters with 2.5 and 5 Gbps speeds
negotiation on some switches is not affecting E610 adapters.
Remove workaround, which omitted those speeds in the list
of initially advertised speeds and advertise all speeds
supported by adapter.

Signed-off-by: Krzysztof Galazka <krzysztof.galazka at intel.com>

Reviewed by:    kbowling
Tested by:      Mateusz Moga <mateusz.moga at intel.com>
Sponsored by:   Intel Corporation
Differential Revision:  https://reviews.freebsd.org/D57339

(cherry picked from commit 62d5d119ee7d935ac05966f1c7c4333c33c4f3a9)
DeltaFile
+12-23sys/dev/ixgbe/ixgbe_e610.c
+12-231 files

FreeBSD/src 793abbfsys/fs/tarfs tarfs_vfsops.c, usr.sbin/jail jail.8

tarfs: allow mounting inside jails

Reviewed by:    des
MFC after:      1 week
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58833

(cherry picked from commit ba99013a4464c2f3e8cc0a89c23d03810dc2d37e)
DeltaFile
+9-1usr.sbin/jail/jail.8
+1-1sys/fs/tarfs/tarfs_vfsops.c
+10-22 files

FreeBSD/src f659997libexec/rc/tests rc_subr_test.sh

rc_subr_test: ignore stderr in no_cycles test

nuageinit_user_data_script references 'firstboot_freebsd_update'
and 'firstboot_pkg_upgrade', which are from Ports. In a default
base system test without sysutils/firstboot-freebsd-update and
sysutils/firstboot-pkg-upgrade, rcorder will warn on "unknown
provisions" to stderr, but is otherwise harmless.

Reviewed by:    arrowd
Fixes:          16e47f317c4ce2be5fed530bf8a9af9f9bf55364
MFC after:      3 days
Sponsored by:   The FreeBSD Foundation

(cherry picked from commit 3c33729ce2f421e2a583f19f85a181968aa310de)
DeltaFile
+1-1libexec/rc/tests/rc_subr_test.sh
+1-11 files

FreeBSD/src 57bc966sys/fs/tarfs tarfs_vfsops.c

tarfs: remove PRIV_VFS_MOUNT_PERM check

The backing file is already opened successfully, so there is
no need to override the permissions.

Reviewed by:    des
MFC after:      1 week
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58832

(cherry picked from commit 4d524915233092d71b309b49d9743012cb05c11e)
DeltaFile
+0-5sys/fs/tarfs/tarfs_vfsops.c
+0-51 files

LLVM/project c1302daclang/include/clang/CIR/Dialect Passes.td, clang/lib/CIR/Dialect/Transforms CallConvLoweringPass.cpp

[CIR] Wire AMDGPU into the call-convention lowering pass
DeltaFile
+84-56clang/lib/CIR/Dialect/Transforms/CallConvLoweringPass.cpp
+105-0clang/test/CIR/Transforms/abi-lowering/amdgpu-scalars.cir
+6-2clang/test/CIR/CodeGenHIP/amdgcn-buffer-rsrc-type.hip
+4-2clang/lib/CIR/Lowering/CIRPasses.cpp
+3-1clang/include/clang/CIR/Dialect/Passes.td
+1-1clang/test/CIR/Transforms/abi-lowering/x86_64-lang-addrspace-nyi.cir
+203-621 files not shown
+204-637 files

FreeBSD/ports b765035lang/trealla-prolog distinfo Makefile

lang/trealla-prolog: update to 3.9.17
DeltaFile
+3-3lang/trealla-prolog/distinfo
+4-2lang/trealla-prolog/Makefile
+7-52 files

FreeBSD/ports 677e61bsecurity/hockeypuck Makefile distinfo

security/hockeypuck: upgrade to 2.4.1
DeltaFile
+3-3security/hockeypuck/distinfo
+1-2security/hockeypuck/Makefile
+4-52 files

FreeBSD/ports f768f64devel/py-lizard Makefile distinfo

devel/py-lizard: upgrade to 1.24.0
DeltaFile
+3-3devel/py-lizard/distinfo
+1-1devel/py-lizard/Makefile
+4-42 files

LLVM/project 0c83fe9llvm/lib/IR Verifier.cpp

Early null check.
DeltaFile
+8-6llvm/lib/IR/Verifier.cpp
+8-61 files

NetBSD/pkgsrc o4Jq5gOdevel/pcre2 PLIST Makefile

   pcre2: updated to 10.48

   10.48 31-August-2026

   This is a regular release, incorporating security fixes along with small
   improvements and fixes to library behaviour.

   Only changes to behaviour, changes to the API, and other significant changes
   are described here. Please see the ChangeLog and Git log for further details.

   As well as the tarball and Git tag for this release, there are detailed
   instructions for backporting security and correctness fixes, for the last
   five years of releases.

   * (Git change) Renamed the default development branch from master to main.

   * (Maintenance change) Added a five-year support lifecycle policy and
   publication of backport patches for security and high-severity fixes in older
   releases.

    [46 lines not shown]
VersionDeltaFile
1.30+4-4devel/pcre2/distinfo
1.33+2-2devel/pcre2/Makefile
1.14+2-1devel/pcre2/PLIST
+8-73 files

NetBSD/pkgsrc uzL7b7Lshells/standalone-tcsh Makefile, shells/static-tcsh Makefile

   *tcsh: Sanitise path settings.

   Avoids constant rebuilds when using bulk build tools.  While here apply
   some minor pkglint.  I tested all packages on NetBSD 11/amd64 apart from
   the install of the standalone-tcsh binary package due to read-only / in
   my build sandboxes.
VersionDeltaFile
1.44+3-6shells/standalone-tcsh/Makefile
1.19+6-2shells/tcsh/Makefile.common
1.18+2-4shells/static-tcsh/Makefile
+11-123 files

NetBSD/src Afg7zensys/dev/ic ct65550reg.h

   fix tpyo
VersionDeltaFile
1.4+29-31sys/dev/ic/ct65550reg.h
+29-311 files

FreeBSD/src fd35c63sys/dev/ice ice_drv_info.h

ice(4): Add two more 4-part IDs for E835 adapters

Two additional subdevice IDs were introduced
to distinguish between adapters with and without
manageability over USB support.

Signed-off-by: Krzysztof Galazka <krzysztof.galazka at intel.com>

Reviewed by:    erj
Tested by:      Mateusz Moga <mateusz.moga at intel.com>
Sponsored by:   Intel Corporation
Differential Revision:  https://reviews.freebsd.org/D57337

(cherry picked from commit f370d9e4d5844daa06d77e57236e03bd7c5f4ba1)
DeltaFile
+6-0sys/dev/ice/ice_drv_info.h
+6-01 files

LLVM/project 69dd741llvm/lib/Target/SPIRV SPIRVNonSemanticDebugHandler.cpp

[reviews] simplify code.
DeltaFile
+1-2llvm/lib/Target/SPIRV/SPIRVNonSemanticDebugHandler.cpp
+1-21 files

LLVM/project e935bd2llvm/include/llvm/Transforms/Vectorize LoopVectorize.h, llvm/lib/Transforms/Vectorize LoopVectorize.cpp

[LoopVectorize] Clear stale CycleAnalysis where BlockFrequencyInfo is requested (#220173)

The cost model requests BlockFrequencyInfo lazily, after runImpl has
simplified loops and possibly vectorized some of them. A CycleInfo
cached by an earlier pass then describes the original CFG, and
BlockFrequencyInfo asserts `Resolved >= Pred && "unhandled irreducible control flow"'.

Clear it at the request site, gated on the CFGChanged flag the pass
already uses to decide whether CFGAnalyses are preserved. This covers
loop simplification, which runs before the first loop is processed.

Fixes #218392, exposed by BlockFrequencyInfo migrating to CycleAnalysis.

Aided by Opus 5
DeltaFile
+35-0llvm/test/Transforms/LoopVectorize/bfi-stale-crash-loop-simplify.ll
+6-10llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+2-1llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
+43-113 files

FreeBSD/ports 892d7d9textproc/py-textual-fastdatatable Makefile distinfo

textproc/py-textual-fastdatatable: Update to 0.19.1

ChangeLog:

1. https://github.com/tconbeer/textual-fastdatatable/releases/tag/v0.19.1

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+3-3textproc/py-textual-fastdatatable/distinfo
+1-1textproc/py-textual-fastdatatable/Makefile
+4-42 files

LLVM/project 58371declang/lib/AST ItaniumMangle.cpp, clang/test/CodeGenCXX mangle-concept-template-param.cpp

[Clang] Fix a regression introduced by #216729. (#219998)

We have a very confusing NNS interface:

```cpp
NestedNameSpecifier() : NestedNameSpecifier(FlagKind::Invalid) {}
NestedNameSpecifier(std::nullopt_t) : StoredOrFlag(0) {}
```

That tripped me up (and that we probably should clean up)

On top of that we were lacking mangling tests for
concept template parameters.

We could use more but the goal of the PR is to address the regression.

Fixes #218820
DeltaFile
+28-0clang/test/CodeGenCXX/mangle-concept-template-param.cpp
+1-1clang/lib/AST/ItaniumMangle.cpp
+29-12 files

LLVM/project 9a6b0cellvm/test/CodeGen/SPIRV/debug-info debug-typedef-namespace-scope.ll debug-lexical-block-namespace-in-block.ll

Add missing tests.
DeltaFile
+51-0llvm/test/CodeGen/SPIRV/debug-info/debug-lexical-block-namespace-in-block.ll
+26-0llvm/test/CodeGen/SPIRV/debug-info/debug-typedef-namespace-scope.ll
+77-02 files

FreeBSD/ports 119ff68audio/flacon distinfo Makefile, audio/flacon/files patch-tests_tools.cpp

audio/flacon: update the port to version 12.0.0

- Fix test data so it matches modern MediaInfo(Lib)
- Ensure that build log would contain tests results
  if they fail

Reported by:    portscout
DeltaFile
+18-5audio/flacon/Makefile
+11-0audio/flacon/files/patch-tests_tools.cpp
+3-3audio/flacon/distinfo
+32-83 files

FreeBSD/ports f262d85net/frr10 Makefile distinfo

net/frr10: update to 10.7.1
DeltaFile
+3-3net/frr10/distinfo
+1-1net/frr10/Makefile
+4-42 files