FreeBSD/ports 6283487graphics/openshadinglanguage pkg-plist distinfo, graphics/openshadinglanguage/files patch-src_doc_CMakeLists.txt

graphics/openshadinglanguage: update to v1.14.8.0

PR:     292059
DeltaFile
+1-8graphics/openshadinglanguage/pkg-plist
+4-4graphics/openshadinglanguage/files/patch-src_doc_CMakeLists.txt
+3-3graphics/openshadinglanguage/distinfo
+3-2graphics/openshadinglanguage/Makefile
+11-174 files

FreeBSD/ports a49f74dx11-wm/xfce4-panel pkg-plist Makefile

x11-wm/xfce4-panel: fix plist with NlS=on (+)

Reported by:    bulk -t
Approved by:    portmgr blanket
DeltaFile
+1-0x11-wm/xfce4-panel/pkg-plist
+1-0x11-wm/xfce4-panel/Makefile
+2-02 files

FreeBSD/ports 1253268sysutils/xfce4-settings Makefile pkg-plist

sysutils/xfce4-settings: fix plist with NlS=on (+)

Reported by:    bulk -t
Approved by:    portmgr blanket
DeltaFile
+1-0sysutils/xfce4-settings/Makefile
+1-0sysutils/xfce4-settings/pkg-plist
+2-02 files

FreeBSD/ports eaad47ex11/libxfce4windowing pkg-plist Makefile

x11/libxfce4windowing: fix plist with NlS=on (+)

Reported by:    bulk -t
Approved by:    portmgr blanket
DeltaFile
+4-0x11/libxfce4windowing/pkg-plist
+1-0x11/libxfce4windowing/Makefile
+5-02 files

LLVM/project 6f0d05fllvm/utils/TableGen DAGISelMatcherEmitter.cpp

[TableGen] Remove space after comma EmitSignedVBRValue. NFC

This removes trailing whitespace from the final output.
DeltaFile
+2-1llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
+2-11 files

FreeBSD/ports ccd2fa1www/angie distinfo, www/angie-module-auth-spnego Makefile

www/angie: Update 1.10.3 => 1.11.1

News:
https://en.angie.software/news/releases/angie-1-11-0/

Changelog:
https://en.angie.software/angie/docs/oss_changes/#angie-1-11-1

PR:     291930
DeltaFile
+3-3www/angie/distinfo
+1-1www/angie-module-auth-spnego/Makefile
+1-1www/angie-module-auth-totp/Makefile
+1-1www/angie-module-brotli/Makefile
+1-1www/angie-module-cache-purge/Makefile
+1-1www/angie-module-dav-ext/Makefile
+8-818 files not shown
+26-2624 files

FreeBSD/ports 9aaa900graphics/ptex pkg-plist distinfo

graphics/ptex: update to v2.5.1 release

PR:     292056
DeltaFile
+7-21graphics/ptex/pkg-plist
+3-3graphics/ptex/distinfo
+3-1graphics/ptex/Makefile
+13-253 files

FreeBSD/ports 5f287e0security/create-cert distinfo Makefile

security/create-cert: Update to 2.12

While here add WWW.

Changes since 2.11:

 - Try to avoid leaking temp files after switching to mktemp.

 - getopt -> getopts

 - Cleanup key if cert creation fails.

 - Update to autoconf 2.72.

 - Prefer "openssl rehash" (newer openssl) to c_rehash (sometimes
   missing) using a patch from Michael Proto.

 - Minor consession to ubuntu (where /bin/sh is dash).


    [3 lines not shown]
DeltaFile
+3-3security/create-cert/distinfo
+2-1security/create-cert/Makefile
+5-42 files

LLVM/project 8de0bcbmlir/include/mlir/Bindings/Python IRAttributes.h IRTypes.h, mlir/lib/Bindings/Python IRAttributes.cpp IRTypes.cpp

