FreeBSD/ports 1370086devel/arduino-irremote distinfo Makefile

devel/arduino-irremote: Update to 4.6.0

Changes since 4.5.0:

 -  Fixed missing ESP IRAM_ATTR for receiving interrupt.

 -  Changed USE_DEFAULT_FEEDBACK_LED_PIN from 0 to 0xFF, because
    megaTinyCore defines the not special pin PIN_PA4 as 0.

 -  Changed timer for ATtiny16X4.

 -  Fixed missing initialization with pinMode() for feedback LED.

 -  Fixed bitmask error in sendBiphaseData() when not sending start
    bit.

 -  Improved decodeSamsung().

 -  OpenLASIR protocol added by danielweidman.

    [8 lines not shown]
DeltaFile
+3-3devel/arduino-irremote/distinfo
+1-1devel/arduino-irremote/Makefile
+4-42 files

LLVM/project 9deb21bllvm/cmake/modules HandleLLVMOptions.cmake

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+8-0llvm/cmake/modules/HandleLLVMOptions.cmake
+8-01 files

LLVM/project 60eac41clang/lib/Analysis/Scalable ModelStringConversions.h, clang/lib/Analysis/Scalable/Serialization JSONFormat.cpp

[clang][ssaf] Improve serialization for Model types and error messages in `JSONFormat`

This changes fixes the diagnostic infrastructure in `JSONFormat`
implementation to pass model objects (`EntityId`, `EntityLinkage`,
`BuildNamespace`, `NestedBuildNamespace`, `SummaryName`) directly to
`ErrorBuilder` instead of manually extracting their components. This
relies on existing `llvm::format_provider` specializations for these
objects.

To support consistent string conversion for `BuildNamespaceKind` and
`EntityLinkageType`, across both serialization and `operator<<`,
`toString`/`fromString` functions have been introduced in an internal
header `ModelStringConversions.h`.

`EntityLinkage::LinkageType` is promoted to a standalone enum class
`EntityLinkageType` at namespace scope, following the same pattern as
`BuildNamespaceKind`.

Tests have been added for `operator<<` and `format_provider` for all

    [2 lines not shown]
DeltaFile
+140-134clang/unittests/Analysis/Scalable/Serialization/JSONFormatTest/TUSummaryTest.cpp
+58-71clang/lib/Analysis/Scalable/Serialization/JSONFormat.cpp
+106-0clang/unittests/Analysis/Scalable/ModelStringConversionsTest.cpp
+87-0clang/lib/Analysis/Scalable/ModelStringConversions.h
+42-23clang/unittests/Analysis/Scalable/BuildNamespaceTest.cpp
+41-3clang/unittests/Analysis/Scalable/EntityLinkageTest.cpp
+474-23112 files not shown
+567-30318 files

FreeBSD/doc 0f71ddbwebsite/content/en where.adoc

remove stale FreeBSD Mall links

PR: 293468
DeltaFile
+1-1website/content/en/where.adoc
+1-11 files

LLVM/project 6c532a6clang/lib/CodeGen CGDecl.cpp CGOpenMPRuntimeGPU.cpp

