FreeBSD/ports 8804190misc/crush distinfo Makefile

misc/crush: Update to 0.63.0

Changelog:
- https://github.com/charmbracelet/crush/releases/tag/v0.62.1
- https://github.com/charmbracelet/crush/releases/tag/v0.63.0

Reported by:    GitHub (watch releases)
DeltaFile
+5-5misc/crush/distinfo
+1-1misc/crush/Makefile
+6-62 files

FreeBSD/ports e65c0a1devel/quickcpplib distinfo Makefile, devel/quickcpplib/files patch-include_quickcpplib_uint128.hpp patch-include_quickcpplib_signal__guard.hpp

devel/quickcpplib: update g20230614 → g20260310
DeltaFile
+0-65devel/quickcpplib/files/patch-include_quickcpplib_uint128.hpp
+0-11devel/quickcpplib/files/patch-include_quickcpplib_signal__guard.hpp
+3-3devel/quickcpplib/distinfo
+2-3devel/quickcpplib/Makefile
+2-0devel/quickcpplib/pkg-plist
+7-825 files

FreeBSD/ports a820210devel/xbyak distinfo Makefile

devel/xbyak: update 7.36.2 → 7.37
DeltaFile
+3-3devel/xbyak/distinfo
+1-1devel/xbyak/Makefile
+4-42 files

FreeBSD/ports a79e196math/heyoka Makefile pkg-plist, math/py-heyoka distinfo Makefile

math/{,py-}heyoka: update 7.10.0 → 7.11.0
DeltaFile
+4-4math/heyoka/Makefile
+6-2math/heyoka/pkg-plist
+3-3math/heyoka/distinfo
+3-3math/py-heyoka/distinfo
+1-1math/py-heyoka/Makefile
+17-135 files

FreeBSD/ports 122d26amisc/comfyui pkg-plist Makefile

misc/comfyui: update 0.19.4 → 0.20.1
DeltaFile
+28-1misc/comfyui/pkg-plist
+4-4misc/comfyui/Makefile
+3-3misc/comfyui/distinfo
+35-83 files

FreeBSD/ports d57299emisc/py-comfyui-workflow-templates-media-video distinfo Makefile

misc/py-comfyui-workflow-templates-media-video: update 0.3.80 → 0.3.81
DeltaFile
+3-3misc/py-comfyui-workflow-templates-media-video/distinfo
+1-1misc/py-comfyui-workflow-templates-media-video/Makefile
+4-42 files

FreeBSD/ports 0d577bemisc/py-comfyui-workflow-templates distinfo Makefile

misc/py-comfyui-workflow-templates: update 0.9.62 → 0.9.63
DeltaFile
+3-3misc/py-comfyui-workflow-templates/distinfo
+1-1misc/py-comfyui-workflow-templates/Makefile
+4-42 files

FreeBSD/ports 8b2bc46misc/py-comfyui-workflow-templates-media-other distinfo Makefile

misc/py-comfyui-workflow-templates-media-other: update 0.3.181 → 0.3.182
DeltaFile
+3-3misc/py-comfyui-workflow-templates-media-other/distinfo
+1-1misc/py-comfyui-workflow-templates-media-other/Makefile
+4-42 files

FreeBSD/ports de655cfmisc/py-comfyui-workflow-templates-core distinfo Makefile

misc/py-comfyui-workflow-templates-core: update 0.3.215 → 0.3.216
DeltaFile
+3-3misc/py-comfyui-workflow-templates-core/distinfo
+1-1misc/py-comfyui-workflow-templates-core/Makefile
+4-42 files

FreeBSD/ports 869e146devel/functionalplus distinfo Makefile

devel/functionalplus: update 0.2.27 → 0.2.28

Reported by:    portscout
DeltaFile
+3-3devel/functionalplus/distinfo
+2-2devel/functionalplus/Makefile
+5-52 files

FreeBSD/ports 385ebc8biology/py-pysam Makefile distinfo

biology/py-pysam: update 0.23.0 → 0.24.0
DeltaFile
+5-2biology/py-pysam/Makefile
+3-3biology/py-pysam/distinfo
+8-52 files