[mlir][Python] move IRTypes and IRAttributes to public headers
DeltaFile
+949-1,394mlir/lib/Bindings/Python/IRAttributes.cpp
+636-959mlir/lib/Bindings/Python/IRTypes.cpp
+593-0mlir/include/mlir/Bindings/Python/IRAttributes.h
+391-2mlir/include/mlir/Bindings/Python/IRTypes.h
+59-72mlir/test/python/lib/PythonTestModuleNanobind.cpp
+15-2mlir/include/mlir/Bindings/Python/IRCore.h
+2,643-2,4292 files not shown
+2,648-2,4328 files

NetBSD/pkgsrc-wip f12bb3fu-boot-imx23-olinuxino TODO

imx23-olinuxino: update status

Installboot tested and confirmed working
DeltaFile
+0-2u-boot-imx23-olinuxino/TODO
+0-21 files

NetBSD/src gxEfjFBexternal/gpl2/texinfo/dist/makeinfo cmds.h insertion.c

   Improve the rigor of function signatures and prototypes in gmake,
   texinfo, and gmp sources in order to meet the C23 requirements of
   gcc 15.2.1. (2nd try after the 1st try broke the build :( )

   With these changes -current now also builds with gcc 15.2.1 on
   Fedora 43 (using HOST_CFLAGS=-fpermissive).  No functional changes
   intended.

   Patches are from (primarily) mrg@ and myself.  Additional comments
   and guidance from riastradh@ .
VersionDeltaFile
1.4+122-122external/gpl2/texinfo/dist/makeinfo/cmds.h
1.4+75-75external/gpl2/texinfo/dist/makeinfo/insertion.c
1.5+74-74external/gpl2/texinfo/dist/makeinfo/cmds.c
1.5+23-23external/gpl2/texinfo/dist/makeinfo/sectioning.c
1.4+21-21external/gpl2/texinfo/dist/makeinfo/sectioning.h
1.6+12-12external/gpl2/texinfo/dist/makeinfo/index.c
+327-32722 files not shown
+406-40628 files

LLVM/project 0db0496llvm/lib/Transforms/Vectorize VPlanConstruction.cpp, llvm/test/Transforms/LoopVectorize constantfolder.ll

[VPlan] Fix use-after-free when iterating over live-ins directly.

getLiveIns returns an iterator to members of a dense map. The loop may
create new live-ins, which can trigger re-allocation of the underlying
dense map, causing use-after-free accesses for the iterator.

Make sure we iterate over a copy of the live-ins to avoid
use-after-free.

Fixes https://github.com/llvm/llvm-project/issues/173222.
DeltaFile
+122-0llvm/test/Transforms/LoopVectorize/constantfolder.ll
+1-1llvm/lib/Transforms/Vectorize/VPlanConstruction.cpp
+123-12 files

LLVM/project 27cf32dllvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer/X86 split-vectorize-gathered-def-after-use.ll

[SLP]Fix def-after-use crash for gathered split nodes

If the split node is marked as a gather node after non-profitable
analysis, need to exclude it from the list of split nodes and include
into the list of gather/buildvector nodes

Fixes report from https://github.com/llvm/llvm-project/pull/162018#issuecomment-3701928745
DeltaFile
+138-0llvm/test/Transforms/SLPVectorizer/X86/split-vectorize-gathered-def-after-use.ll
+2-1llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+140-12 files

LLVM/project 663e29cllvm/include/llvm/ADT GenericUniformityImpl.h, llvm/test/Analysis/UniformityAnalysis/AMDGPU incorrect-assertion-issue-170048.ll

[UniformityAnalysis] Remove an incorrect assertion in uniformity analysis

The join block could be not a header of a cycle, as shown in the newly added test case.

Fixes #170048.
DeltaFile
+56-0llvm/test/Analysis/UniformityAnalysis/AMDGPU/incorrect-assertion-issue-170048.ll
+1-3llvm/include/llvm/ADT/GenericUniformityImpl.h
+57-32 files

LLVM/project 9f0d5cdmlir/lib/Dialect/SPIRV/IR SPIRVOps.cpp SPIRVTypes.cpp

[mlir][spirv] Clean up casts. NFC. (#174115)

Drop the `llvm::` namespace prefix where needlessly used. These were
introduced by clang-tidy when we migrated from cast member functions to
free functions.
DeltaFile
+79-82mlir/lib/Dialect/SPIRV/IR/SPIRVOps.cpp
+19-19mlir/lib/Dialect/SPIRV/IR/SPIRVTypes.cpp
+17-17mlir/lib/Dialect/SPIRV/IR/MemoryOps.cpp
+16-18mlir/lib/Dialect/SPIRV/IR/SPIRVAttributes.cpp
+14-14mlir/lib/Dialect/SPIRV/IR/CastOps.cpp
+9-9mlir/lib/Dialect/SPIRV/IR/SPIRVCanonicalization.cpp
+154-15913 files not shown
+193-20019 files

FreeBSD/ports 654cefdwww/payara pkg-plist Makefile, www/payara/files pkg-message.in

www/payara: Update 5.2020.4 => 7.2025.2

Changelogs:
https://github.com/payara/Payara/releases/tag/payara-server-5.2020.5
https://github.com/payara/Payara/releases/tag/payara-server-5.2020.6
https://github.com/payara/Payara/releases/tag/payara-server-5.2020.7
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.1
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.2
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.3
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.4
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.5
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.6
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.7
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.8
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.9
https://github.com/payara/Payara/releases/tag/payara-server-5.2021.10
https://github.com/payara/Payara/releases/tag/payara-server-5.2022.1
https://github.com/payara/Payara/releases/tag/payara-server-5.2022.2
https://github.com/payara/Payara/releases/tag/payara-server-5.2022.3

    [47 lines not shown]
DeltaFile
+2,180-512www/payara/pkg-plist
+24-33www/payara/Makefile
+19-0www/payara/files/pkg-message.in
+0-19www/payara/pkg-message
+3-3www/payara/distinfo
+2,226-5675 files

FreeBSD/ports cf17d54graphics/opencv/files patch-modules_core_include_opencv2_core_vsx__utils.hpp

graphics/opencv: fix build on powerpc64le

Add back definitions removed in https://github.com/opencv/opencv/commit/63ef786a3a0afcd44bf842f967656052d52dde09.
DeltaFile
+13-0graphics/opencv/files/patch-modules_core_include_opencv2_core_vsx__utils.hpp
+13-01 files

FreeBSD/ports b22e918net-im/nchat Makefile pkg-plist

net-im/nchat: fix pkg-plist on powerpc / powerpc64

CMake Warning at CMakeLists.txt:104 (message):
  Telegram requires little endian, auto-disabling.
DeltaFile
+8-0net-im/nchat/Makefile
+2-2net-im/nchat/pkg-plist
+10-22 files

LLVM/project 7cd93cbmlir/include/mlir/Dialect/SPIRV/IR SPIRVControlFlowOps.td, mlir/test/Dialect/SPIRV/IR return-ops.mlir

[mlir][spirv] Mark `spirv.ReturnValue` as `ReturnLike` (#174114)

This makes the dead value analysis consider it live.

Fixes: https://github.com/llvm/llvm-project/issues/173563
DeltaFile
+17-0mlir/test/Dialect/SPIRV/IR/return-ops.mlir
+2-2mlir/include/mlir/Dialect/SPIRV/IR/SPIRVControlFlowOps.td
+19-22 files

FreeBSD/ports b598cb1sysutils/flashrom Makefile

sysutils/flashrom: mark broken for 13.x
DeltaFile
+1-0sysutils/flashrom/Makefile
+1-01 files

NetBSD/pkgsrc cEZnyHwdoc CHANGES-2025

   doc: Updated cad/nvc to 1.18.2nb1
VersionDeltaFile
1.7527+2-1doc/CHANGES-2025
+2-11 files

NetBSD/pkgsrc wTAs6dgcad/nvc Makefile distinfo, cad/nvc/patches patch-src_jit_jit-code.c

   cad/nvc: Fix build failure under released NetBSDs

   * Support old and new ELF headers for NetBSD.
   * Make BUILDLINK_DEPMETHOD for devel/check as build and bump PKGREVISION.
VersionDeltaFile
1.1+22-0cad/nvc/patches/patch-src_jit_jit-code.c
1.2+3-1cad/nvc/Makefile
1.2+2-1cad/nvc/distinfo
+27-23 files

NetBSD/pkgsrc M738RlEdoc CHANGES-2025

   doc: Added editors/reovim version 0.7.8
VersionDeltaFile
1.7526+2-1doc/CHANGES-2025
+2-11 files

NetBSD/pkgsrc z8NBvuSeditors Makefile

   Add reovim
VersionDeltaFile
1.261+2-1editors/Makefile
+2-11 files

NetBSD/pkgsrc 1M2vs0veditors/reovim distinfo cargo-depends.mk

   editors/reovim: add package

   A Rust-powered neovim-like text editor.

   Project Goals

   - Fastest-reaction editor: Minimal latency, instant response
   - Scalability: Handles large files and complex operations
   - Zero-warning policy: All code must compile warning-free
VersionDeltaFile
1.1+872-0editors/reovim/distinfo
1.1+291-0editors/reovim/cargo-depends.mk
1.1+22-0editors/reovim/Makefile
1.1+7-0editors/reovim/DESCR
1.1+2-0editors/reovim/PLIST
+1,194-05 files

NetBSD/pkgsrc Rj6aC57doc CHANGES-2025

   doc: Updated devel/serie to 0.5.7
VersionDeltaFile
1.7525+2-1doc/CHANGES-2025
+2-11 files

NetBSD/pkgsrc yHq3uHudevel/serie distinfo cargo-depends.mk

   devel/serie: update to 0.5.7

    - Add detail color configs by @lusingander in #113
    - Add configurable clipboard command support by @leakedmemory in #114
VersionDeltaFile
1.18+100-94devel/serie/distinfo
1.18+32-30devel/serie/cargo-depends.mk
1.19+2-2devel/serie/Makefile
+134-1263 files

NetBSD/pkgsrc nfBBRGqdoc CHANGES-2025

   doc: Updated shells/oh-my-posh to 28.9.0
VersionDeltaFile
1.7524+2-1doc/CHANGES-2025
+2-11 files

NetBSD/pkgsrc Vahk4U4shells/oh-my-posh distinfo Makefile

   shells/oh-my-posh: update to 28.9.0

   Bug Fixes

    - docs: update broken link of go.mod (a91951d)
    - docs: update broken links (e102bae)

   Features

    - update linux mint icon (ea9c9f0)
VersionDeltaFile
1.282+4-4shells/oh-my-posh/distinfo
1.306+2-2shells/oh-my-posh/Makefile
+6-62 files

LLVM/project 02bf270mlir/lib/Conversion/SCFToSPIRV SCFToSPIRVPass.cpp, mlir/lib/Dialect/SPIRV/Transforms SPIRVConversion.cpp

[mlir][spirv] Allow unrealized casts in scf-to-spirv (#174111)

This is required for signature conversion to work.

Fixes: https://github.com/llvm/llvm-project/issues/173564
DeltaFile
+21-0mlir/test/Conversion/SCFToSPIRV/func-signature.mlir
+2-0mlir/lib/Conversion/SCFToSPIRV/SCFToSPIRVPass.cpp
+1-1mlir/lib/Dialect/SPIRV/Transforms/SPIRVConversion.cpp
+24-13 files