NetBSD/pkgsrc 1yTStVIdevel/nss Makefile

   nss: try fixing Darwin build

   based on homebrew formula
VersionDeltaFile
1.302+3-1devel/nss/Makefile
+3-11 files

NetBSD/pkgsrc u2I6QSPdoc CHANGES-2026

   Note update of sysutils/dusage to 0.4.0nb1.
VersionDeltaFile
1.5649+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc j4BJoCIsysutils/dusage distinfo Makefile, sysutils/dusage/patches patch-src_stats.rs

   sysutils/dusage: fix build on ILP32 targets by adding an .into().

   Bump PKGREVISION.
VersionDeltaFile
1.1+13-0sysutils/dusage/patches/patch-src_stats.rs
1.12+2-1sysutils/dusage/distinfo
1.13+2-1sysutils/dusage/Makefile
+17-23 files

NetBSD/pkgsrc uIa4UpKdoc CHANGES-2026

   doc: Updated time/p5-DateTime-Locale to 1.46
VersionDeltaFile
1.5648+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc x5ksyottime/p5-DateTime-Locale Makefile distinfo

   p5-DateTime-Locale: update to 1.46.

   1.46     2026-08-25

   - Rebuilt all locale data with the data from CLDR 48.2.0
VersionDeltaFile
1.53+4-4time/p5-DateTime-Locale/distinfo
1.79+3-4time/p5-DateTime-Locale/Makefile
+7-82 files

LLVM/project a51a886clang/lib/AST/ByteCode EvalEmitter.h ByteCodeEmitter.h