LLVM/project 9841f81llvm/docs LangRef.rst

Apply reviewer suggestions

Co-authored-by: Sameer Sahasrabuddhe <sameer.sahasrabuddhe at amd.com>
DeltaFile
+9-9llvm/docs/LangRef.rst
+9-91 files

LLVM/project f05e531lldb/source/Plugins/Process/gdb-remote ProcessGDBRemote.h ProcessGDBRemote.cpp

fixup! use map typedef
DeltaFile
+2-4lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
+2-3lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+4-72 files

LLVM/project bdf7a56lldb/include/lldb/Utility GDBRemote.h, lldb/source/Plugins/Process/gdb-remote ProcessGDBRemote.cpp ProcessGDBRemote.h

[lldb] Override UpdateBreakpointSites in ProcessGDBRemote to use MultiBreakpoint

This concludes the implementation of MultiBreakpoint by actually using
the new packet to batch breakpoint requests.

https://github.com/llvm/llvm-project/pull/192910
DeltaFile
+192-0lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+8-0lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
+4-0lldb/source/Utility/GDBRemote.cpp
+3-0lldb/include/lldb/Utility/GDBRemote.h
+207-04 files

LLVM/project 157fcfflldb/include/lldb/Target Process.h, lldb/source/Target Process.cpp

fixup! fix order of class declaration
DeltaFile
+14-12lldb/include/lldb/Target/Process.h
+2-3lldb/source/Target/Process.cpp
+16-152 files

LLVM/project fb4af2allvm/lib/Target/X86 X86ISelLowering.cpp, llvm/test/CodeGen/X86 atomic-lock-and-setcc-folded.ll

