FreeBSD/ports f48a983databases/goose distinfo Makefile

databases/goose: update 3.27.0 → 3.27.1
DeltaFile
+5-5databases/goose/distinfo
+1-2databases/goose/Makefile
+6-72 files

FreeBSD/ports 9f0518cdatabases/diesel distinfo Makefile

databases/diesel: update 2.3.7 → 2.3.8
DeltaFile
+143-137databases/diesel/distinfo
+72-70databases/diesel/Makefile
+215-2072 files

FreeBSD/ports 39a0480sysutils/mise distinfo Makefile

sysutils/mise: update 2026.4.19 → 2026.4.20
DeltaFile
+3-3sysutils/mise/distinfo
+1-1sysutils/mise/Makefile
+4-42 files

FreeBSD/ports f685a97misc/lean-ctx distinfo Makefile

misc/lean-ctx: update 3.3.6 → 3.4.1
DeltaFile
+3-3misc/lean-ctx/distinfo
+1-1misc/lean-ctx/Makefile
+4-42 files

FreeBSD/ports 5d88fc9devel/py-spy distinfo Makefile

devel/py-spy: update 0.4.1 → 0.4.2
DeltaFile
+295-327devel/py-spy/distinfo
+148-164devel/py-spy/Makefile
+443-4912 files

FreeBSD/ports 55d0734misc/openclaw distinfo Makefile, misc/openclaw/files package-lock.json

misc/openclaw: update 2026.4.23 → 2026.4.24
DeltaFile
+80-781misc/openclaw/files/package-lock.json
+3-3misc/openclaw/distinfo
+2-2misc/openclaw/Makefile
+85-7863 files

LLVM/project 486e97aclang/include/clang/Sema Initialization.h