[clang][bytecode] Make Scope::Desc const (#219775)

We use const pointers to descriptors everywhere else.
DeltaFile
+2-2clang/lib/AST/ByteCode/Function.h
+2-2clang/lib/AST/ByteCode/EvalEmitter.cpp
+2-2clang/lib/AST/ByteCode/ByteCodeEmitter.cpp
+1-1clang/lib/AST/ByteCode/EvalEmitter.h
+1-1clang/lib/AST/ByteCode/ByteCodeEmitter.h
+8-85 files

NetBSD/pkgsrc-wip a04cadccrates-io-cli Makefile cargo-depends.mk, crates-io-cli/patches patch-.._vendor_criner-0.4.1_src_engine_stage_report_git.rs patch-.._vendor_criner-0.4.1_Cargo.lock

crates-io-cli: remove, build now fixed on 32-bit targets & committed to pkgsrc.
DeltaFile
+0-3,112crates-io-cli/patches/patch-Cargo.lock
+0-2,706crates-io-cli/patches/patch-.._vendor_criner-0.4.1_Cargo.lock
+0-1,480crates-io-cli/distinfo
+0-492crates-io-cli/cargo-depends.mk
+0-31crates-io-cli/Makefile
+0-18crates-io-cli/patches/patch-.._vendor_criner-0.4.1_src_engine_stage_report_git.rs
+0-7,8394 files not shown
+0-7,87710 files

NetBSD/pkgsrc XYCY9f5doc CHANGES-2026

   Note update of www/crates-io-cli to 4.0.3nb7.
VersionDeltaFile
1.5647+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc wJUAXAmwww/crates-io-cli cargo-depends.mk distinfo, www/crates-io-cli/patches patch-.._vendor_criner-0.4.1_Cargo.toml patch-.._vendor_criner-0.4.1_src_engine_stage_report_git.rs

   www/crates-io-cli: update to "current", and fix build on 32-bit CPU targets.

   The update to -current was done by pin@ in pkgsrc-wip.

   I added patches to use portable-atomic to fix the failure
   to build on 32-bit CPU targets.

   Bump PKGREVISION.
VersionDeltaFile
1.1+3,112-0www/crates-io-cli/patches/patch-Cargo.lock
1.1+2,706-0www/crates-io-cli/patches/patch-.._vendor_criner-0.4.1_Cargo.lock
1.4+1,284-1,102www/crates-io-cli/distinfo
1.4+425-366www/crates-io-cli/cargo-depends.mk
1.1+18-0www/crates-io-cli/patches/patch-.._vendor_criner-0.4.1_src_engine_stage_report_git.rs
1.1+16-0www/crates-io-cli/patches/patch-.._vendor_criner-0.4.1_Cargo.toml
+7,561-1,4682 files not shown
+7,579-1,4748 files

LLVM/project 091328fclang/lib/AST/ByteCode Compiler.h

[clang][bytecode][NFC] Make Compiler final (#219774)
DeltaFile
+2-2clang/lib/AST/ByteCode/Compiler.h
+2-21 files

LLVM/project 4126d3dllvm/include/llvm/ExecutionEngine/Orc SimpleRemoteEPC.h, llvm/lib/ExecutionEngine/Orc SimpleRemoteEPC.cpp

[ORC] Route SimpleRemoteEPC::runAsMain through CallMainProxySpec (#219770)

Replace runAsMainAddr with a CallMain proxy that is lazily initialized
by lookupAndApply on first use. This is another step towards making
callWrapperAsync the only call primitive
ExecutionSession/ExecutorProcessControl need to know about.
DeltaFile
+12-9llvm/lib/ExecutionEngine/Orc/SimpleRemoteEPC.cpp
+2-1llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h
+14-102 files

LLVM/project 4dbe25dclang/lib/AST/ByteCode EvalEmitter.h

[clang][bytecode] Reduce `EvalEmitter::Descriptors` inline size (#219773)

For pure expressions, we usually have few locals and few scopes. Reduce
the inline size here.
DeltaFile
+1-1clang/lib/AST/ByteCode/EvalEmitter.h
+1-11 files

LLVM/project 95473a6clang/lib/AST/ByteCode Function.h Interp.h

[clang][bytecode] Remove native pointer marshalling (#218911)

Just emit pointers to bytecode as uintptr_t. This avoids a vector and a
DenseMap in Program. We used to emit the ID as uint32_t, but since all
arguments are pointer-aligned in bytecode anyway, switching to uint64_t
shouldn't cause a memory regression.
DeltaFile
+9-13clang/lib/AST/ByteCode/Disasm.cpp
+2-13clang/lib/AST/ByteCode/Program.h
+0-13clang/lib/AST/ByteCode/Program.cpp
+4-7clang/lib/AST/ByteCode/ByteCodeEmitter.cpp
+3-5clang/lib/AST/ByteCode/Interp.h
+1-4clang/lib/AST/ByteCode/Function.h
+19-552 files not shown
+22-588 files

NetBSD/pkgsrc emZMQtkdoc CHANGES-2026

   Added converters/p5-Unicode-UTF8 version 0.75
VersionDeltaFile
1.5646+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc xKEdo2Oconverters Makefile

   Add p5-Unicode-UTF8
VersionDeltaFile
1.223+2-1converters/Makefile
+2-11 files

LLVM/project 9b8cb3dclang/lib/AST/ByteCode InterpState.cpp InterpState.h

[clang][bytecode] Divide `noteStep()` in hot and cold paths (#219760)

Move the hot success path into the header file to encourage inlining.
Also add a likeliness-hint since the steps check should _almost_ never
hit.
DeltaFile
+12-1clang/lib/AST/ByteCode/InterpState.h
+1-8clang/lib/AST/ByteCode/InterpState.cpp
+13-92 files

NetBSD/pkgsrc 8p5ulexconverters/p5-Unicode-UTF8 DESCR distinfo

   Add p5-Unicode-UTF8 version 0.75

   Unicode::UTF8 - Encoding and decoding of UTF-8 encoding form

   This module provides functions to encode and decode UTF-8 encoding form
   as specified by Unicode and ISO/IEC 10646:2011.
VersionDeltaFile
1.1+15-0converters/p5-Unicode-UTF8/Makefile
1.1+5-0converters/p5-Unicode-UTF8/distinfo
1.1+4-0converters/p5-Unicode-UTF8/DESCR
+24-03 files

LLVM/project 450ef6dclang/lib/AST/ByteCode InterpFrame.cpp InterpFrame.h

[clang][bytecode] Shrink `InterpFrame` size a bit (#219765)

Reorder members to reduce the size from 80 to 72 bytes (debug builds on
64bit systems).
DeltaFile
+8-7clang/lib/AST/ByteCode/InterpFrame.h
+5-4clang/lib/AST/ByteCode/InterpFrame.cpp
+13-112 files

LLVM/project 37cc7eeclang/lib/AST/ByteCode InterpState.h InterpFrame.h

[clang][bytecode] Clean up diagnostic location getters (#219762)

Implement `getRange()` etc. in terms of `getSource()` to reduce code
duplication.
DeltaFile
+2-30clang/lib/AST/ByteCode/InterpFrame.cpp
+5-3clang/lib/AST/ByteCode/InterpFrame.h
+0-5clang/lib/AST/ByteCode/InterpState.h
+7-383 files

FreeBSD/ports 4efbc4emisc/py-litellm-proxy-extras Makefile distinfo

misc/py-litellm-proxy-extras: Update to 0.4.91

Reported by:    portscout
DeltaFile
+3-3misc/py-litellm-proxy-extras/distinfo
+1-1misc/py-litellm-proxy-extras/Makefile
+4-42 files

FreeBSD/src 0b3fc7fusr.bin/whereis whereis.1 whereis.c

Revert "whereis(1): Respect PORTSDIR variable"

This reverts commit edadc3f9051595a9c2e693d8ab666a50b9e7a21a.
DeltaFile
+54-66usr.bin/whereis/whereis.c
+0-4usr.bin/whereis/whereis.1
+54-702 files

LLVM/project bb1691cclang/lib/ScalableStaticAnalysis/SourceTransformation/Transformations CppBoundedBuffers.cpp, clang/test/Analysis/Scalable/source-edit-generation end-to-end-cpp-bounded-buffers.cpp

[SSAF][clang-reforge] Add end-to-end clang-reforge tests

- Make CppBoundedBuffers adapt to flattened WPA results;
- Let CppBoundedBuffers use qualified EntityNames so that it can
  associate ASTNodes with WPA results;
- Add end-to-end tests

Final step of:
rdar://185840466
DeltaFile
+623-0clang/test/Analysis/Scalable/source-edit-generation/end-to-end-cpp-bounded-buffers.cpp
+23-9clang/lib/ScalableStaticAnalysis/SourceTransformation/Transformations/CppBoundedBuffers.cpp
+22-4clang/unittests/ScalableStaticAnalysis/SourceTransformation/CppBoundedBuffersTest.cpp
+668-133 files

LLVM/project 6bc324fclang/lib/ScalableStaticAnalysis/SourceTransformation/Transformations CppBoundedBuffers.cpp, clang/unittests/ScalableStaticAnalysis/SourceTransformation CppBoundedBuffersTest.cpp

fix clang-format
DeltaFile
+4-2clang/lib/ScalableStaticAnalysis/SourceTransformation/Transformations/CppBoundedBuffers.cpp
+1-1clang/unittests/ScalableStaticAnalysis/SourceTransformation/CppBoundedBuffersTest.cpp
+5-32 files

LLVM/project d9d2690clang/lib/ScalableStaticAnalysis/Analyses/UnsafeBufferUsage UnsafeBufferUsageAnalysis.cpp, clang/lib/ScalableStaticAnalysis/SourceTransformation/Transformations CppBoundedBuffers.cpp

[SSAF] Flatten 'UnsafeBufferReachableAnalysisResult' to a plain set

Previously, an 'UnsafeBufferReachableAnalysisResult' was organized as
a map from contributors to their mutually exclusive
sub-results. Because this extra layer of contributor information
proved unnecessary, this commit flattens the result into a plain set.

The source transformation expects the result to be a plain set, so
this is a prerequisite step for
rdar://185840466
DeltaFile
+10-10clang/lib/ScalableStaticAnalysis/Analyses/UnsafeBufferUsage/UnsafeBufferUsageAnalysis.cpp
+5-11clang/test/Analysis/Scalable/TypeConstrainedPointers/unsafe-buffer-reachable-excludes-type-constrained-new-delete.cpp
+4-7clang/lib/ScalableStaticAnalysis/SourceTransformation/Transformations/CppBoundedBuffers.cpp
+1-4clang/unittests/ScalableStaticAnalysis/WholeProgramAnalysis/UnsafeBufferReachableAnalysisTest.cpp
+1-3clang/unittests/ScalableStaticAnalysis/SourceTransformation/CppBoundedBuffersTest.cpp
+0-3clang/test/Analysis/Scalable/TypeConstrainedPointers/unsafe-buffer-reachable-excludes-type-constrained-main.cpp
+21-381 files not shown
+23-397 files

LLVM/project 14c1facclang/include/clang/ScalableStaticAnalysis/Core ASTEntityMapping.h, clang/include/clang/ScalableStaticAnalysis/SourceTransformation Transformation.h

[SSAF] Add APIs for resolving bare EntityNames to qualified EntityNames (#219033)

Also give Transformation access to SSAFOptions so that it can use
link-unit and compilation-unit IDs to resolve bare EntityNames.

first step of
rdar://185840466
DeltaFile
+64-0clang/lib/ScalableStaticAnalysis/Core/ASTEntityMapping.cpp
+0-41clang/lib/ScalableStaticAnalysis/Core/TUSummary/TUSummaryExtractor.cpp
+34-0clang/unittests/ScalableStaticAnalysis/ASTEntityMappingTest.cpp
+26-0clang/include/clang/ScalableStaticAnalysis/Core/ASTEntityMapping.h
+5-5clang/lib/ScalableStaticAnalysis/Core/EntityLinker/EntityLinker.cpp
+6-3clang/include/clang/ScalableStaticAnalysis/SourceTransformation/Transformation.h
+135-498 files not shown
+171-5714 files

OpenBSD/src OFFzzjCsys/dev/wscons wsemul_vt100var.h wsemul_sun.c

   Clamp numeric arguments of terminal escape sequences to an arbitrary value of
   100,000. The existing logic would happily process as many digits as provided,
   which could make the values wraparound at 2**32, or be considered as negative
   values if cast to a signed type, leading to incorrect processing.

   Bug report by Acts1631.
VersionDeltaFile
1.49+28-6sys/dev/wscons/wsemul_vt100.c
1.38+17-4sys/dev/wscons/wsemul_sun.c
1.15+4-2sys/dev/wscons/wsemul_vt100var.h
+49-123 files

LLVM/project 13c34eallvm/lib/Analysis ScalarEvolution.cpp, llvm/lib/DWARFLinker/Classic DWARFLinker.cpp

[llvm] Migrate to FoldingSet's typed lookup/insert/erase. NFC (#219764)
DeltaFile
+62-59llvm/lib/Analysis/ScalarEvolution.cpp
+27-27llvm/lib/IR/Attributes.cpp
+3-3llvm/lib/ProfileData/ItaniumManglingCanonicalizer.cpp
+3-3llvm/lib/IR/LegacyPassManager.cpp
+3-3llvm/lib/DWARFLinker/Parallel/DWARFLinkerUnit.cpp
+3-3llvm/lib/DWARFLinker/Classic/DWARFLinker.cpp
+101-983 files not shown
+110-1079 files

OpenBSD/src KFwAPfUsbin/ifconfig brconfig.c

   whitespace fixes, no functional change
VersionDeltaFile
1.47+3-3sbin/ifconfig/brconfig.c
+3-31 files

OpenBSD/src mmz1UBysbin/ifconfig brconfig.c

   collapse ranges of community ids when printing pvlan info.

   mostly borrowed from the code that collapses ranges of vids when
   printing the allowed vlan tags on ports.
VersionDeltaFile
1.46+19-5sbin/ifconfig/brconfig.c
+19-51 files

OpenBSD/ports snqU16caudio/sndiortp Makefile distinfo, audio/sndiortp/pkg DESCR

   audio/sndiortp: Update to v1.1.0

   ok rsadowski
VersionDeltaFile
1.2+2-2audio/sndiortp/distinfo
1.2+0-3audio/sndiortp/pkg/DESCR
1.2+1-1audio/sndiortp/Makefile
+3-63 files