NetBSD/pkgsrc-wip e5e29ccterraform-provider-aws distinfo go-modules.mk, terraform-provider-aws4 distinfo go-modules.mk

terraform-provider-aws4: Add version suffix

Consistent with other aws provider versions.
DeltaFile
+0-1,304terraform-provider-aws/distinfo
+1,304-0terraform-provider-aws4/distinfo
+0-435terraform-provider-aws/go-modules.mk
+435-0terraform-provider-aws4/go-modules.mk
+27-0terraform-provider-aws4/Makefile
+0-25terraform-provider-aws/Makefile
+1,766-1,7646 files not shown
+1,771-1,77012 files

LLVM/project e44fd05mlir/include/mlir/Dialect/AMX AMX.td, mlir/include/mlir/Dialect/X86 X86.td

[mlir][x86] Move AMX dialect into X86 dialect (#183717)

Unifies the two dialects that define x86 operations into a single one.
The AMX dialect is moved into X86 in line with other x86 extensions.

Following the dialect renaming, X86 dialect is now a suitable home for
wider range of operations targeting specific hardware features. Moving
AMX definitions to X86 dialect creates a single, centralized hub for
defining all x86 intrinsic-like operations. The new grouping aims to
eliminate the need for new dialects as new hardware extensions become
available.

The two dialects are simply merged together. X86 dialect refactoring
will be addressed separately.

List of changes:
  - operations: 'amx.tile_*' => 'x86.amx.tile_*'
  - types: '!amx.tile' => '!x86.amx.tile'
  - namespace: 'mlir::amx' => 'mlir::x86::amx'

    [4 lines not shown]
DeltaFile
+0-440mlir/include/mlir/Dialect/AMX/AMX.td
+384-0mlir/include/mlir/Dialect/X86/X86.td
+0-318mlir/lib/Dialect/AMX/IR/AMXDialect.cpp
+285-0mlir/lib/Dialect/X86/IR/X86Dialect.cpp
+198-0mlir/test/Integration/Dialect/Vector/CPU/X86/AMX/muli-ext.mlir
+0-198mlir/test/Integration/Dialect/Vector/CPU/AMX/muli-ext.mlir
+867-95659 files not shown
+2,083-2,40465 files

pkgng/pkgng 9db9079docs pkg-repo.8 pkg-repository.5

pkg-repo(8): update the documentation and mark packagesite as deprecated
DeltaFile
+44-57docs/pkg-repo.8
+4-1docs/pkg-repository.5
+48-582 files

LLVM/project e3b01e1lldb/test/API/commands/frame/var-dil/expr/Arithmetic TestFrameVarDILArithmetic.py

[lldb] Fix wchar addition tests in DIL (#184082)

This patch fixes tests on systems where `wchar`'s underlying type is
`unsigned long`, or `long` and `int` types have the same width, so
`unsigned int` gets promoted to `unsigned long` during binary addition.
These tests check that `wchar` types get promoted to regular integer
types at all.
DeltaFile
+3-3lldb/test/API/commands/frame/var-dil/expr/Arithmetic/TestFrameVarDILArithmetic.py
+3-31 files

NetBSD/pkgsrc-wip d5c6d65terraform-provider-aws3 Makefile TODO

terraform-provider-aws3: Add SUPERSEDES

It is intended to replace net/terraform-provider-aws and also coexists
with other terraform-provider-aws* in order to have multiple versions of
aws provider installed at the same time.
DeltaFile
+3-0terraform-provider-aws3/Makefile
+0-2terraform-provider-aws3/TODO
+3-22 files

LLVM/project 13751c8llvm/include/llvm/Analysis VecFuncs.def, llvm/lib/Target/AArch64 AArch64TargetTransformInfo.cpp

[AArch64] Vectorise llvm.pow using vector intrinsic for ArmPL library (#183319)

When vectorising loops containing calls to the llvm.pow intrinsic we
currently end up with direct calls to the vector math library equivalent
of llvm.pow. This causes problems later on because we then miss out on
optimisations in the backend for things like

  pow(x, 0.25)
  pow(x, 0.75)
  etc.

There are a few different ways of trying to solve this, but I think the
cleanest way is to leave the call in the intrinsic form and then teach
the backend how to lower the FPOW DAG node to the vector math library
function. This is similar to what we already do for llvm.sincos/FSINCOS
today.

I've done this by removing the entries in Analysis/VecFuncs.def that map
the intrinsic to the vector math functions, whilst also teaching the
cost model that the vector intrinsic form of llvm.pow is cheap in the
presence of the library.
DeltaFile
+5-5llvm/test/CodeGen/AArch64/replace-with-veclib-armpl.ll
+4-4llvm/test/Transforms/LoopVectorize/AArch64/veclib-intrinsic-calls.ll
+7-0llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
+0-5llvm/include/llvm/Analysis/VecFuncs.def
+16-144 files

LLVM/project 730587dllvm/lib/CodeGen/SelectionDAG SelectionDAG.cpp, llvm/test/CodeGen/X86 known-never-zero.ll

[DAG] isKnownNeverZero - add DemandedElts for ISD::SMIN/SMAX (#184054)

Resolves #183039
DeltaFile
+52-1llvm/test/CodeGen/X86/known-never-zero.ll
+8-8llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+60-92 files

NetBSD/pkgsrc-wip c863856terraform-provider-aws3 Makefile

terraform-provider-aws3: Adjust PKGNAME like terraform*

NFC.
DeltaFile
+1-1terraform-provider-aws3/Makefile
+1-11 files

pkgng/pkgng 2f108a1docs pkg-repository.5

pkg-repository(5): large update of pkg-repository(5) documentation
DeltaFile
+182-135docs/pkg-repository.5
+182-1351 files

NetBSD/pkgsrc egOTpludoc CHANGES-2026

   Updated net/samba4, graphics/freetype2
VersionDeltaFile
1.1487+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc YyRWYv4graphics/freetype2 distinfo Makefile

   freetype2: updated to 2.14.2

   2.14.2

   This is mostly a maintenance release; because it fixes a bunch of potential
   security issues it is recommended that all users upgrade to this version.

   The most noteworthy improvement is a 40% speed-up of ClearType-like rendering
   at sizes above 32ppem. The remaining changes can be found in the release notes.
VersionDeltaFile
1.81+4-4graphics/freetype2/distinfo
1.139+2-2graphics/freetype2/Makefile
+6-62 files

LLVM/project 61faf7dllvm/lib/Target/AArch64/GISel AArch64InstructionSelector.cpp AArch64RegisterBankInfo.cpp, llvm/test/CodeGen/AArch64 aarch64-mops.ll fptoui-sat-vector.ll

[AArch64][GlobalISel] Use GPR for illegal fconstants and extend < 32 bit GPR constants to 32 bits (#178692)

In a similar fashion to
https://github.com/llvm/llvm-project/pull/175810, this PR aims to
simplify the handling of constants by extending smaller than 32 bit
integer constants to 32 bits in regbankselect. This is only done for
constants that were going to be assigned to a GPR and aims to simplify
the selection of these.

In addition, fconstants that would have lead to a constant pool load
because they are illegal as immediates (except for 128 bit) are now
converted to a constant on GPR registers before being copied to the FPR.
This hopefully reduces cache pressure & simplifies selection.

I have tried to rely on tablegen as much as possible for selecting the
instructions for this.
DeltaFile
+156-260llvm/test/CodeGen/AArch64/aarch64-mops.ll
+76-113llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp
+141-10llvm/lib/Target/AArch64/GISel/AArch64RegisterBankInfo.cpp
+60-71llvm/test/CodeGen/AArch64/fptoui-sat-vector.ll
+70-35llvm/test/CodeGen/AArch64/arm64-fp-imm-size.ll
+54-27llvm/test/CodeGen/AArch64/dup.ll
+557-51619 files not shown
+758-62925 files

FreeBSD/ports 92749d0security/trivy distinfo Makefile

security/trivy: update to 0.69.2

Changes:        https://github.com/aquasecurity/trivy/releases/tag/v0.69.2
DeltaFile
+5-5security/trivy/distinfo
+1-2security/trivy/Makefile
+6-72 files

NetBSD/pkgsrc uqwcUd6net/samba4 distinfo Makefile, net/samba4/files smbd.sh

   samba4: updated to 4.23.6

   Changes since 4.23.5

   o  Douglas Bagnall <douglas.bagnall at catalyst.net.nz>
      * BUG 15990: No function _python_sysroot defined

   o  Ralph Boehme <slow at samba.org>
      * BUG 15978: leases torture test flappy
      * BUG 15984: smbd: in contend_dirleases() don't bother checking when not
        enabled

   o  Samuel Cabrero <scabrero at samba.org>
      * BUG 15979: possible memory leak  on rpc_spoolss

   o  Günther Deschner <gd at samba.org>
      * BUG 15964: "net offlinejoin requestodj" manpage entry incorrectly mentiones
        provided credentials


    [15 lines not shown]
VersionDeltaFile
1.123+4-4net/samba4/distinfo
1.213+2-3net/samba4/Makefile
1.3+1-2net/samba4/files/smbd.sh
+7-93 files

LLVM/project 0c89071llvm/utils/git github-automation.py

github-automation.py: Fix mis-indented statement (#149653)

Ensure all reviewers who approved the original PR are properly notified
and added as reviewers on backport PRs.

Resolves: #109429.
DeltaFile
+1-1llvm/utils/git/github-automation.py
+1-11 files

LLVM/project 925ec95llvm/test/MC/ARM dwarf-asm-multiple-sections.s

[llvm][DebugInfo][test] dwarf-asm-multiple-sections.s: refine FileCheck checks

Renames the `DWARF6` check-prefix to `DWARF7` because it's the check we use for `-dwarf-version 7`.

Also adds a check prefix for just `-dwarf-version 5` because we will
diverge DWARFv5 and DWARFv6 CU langauge attribute in https://github.com/llvm/llvm-project/pull/183897.
DeltaFile
+5-4llvm/test/MC/ARM/dwarf-asm-multiple-sections.s
+5-41 files

LLVM/project f46aca9llvm/lib/Target/AArch64 AArch64ISelLowering.cpp, llvm/test/CodeGen/AArch64 neon-bitwise-instructions.ll

[AArch64] Combine (and/or X, (dup (not Y))) -> (bic/orn X, (dup Y)) (#175739)

DeltaFile
+520-0llvm/test/CodeGen/AArch64/neon-bitwise-instructions.ll
+25-0llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+545-02 files

OpenBSD/src KSvTAeJsys/dev/pci if_iwxreg.h if_iwx.c

   Send the new system statistics command if supported by iwx(4) firmware.

   This will be needed for BZ devices.

   ok phessler@, kettenis@

   Tested:
   AX200: stsp
   AX201: kirill
   AX210 (MA): kettenis
   AX211: phessler
   AX211 (BZ): stsp
VersionDeltaFile
1.60+242-1sys/dev/pci/if_iwxreg.h
1.201+83-2sys/dev/pci/if_iwx.c
1.44+3-1sys/dev/pci/if_iwxvar.h
+328-43 files

OpenBSD/src 39lrD06usr.sbin/bgpd rde.c

   Further improve the log messages for attribute parse errors.

   Add an extra case for the case where the length of the attribute
   overflows the attribute buffer. This is a reasonably common issues
   and therefor the extra message that includes attribute, flags and length.

   OK tb@
VersionDeltaFile
1.688+11-4usr.sbin/bgpd/rde.c
+11-41 files

LLVM/project 900f702lldb/include/lldb/Utility AnsiTerminal.h, lldb/source/Interpreter Options.cpp

[lldb] Indent option help with ANSI cursor codes when possible. (#183558)

This avoids formatting empty space when a range of text formatted by
ANSI codes is split across lines.

This is not currently done in any option, but the `${...}` syntax we
have does support marking any range of text, so it could be done in
future, and fixing it is simple.

As an example, if I change a breakpoint option:
```
             "${S}et the breakpoint only in this shared library.  Can repeat "
-            "this option multiple times to specify multiple shared libraries.">;
+            "this option multiple ${times to specify multiple} shared libraries.">;
```
This applies the underline to words that will be split across lines. In
the outputs below, `^` represents an underlined character.

With spaces:

    [24 lines not shown]
DeltaFile
+21-6lldb/unittests/Utility/AnsiTerminalTest.cpp
+16-5lldb/include/lldb/Utility/AnsiTerminal.h
+7-5lldb/test/API/commands/help/TestHelp.py
+2-1lldb/source/Interpreter/Options.cpp
+46-174 files

OpenBSD/src 8306oepusr.sbin/bgpd rde.c

   Fix in the OTC attribute parser for ROLE_PEER.

   For sessions with peer role the ASnum of the OTC attribute is compared to
   the remote ASnum of the session. At that point in the parser the data
   should not be consumed. So use an extra temporary buffer to extract the
   OTC value. This is similar to the case in ATTR_AS4_AGGREGATOR where the
   same trick is used.

   OK tb@
VersionDeltaFile
1.687+3-2usr.sbin/bgpd/rde.c
+3-21 files

pkgng/pkgng d885d86docs pkg-set.8

pkg-set(8): fix formatting
DeltaFile
+2-2docs/pkg-set.8
+2-21 files

pkgng/pkgng 1679b3adocs pkg-install.8

pkg-install(8): update documentation

Fix --register-only
add --local-only
add --script-noexec
DeltaFile
+16-2docs/pkg-install.8
+16-21 files

pkgng/pkgng 40d6ee4docs pkg-audit.8

pkg-audit(8): document -d|--directory
DeltaFile
+4-0docs/pkg-audit.8
+4-01 files

pkgng/pkgng dc367d8docs pkg-plugins.8 pkg-help.8

man: add pkg-help and pkg-plugins
DeltaFile
+112-0docs/pkg-plugins.8
+103-0docs/pkg-help.8
+3-1docs/pkg-unregister.8
+3-0docs/pkg-repositories.8
+3-0docs/pkg-repository.5
+3-0docs/pkg-rquery.8
+227-138 files not shown
+340-144 files

pkgng/pkgng 17b89fbdocs pkg-triggers.5

pkg-triggers(5): update documentation

- Add description documentation
- Document sandbox
DeltaFile
+21-2docs/pkg-triggers.5
+21-21 files

pkgng/pkgng 9bc574fdocs pkg-key.8

pkg-key(8): update after latest changes
DeltaFile
+6-6docs/pkg-key.8
+6-61 files

pkgng/pkgng c6b5803docs pkg-delete.8

pkg-delete(8): document --script-no-exec
DeltaFile
+8-0docs/pkg-delete.8
+8-01 files

pkgng/pkgng ba68da9libpkg triggers.c, libpkg/private pkg.h

trigger: fix typo in regex/regexp
DeltaFile
+8-8libpkg/triggers.c
+3-3tests/frontend/triggers.sh
+1-1libpkg/private/pkg.h
+12-123 files

pkgng/pkgng 8941e67docs pkg.conf.5

pkg-conf(5): document missing entries and complete
DeltaFile
+108-12docs/pkg.conf.5
+108-121 files