[OpenMP] Remove NVPTX local addrspace on parameters (#183195)

In CGOpenMPRuntimeGPU::translateParameter, reference-type captured
variables were translated to pointer parameters with two address-space
annotations:

1. LangAS::opencl_global on the pointee (for map'd variables), which
correctly produces ptr addrspace(1) in NVPTX IR.
2. getLangASFromTargetAS(NVPTX_local_addr=5) on the pointer itself,
annotating the parameter as living in NVPTX local (stack) memory.

The second annotation is incorrect at the Clang type-system level:
EmitParmDecl only supports parameters to be in LangAS::Default (or the
special cases for OpenCL).

Temporarily add an assert in EmitParmDecl that catches parameters with
non-default address spaces in non-OpenCL compilations, and fix the
violation by dropping the NVPTX_local_addr addAddressSpace call.


    [8 lines not shown]
DeltaFile
+2-0clang/lib/CodeGen/CGDecl.cpp
+0-2clang/lib/CodeGen/CGOpenMPRuntimeGPU.cpp
+2-22 files

LLVM/project dc66b51llvm/lib/Target/PowerPC PPCISelLowering.cpp PPC.td, llvm/test/CodeGen/PowerPC fmf-propagation.ll

[PowerPC] Remove `NoNaNsFPMath` uses (#183449)

DeltaFile
+2-221llvm/test/CodeGen/PowerPC/fmf-propagation.ll
+1-3llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+0-4llvm/lib/Target/PowerPC/PPC.td
+3-2283 files

LLVM/project 593c77cclang/lib/Sema SemaOverload.cpp, clang/test/SemaTemplate temp_arg_nontype_cxx11.cpp

[clang] stop error recovery in SFINAE for narrowing in converted constant expressions

A narrowing conversion in a converted constant expression should produce an
invalid expression so that [temp.deduct.general]p7 is satisfied, by stopping
substitution at this point.

Fixes #167709
DeltaFile
+10-1clang/test/SemaTemplate/temp_arg_nontype_cxx11.cpp
+8-1clang/lib/Sema/SemaOverload.cpp
+18-22 files

LLVM/project aae3843clang/docs ReleaseNotes.rst, clang/lib/AST ExprConstant.cpp

[Clang][AST] Fix extending an unsigned to signed in `ExprConstant.cpp` (#180563)

Fixes #154713.

The crash was due to `Index` sometimes being an unsigned 64-bit integer
which was being zero-extended to a signed 64-bit, triggering an
assertion failure in `APSInt::getExtValue`. This patch zero-extends it
to a unsigned 64-bit integer instead, since `HandleLValueVectorElement`
takes in a `uint64_t` anyway.
DeltaFile
+13-0clang/test/SemaCXX/vector.cpp
+1-1clang/lib/AST/ExprConstant.cpp
+1-0clang/docs/ReleaseNotes.rst
+15-13 files

OpenBSD/src dD9nIMvsys/dev/acpi acpidmar.c

   Reserve the first MB of the DVA address space because qwx(4) doesn't
   succeed in doing DMA when the DVA is 0x1000 and PCI-PCI bridges may not
   forward address in part of that first MB as well.

   ok chris@
VersionDeltaFile
1.11+12-2sys/dev/acpi/acpidmar.c
+12-21 files

FreeBSD/doc ce5cc64website/data/en/vendors consulting.toml misc.toml

remove stale FreeBSD Mall links

PR: 293468
DeltaFile
+0-7website/data/en/vendors/consulting.toml
+0-5website/data/en/vendors/misc.toml
+0-122 files

LLVM/project afe985cflang/include/flang/Parser openmp-utils.h

[flang][OpenMP] Add is_range<R> trait to detect classes with begin/end, NFC
DeltaFile
+16-9flang/include/flang/Parser/openmp-utils.h
+16-91 files

LLVM/project cc8d8a2llvm/test/CodeGen/SystemZ zos-ada-relocations.ll

Update test case to account for ALIAS syntax change.
DeltaFile
+1-1llvm/test/CodeGen/SystemZ/zos-ada-relocations.ll
+1-11 files

FreeBSD/src 73d9153tests/sys/kern Makefile

tests/kern: put ssl_sendfile under MK_OPENSSL != no

Reported by:    wosch
DeltaFile
+1-1tests/sys/kern/Makefile
+1-11 files

LLVM/project 176b134llvm/lib/Target/SystemZ SystemZAsmPrinter.cpp, llvm/test/CodeGen/SystemZ zos-ada-relocations.ll

[SystemZ] Emit external aliases for indirect function descriptors in the ADA section

This is the last of the three patches aimed to support indirect symbol handling for
the SystemZ backend.

An external alias is emitted for indirect function descriptors within the ADA
section, rather than a temporary alias, while also setting all of the appropriate
symbol attributes that are needed for the HLASM streamer to emit the correct XATTR
and ALIAS instructions for the indirect symbols.

Moreover, this patch updates the `CodeGen/SystemZ/zos-ada-relocations.ll` test
as the ADA section is currently the only user of indirect symbols on z/OS.
DeltaFile
+7-4llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
+5-1llvm/test/CodeGen/SystemZ/zos-ada-relocations.ll
+12-52 files

LLVM/project 502aa43llvm/lib/MC MCAsmInfoGOFF.cpp, llvm/lib/Target/SystemZ/MCTargetDesc SystemZHLASMAsmStreamer.cpp

Fix syntax of alias.
DeltaFile
+7-6llvm/lib/MC/MCAsmInfoGOFF.cpp
+2-2llvm/lib/Target/SystemZ/MCTargetDesc/SystemZHLASMAsmStreamer.cpp
+9-82 files

FreeBSD/src 5547a7bsys/netinet ip_divert.c

divert: Use a better source identifier for netisr_queue_src() calls

These opaque IDs are used by netisr to distribute work among threads.
The mapping function is simply SourceID % numthreads, so using socket
addresses as source IDs isn't going to distribute packets well due to
alignment.

Use the divert socket's generation number instead, as that suits this
purpose much better.

Reviewed by:    zlei, glebius
MFC after:      1 week
Sponsored by:   OPNsense
Sponsored by:   Klara, Inc.
Differential Revision:  https://reviews.freebsd.org/D55537
DeltaFile
+4-2sys/netinet/ip_divert.c
+4-21 files

LLVM/project 19c862dclang/lib/CIR/CodeGen CIRGenFunction.cpp CIRGenExprCXX.cpp

[CIR][NFC] Fix unused variable warnings (#183604)

We have accumulated four places where variables were only being used in
asserts. This change silences the warnings for that.
DeltaFile
+3-2clang/lib/CIR/CodeGen/CIRGenFunction.cpp
+1-1clang/lib/CIR/CodeGen/CIRGenExprCXX.cpp
+1-1clang/lib/CIR/CodeGen/CIRGenAsm.cpp
+5-43 files

pfSense/pfsense ce47048src/usr/local/www system_gateway_groups.php

Remove stale gw group "dirty" flag file

The gateway group "dirty" flag file is left behind when a gateway group
is added and removed without applying changes in between.
DeltaFile
+4-0src/usr/local/www/system_gateway_groups.php
+4-01 files

FreeBSD/ports 566266adevel/libunistring distinfo Makefile

devel/libunistring: Update 1.4.1 => 1.4.2

Changelog:
 - Prepare for 1.4.2 release.
   * version.sh: Bump version number, date, gnulib version.
   * README: Update version.
   * NEWS: Update.
 - Sync with gnulib.
   * lib/unistring/cdefs.h: Update from gnulib/m4/gnulib-common.m4.
 - (_GL_UNNAMED): New macro.
 - (_UC_UNNAMED): Apply "New C macro _GL_UNNAMED".
 - Make the generated <unistring/stdint.h> more usable in C++ mode.
   * lib/Makefile.am (unistring/stdint.h): In C++ 11 or newer mode, just
     use <cstdint>.

PR:     293435
DeltaFile
+3-3devel/libunistring/distinfo
+1-1devel/libunistring/Makefile
+4-42 files

FreeBSD/ports 4302ce7security/p5-openxpki-clca distinfo Makefile

security/p5-openxpki-clca: Update 1.20 => 1.21

Commit log:
https://github.com/openxpki/clca/compare/v1.20...v1.21

PR:     293444
DeltaFile
+3-3security/p5-openxpki-clca/distinfo
+1-1security/p5-openxpki-clca/Makefile
+4-42 files

NetBSD/pkgsrc uF6mHF4security/pcsc-tools distinfo

   pcsc-tools: switch to the available tarball

   confirmed correct with upstream
VersionDeltaFile
1.18+4-4security/pcsc-tools/distinfo
+4-41 files

FreeBSD/ports ec2ab00textproc/moor distinfo Makefile

textproc/moor: Update 2.10.4 => 2.11.0

Changelogs:
- https://github.com/walles/moor/releases/tag/v2.10.5
- https://github.com/walles/moor/releases/tag/v2.11.0

Reviewed by:    osa, vvd (mentors)
Approved by:    osa, vvd (mentors)
Differential Revision: https://reviews.freebsd.org/D55540
DeltaFile
+5-5textproc/moor/distinfo
+1-1textproc/moor/Makefile
+6-62 files

FreeBSD/ports 030a121ports-mgmt/pkg_replace distinfo Makefile

ports-mgmt/pkg_replace: Update 20260209 => 20260219

Changelog:
https://github.com/kdeguchi/pkg_replace/releases/tag/20260219

PR:     293452
DeltaFile
+3-3ports-mgmt/pkg_replace/distinfo
+1-1ports-mgmt/pkg_replace/Makefile
+4-42 files

NetBSD/pkgsrc-wip 49bf178. Makefile, wayvnc Makefile DESCR

wayvnc: add incomplete package
DeltaFile
+28-0wayvnc/Makefile
+6-0wayvnc/DESCR
+5-0wayvnc/distinfo
+4-0wayvnc/PLIST
+3-0Makefile
+46-05 files

NetBSD/pkgsrc-wip 31f815cneatvnc Makefile buildlink3.mk

neatvnc: new package
DeltaFile
+26-0neatvnc/Makefile
+16-0neatvnc/buildlink3.mk
+7-0neatvnc/DESCR
+6-0neatvnc/PLIST
+5-0neatvnc/distinfo
+60-05 files

NetBSD/pkgsrc-wip 79be0b0aml Makefile DESCR

aml: add new package
DeltaFile
+22-0aml/Makefile
+19-0aml/DESCR
+12-0aml/buildlink3.mk
+6-0aml/PLIST
+5-0aml/distinfo
+64-05 files

LLVM/project 25e1577clang/tools/clang-linker-wrapper ClangLinkerWrapper.cpp

[Clang] Add response file support to clang-linker-wrapper (#183598)

Summary:
This is needed on some platforms like Windows when the generated command
line becomes too large. This seems to be occurring in practice so we
need to support this. Uses the same basic support clang does.

No test because there isn't any current infrastructure to support it,
will likely be "tested" by ROCBLAS builds not failing anymore on
Windows.
DeltaFile
+29-1clang/tools/clang-linker-wrapper/ClangLinkerWrapper.cpp
+29-11 files

FreeBSD/ports d46b321net/samba422 Makefile

net/samba422: opt out from Features/fortify.mk

[...]
Checking for freebsd sendfile support                                                           : not found
sendfile support not found but it was requested !
(complete log in /wrkdirs/usr/ports/net/samba422/work/samba-4.22.6/bin/config.log)
===>  Script "configure" failed unexpectedly.
[...]

PR:     292391
DeltaFile
+1-0net/samba422/Makefile
+1-01 files

FreeBSD/ports 46aed1fnet/samba423 Makefile

net/samba423: opt out from Features/fortify.mk

[...]
Checking for freebsd sendfile support                                                           : not found
sendfile support not found but it was requested !
(complete log in /wrkdirs/usr/ports/net/samba423/work/samba-4.23.4/bin/config.log)
===>  Script "configure" failed unexpectedly.
[...]

PR:     292392
DeltaFile
+1-0net/samba423/Makefile
+1-01 files

FreeBSD/ports b513719net/samba420 Makefile

net/samba420: opt out from Features/fortify.mk

[...]
Checking for freebsd sendfile support                                                           : not found
sendfile support not found but it was requested !
(complete log in /wrkdirs/usr/ports/net/samba420/work/samba-4.20.8/bin/config.log)
===>  Script "configure" failed unexpectedly.
[...]

PR:     292390
DeltaFile
+1-0net/samba420/Makefile
+1-01 files