[X86] lock opt ptr const inconsistencies (#185195)

Resolves: https://github.com/llvm/llvm-project/issues/147280

The linked issue mentions cases of atomic arithmetic followed by a test
which can be recovered by flags that are emitting cas loops instead of
lock + op which can be inferred from flags.

There's one fold that solves the issue's code: `lock and` sets ZF on the
result of old & C, so any nonzero comparison against new = old & C can
be answered with ZF, so this fold does just that, reduces to a != 0 or
== 0.

I also decided to refactor `shouldExpandCmpArithRMWInIR` into a
dispatching function and make `getCmpArithCC` just return X86::CondCodes
directly. This deleted the dispatching switch later in the code.

Also I broke out the different cases of `getCmpArithWithCC` into helper
functions for each case (add, sub, and, xor, or, add with overflow, sub

    [3 lines not shown]
DeltaFile
+159-74llvm/lib/Target/X86/X86ISelLowering.cpp
+59-0llvm/test/CodeGen/X86/atomic-lock-and-setcc-folded.ll
+218-742 files

LLVM/project 6db8e46llvm/docs LangRef.rst

[LangRef] Specify that syncscopes can affect the monotonic modification order

If a target specifies that atomics with mismatching syncscopes appear
non-atomic to each other, there is no point in requiring them to be ordered in
the monotonic modification order. Notably, the [AMDGPU target user
guide](https://llvm.org/docs/AMDGPUUsage.html#memory-scopes) has specified
syncscopes to relax the modification order for years.

So far, I haven't found an example where this less constrained ordering would
be observable (at least with the AMDGPU inclusive scope rules). Whenever a load
would be able to see two monotonic stores with non-inclusive scope, that's
considered a data race (i.e., the load would return `undef`), so it cannot be
used to observe the order of the stores.
DeltaFile
+13-9llvm/docs/LangRef.rst
+13-91 files

LLVM/project 4274239llvm/lib/Target/X86 X86ISelLowering.cpp, llvm/test/CodeGen/X86 packus.ll

[X86] combineVTRUNCSAT - don't split 128-bit concatenated vectors when folding to PACKSS/US (#194347)

If the VTRUNCS/US node has 128-bit src and dst types, then ensure we
don't split into sub-128-bit vectors - just treat it as padded with
zeros to match VTRUNC behaviour.

Fixes #194344
DeltaFile
+19-0llvm/test/CodeGen/X86/packus.ll
+14-3llvm/lib/Target/X86/X86ISelLowering.cpp
+33-32 files

OPNSense/core 5217772src/opnsense/mvc/app/controllers/OPNsense/Kea/Api Dhcpv6Controller.php Dhcpv4Controller.php, src/opnsense/mvc/app/views/OPNsense/Dnsmasq settings.volt

mvc: generalize placeholders between controllers and JS for #10225
DeltaFile
+0-8src/opnsense/mvc/app/views/OPNsense/Kea/dhcpv6.volt
+0-8src/opnsense/mvc/app/views/OPNsense/Kea/dhcpv4.volt
+0-8src/opnsense/mvc/app/views/OPNsense/Dnsmasq/settings.volt
+3-1src/opnsense/mvc/app/controllers/OPNsense/Kea/Api/Dhcpv6Controller.php
+3-1src/opnsense/mvc/app/controllers/OPNsense/Kea/Api/Dhcpv4Controller.php
+3-0src/opnsense/www/js/opnsense.js
+9-261 files not shown
+11-277 files

FreeBSD/ports e22d95anet/haproxy24 distinfo Makefile

net/haproxy24: update to version 2.4.32.
DeltaFile
+3-3net/haproxy24/distinfo
+1-1net/haproxy24/Makefile
+4-42 files

FreeBSD/ports e0a65e1net/haproxy26 distinfo Makefile

net/haproxy26: update to version 2.6.26.
DeltaFile
+3-3net/haproxy26/distinfo
+1-1net/haproxy26/Makefile
+4-42 files

FreeBSD/ports c1efed3net/haproxy28 distinfo Makefile

net/haproxy28: update to version 2.8.21.
DeltaFile
+3-3net/haproxy28/distinfo
+1-1net/haproxy28/Makefile
+4-42 files

FreeBSD/ports cac2b2dnet/haproxy30 distinfo Makefile

net/haproxy30: update to version 3.0.20.
DeltaFile
+3-3net/haproxy30/distinfo
+1-1net/haproxy30/Makefile
+4-42 files

FreeBSD/ports 9239bebnet/haproxy33 distinfo Makefile

net/haproxy33: update to version 3.3.7.
DeltaFile
+3-3net/haproxy33/distinfo
+1-1net/haproxy33/Makefile
+4-42 files

FreeBSD/ports 91ebb2fnet/haproxy distinfo Makefile

net/haproxy: update to version 3.2.16.
DeltaFile
+3-3net/haproxy/distinfo
+1-1net/haproxy/Makefile
+4-42 files

LLVM/project c8a148blldb/include/lldb/Target Process.h, lldb/source/Target Process.cpp

fixup! fix order of class declaration
DeltaFile
+14-12lldb/include/lldb/Target/Process.h
+2-3lldb/source/Target/Process.cpp
+16-152 files

FreeBSD/ports 4e04985ports-mgmt/pkg-devel Makefile

ports-mgmt/pkg-devel: fix missing pkg.conf.sample

PR:     294836
DeltaFile
+1-0ports-mgmt/pkg-devel/Makefile
+1-01 files

FreeBSD/ports e339a6cwww/nextcloud-notes distinfo Makefile

www/nextcloud-notes: Update to 5.0.0
DeltaFile
+3-3www/nextcloud-notes/distinfo
+2-2www/nextcloud-notes/Makefile
+5-52 files

LLVM/project e9ad511llvm/lib/Transforms/Vectorize VPRecipeBuilder.h

[VPlan] Remove unused PhisToFix member from VPRecipeBuilder. NFC (#194451)

The field is not referenced anywhere; the only PhisToFix in the codebase
is a local variable in VPlanConstruction.cpp.
DeltaFile
+0-5llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
+0-51 files

FreeBSD/ports e647f32mail/nextcloud-mail distinfo Makefile

mail/nextcloud-mail: Update to 5.7.13
DeltaFile
+3-3mail/nextcloud-mail/distinfo
+1-1mail/nextcloud-mail/Makefile
+4-42 files