[clang][NFC] Fix typo in HLSL initialization comment (#194124)
DeltaFile
+1-1clang/include/clang/Sema/Initialization.h
+1-11 files

LLVM/project b5471ccllvm/lib/MC MCObjectStreamer.cpp, llvm/test/MC/AsmParser directive_fill.s

[MC] Always lower .fill to MCFillFragment (#194164)

Constant-count, constant-pattern .fill expands inline into the current
fragment via emitIntValue per byte, wasting both memory and time (a
redundant copy at MCAssembler.cpp). #50974 reports a 4s compile dropping
to 0.6s when the loop is removed.

Drop the inline path so .fill always becomes MCFillFragment.
This cannot be done before commit 507efbcce03d (2023) allowed
label differences to be separated by a MCFillFragment.

In directive_fill.s, the parse time warning is now diagnosed by
MCAssembler.
DeltaFile
+5-16llvm/lib/MC/MCObjectStreamer.cpp
+1-1llvm/test/MC/AsmParser/directive_fill.s
+6-172 files

LLVM/project 4c7dc9clibc/src/__support/FPUtil BasicOperations.h, libc/src/__support/math CMakeLists.txt fmaximum_mag_numbf16.h

Reland "[libc][math] Refactor fmaximum_mag_num family to header-only" (#194194)

Reland #182169

---------

Co-authored-by: Muhammad Bassiouni <60100307+bassiounix at users.noreply.github.com>
DeltaFile
+47-2utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+30-0libc/src/__support/math/CMakeLists.txt
+20-7libc/src/__support/FPUtil/BasicOperations.h
+26-0libc/src/__support/math/fmaximum_mag_numbf16.h
+25-0libc/src/__support/math/fmaximum_mag_num.h
+25-0libc/src/__support/math/fmaximum_mag_numf.h
+173-911 files not shown
+272-3017 files

GhostBSD/ghostbsd 096f3d7sys/conf package-version

bump version to 26.2-R15.1a1
DeltaFile
+1-1sys/conf/package-version
+1-11 files

FreeBSD/ports 5a1588fsecurity/openssh-portable/files patch-session.c extra-patch-tcpwrappers

security/openssh-portable: Sync some files with src.

Namely this updates some LIBWRAP behavior and updates a few incorrect
docs.

Submitted by:   jlduran
Differential Revision:  https://reviews.freebsd.org/D53273
DeltaFile
+74-43security/openssh-portable/files/patch-session.c
+70-0security/openssh-portable/files/extra-patch-tcpwrappers
+24-24security/openssh-portable/files/patch-sshd.c
+0-13security/openssh-portable/files/patch-ssh_config.5
+5-5security/openssh-portable/files/patch-ssh.c
+4-4security/openssh-portable/files/patch-ssh-agent.c
+177-895 files not shown
+187-9811 files

FreeBSD/ports fad4f7d. UPDATING, security/openssh-portable Makefile

security/openssh-portable: Fix PermitRootLogin default to "no"

This matches what is reported in pkg-message.

PR:             267170
Reported by:    SimpleRezo
DeltaFile
+14-5security/openssh-portable/files/patch-servconf.c
+14-5security/openssh-portable/files/patch-sshd_config.5
+4-2UPDATING
+1-1security/openssh-portable/Makefile
+33-134 files

LLVM/project de7c63ellvm/tools/llvm-profgen PerfReader.cpp ProfileGenerator.cpp

[llvm-profgen] Add --time-profgen (#191930)

Add `NamedRegionTimer`s to main profgen phases:
- Parse and aggregate trace (`parseAndAggregateTrace`)
- Unwind samples (`unwindSamples`)
- Generate profile (`ProfileGenerator::generateProfile`)
- Generate CS profile (`CSProfileGenerator::generateProfile`)

Test Plan:
```
$ llvm-profgen --time-profgen ...

===-------------------------------------------------------------------------===
                                  llvm-profgen
===-------------------------------------------------------------------------===
  Total Execution Time: 2826.6549 seconds (2873.3410 wall clock)

   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
  1059.4929 ( 38.1%)   8.5146 ( 17.3%)  1068.0075 ( 37.8%)  1090.6604 ( 38.0%)  Generate CS profile

    [3 lines not shown]
DeltaFile
+11-0llvm/tools/llvm-profgen/PerfReader.cpp
+5-0llvm/tools/llvm-profgen/ProfileGenerator.cpp
+1-0llvm/tools/llvm-profgen/Options.h
+17-03 files

LLVM/project 75b450fbolt/test/X86 pre-aggregated-records.s, bolt/test/X86/Inputs pre-aggregated-bad-hex.txt pre-aggregated-bad-type.txt

[BOLT] Add tests for pre-aggregated parsing (#193843)

Extends e2e coverage of pre-aggregated profile parsing to match the
unit-test coverage added in #192390:

- R (Return) records, including the branch=0 fallback path that
  rewrites to the FT_EXTERNAL_RETURN sentinel.
- r (FT_EXTERNAL_RETURN) records.
- B and T records using the negative -1 hex form (#192391),
  which is parsed as the BR_ONLY/FT_ONLY sentinel.
- Error paths: invalid record type letter and malformed hex address
  (perf2bolt is expected to exit non-zero with a parser error).

The two error-path inputs are tiny raw files under Inputs/ since they
contain intentionally malformed records that link_fdata doesn't process.

Test Plan:
added bolt/test/X86/pre-aggregated-records.s
DeltaFile
+60-0bolt/test/X86/pre-aggregated-records.s
+1-0bolt/test/X86/Inputs/pre-aggregated-bad-hex.txt
+1-0bolt/test/X86/Inputs/pre-aggregated-bad-type.txt
+62-03 files

LLVM/project 71816eflibc/src/__support/FPUtil/generic add_sub.h, libc/src/__support/math fdimf.h fdimf16.h

[libc][math] Qualify fdim funtions to constexpr (#194137)

Signed-off-by: udaykiriti <udaykiriti624 at gmail.com>
Co-authored-by: Muhammad Bassiouni <60100307+bassiounix at users.noreply.github.com>
DeltaFile
+8-0libc/test/shared/shared_math_constexpr_test.cpp
+5-1libc/src/__support/FPUtil/generic/add_sub.h
+6-0libc/test/shared/CMakeLists.txt
+3-1libc/src/__support/math/fdimf.h
+3-1libc/src/__support/math/fdimf16.h
+3-1libc/src/__support/math/fdim.h
+28-44 files not shown
+32-810 files

LLVM/project 24f4629lldb/test/API/commands/thread/backtrace TestThreadBacktraceRepeat.py

[lldb][test] Use assertIn in TestThreadBacktraceRepeat.py (NFC) (#194193)

I broke this test locally, and fixed the assets to produce more useful
output upon failure.
DeltaFile
+7-8lldb/test/API/commands/thread/backtrace/TestThreadBacktraceRepeat.py
+7-81 files

LLVM/project 13e7958llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

rebase

Created using spr 1.3.4
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-05,383 files not shown
+1,085,016-125,6375,389 files

LLVM/project e55f02fllvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.4

[skip ci]
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-05,383 files not shown
+1,085,016-125,6375,389 files

FreeBSD/ports 66b60f9security/sequoia-chameleon-gnupg distinfo Makefile.crates

security/sequoia-chameleon-gnupg: update openssl crates

...for LibreSSL 4.3 compatibility
DeltaFile
+5-5security/sequoia-chameleon-gnupg/distinfo
+2-2security/sequoia-chameleon-gnupg/Makefile.crates
+7-72 files

FreeBSD/ports ae1ac90security/sequoia-sq distinfo Makefile.crates

security/sequoia-sq: update openssl crates

...for LibreSSL 4.3 compatibility
DeltaFile
+5-5security/sequoia-sq/distinfo
+2-2security/sequoia-sq/Makefile.crates
+7-72 files

LLVM/project 46154febolt/docs profiles.md, bolt/lib/Profile DataReader.cpp DataAggregator.cpp

[BOLT] Support negative hex in pre-aggregated profile (#192391)

Handle signed values in parseHexField by falling back to int64_t parsing
when uint64_t fails. This allows pre-aggregated profile tools to use -1
for BR_ONLY, -2 for FT_EXTERNAL_ORIGIN, -3 for FT_EXTERNAL_RETURN.

Guard the external address reset loop in parseAggregatedLBREntry to
preserve sentinel values (offsets >= FT_EXTERNAL_RETURN).

Add tests for -1/-2/-3 in parseHexField and T entries with -1,
ffffffffffffffff, and buildid:-1 as BR_ONLY.
DeltaFile
+44-6bolt/docs/profiles.md
+40-0bolt/unittests/Profile/DataAggregator.cpp
+8-3bolt/lib/Profile/DataReader.cpp
+4-2bolt/lib/Profile/DataAggregator.cpp
+96-114 files

NetBSD/pkgsrc Q13fFOhdoc CHANGES-2026

   doc: Updated geography/proj to 9.8.1
VersionDeltaFile
1.2575+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc FVpl95sgeography/proj Makefile

   geography/proj: Update to 9.8.1

   (Actually, the update was committed with the gdal update by mistake.
   This commit adds a comment to proj's Makefile and documents the
   update.)

   Upstream NEWS, less minor fixes:

   ## 9.8.1

   ### Warning

   It was discovered after the PROJ 9.8.0 release that several EPSG updates introduced
   after EPSG v12.033 - notably the introduction of national realizations of ETRS89
   (ETRS89-XXX […] where XXX is the 3-letter ISO country code) - caused backward
   incompatibilities in some workflows involving the ETRS89 CRS.

   In particular, transformations between ETRS89 and national CRSs based on other
   datums are known to be affected for Austria, Belgium, Catalonia, the Netherlands,

    [21 lines not shown]
VersionDeltaFile
1.67+4-1geography/proj/Makefile
+4-11 files

FreeBSD/ports 49eee6amath/mpir Makefile distinfo

math/mpir: Fix upstream site

Apparently, the old domain no longer belongs to the upstream.
However, the source code is available on GitHub.

While here pet portclippy.

PR:             294784
Approved by:    wen (maintainer)
Sponsored by:   UNIS Labs
MFH:            2026Q2

(cherry picked from commit 4446355417e101af1680a69aab8a181b90faa664)
DeltaFile
+11-7math/mpir/Makefile
+3-3math/mpir/distinfo
+14-102 files

FreeBSD/ports 4446355math/mpir Makefile distinfo

math/mpir: Fix upstream site

Apparently, the old domain no longer belongs to the upstream.
However, the source code is available on GitHub.

While here pet portclippy.

PR:             294784
Approved by:    wen (maintainer)
Sponsored by:   UNIS Labs
MFH:            2026Q2
DeltaFile
+11-7math/mpir/Makefile
+3-3math/mpir/distinfo
+14-102 files

LLVM/project 53f7610llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

rebase

Created using spr 1.3.4
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-05,382 files not shown
+1,084,972-125,6315,388 files

LLVM/project 2954251llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.4

[skip ci]
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-05,382 files not shown
+1,084,972-125,6315,388 files

LLVM/project cd2cf73bolt/include/bolt/Profile DataAggregator.h, bolt/unittests/Profile DataAggregator.cpp

[BOLT] Add unit tests for pre-aggregated profile parsing (#192390)

Add PreAggregatedTestHelper fixture with friend access to DataAggregator
internals. Add tests for parseHexField and all pre-aggregated entry
types (B, F, f, r, T, R).
DeltaFile
+198-2bolt/unittests/Profile/DataAggregator.cpp
+1-0bolt/include/bolt/Profile/DataAggregator.h
+199-22 files

NetBSD/pkgsrc U5VQAUageography/gdal-lib Makefile

   geography/gdal-lib: Reset PKGREVISION after update.
VersionDeltaFile
1.199+2-2geography/gdal-lib/Makefile
+2-21 files

FreeBSD/ports ec86265archivers/minizip-ng Makefile distinfo, archivers/minizip-ng/files patch-CMakeLists.txt

archivers/minizip-ng: Update 4.1.1 => 4.1.2

Changelog:
https://github.com/zlib-ng/minizip-ng/releases/tag/4.1.2

Sponsored by:   UNIS Labs
DeltaFile
+6-5archivers/minizip-ng/Makefile
+0-10archivers/minizip-ng/files/patch-CMakeLists.txt
+3-3archivers/minizip-ng/distinfo
+3-2archivers/minizip-ng/pkg-plist
+12-204 files