FreeBSD/ports 07e5f3ddevel/p5-Number-Bytes-Human Makefile

devel/p5-Number-Bytes-Human: Update maintainer address

Confirmed ownership via bug #105643.

PR:             295632
See also:       https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=105643
Reported by:    Sulev-Madis Silber (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+4-3devel/p5-Number-Bytes-Human/Makefile
+4-31 files

LLVM/project 81c523cclang/docs/ScalableStaticAnalysisFramework/developer-docs ForceLinkerHeaders.rst HowToExtend.rst, clang/include/clang/ScalableStaticAnalysisFramework SSAFBuiltinForceLinker.h BuiltinAnchorSources.def

Reapply "[clang][ssaf][NFC] Rework how the Force linker anchors are defined and used" (#194693)

This reverts commit 582958c4337f539e650096c0257a322315298e1a.

Drop "const" from these anchor variables - like they are in clang-tidy

Turns out, MSVC likely doesn't conform with the C++ standard and makes
`const volatile` global variables have *internal* linkage - while they
should have *external* linkage.

https://eel.is/c++draft/basic.link#3.2
```
(3) The name of an entity that belongs to a namespace scope has internal linkage if it is the name of
(3.1) a variable, variable template, function, or function template that is explicitly declared static; or
(3.2) a non-template variable of non-volatile const-qualified type, unless
(3.2.1) it is declared in the purview of a module interface unit (outside the private-module-fragment, if any) or module partition, or
(3.2.2) it is explicitly declared extern, or
(3.2.3) it is inline, or
(3.2.4) it was previously declared and the prior declaration did not have internal linkage; or

    [3 lines not shown]
DeltaFile
+15-50clang/include/clang/ScalableStaticAnalysisFramework/SSAFBuiltinForceLinker.h
+0-51clang/unittests/ScalableStaticAnalysisFramework/SSAFBuiltinTestForceLinker.h
+23-13clang/docs/ScalableStaticAnalysisFramework/developer-docs/ForceLinkerHeaders.rst
+30-0clang/include/clang/ScalableStaticAnalysisFramework/BuiltinAnchorSources.def
+17-10clang/docs/ScalableStaticAnalysisFramework/developer-docs/HowToExtend.rst
+0-23clang/unittests/ScalableStaticAnalysisFramework/SSAFTestForceLinker.h
+85-14720 files not shown
+135-20326 files

FreeBSD/ports a418c0bdevel/p5-Time-Stopwatch Makefile

devel/p5-Time-Stopwatch: Update maintainer address

Confirmed ownership via bug #105643.

While here, add LICENSE information and NO_ARCH.

PR:             295631
See also:       https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=105643
Reported by:    Sulev-Madis Silber (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+7-2devel/p5-Time-Stopwatch/Makefile
+7-21 files

NetBSD/pkgsrc-wip fff7768fresh Makefile

fresh: fix CARGO_INSTALL_ARGS for workspace root

Upstream moved the Cargo workspace root to the repo root in 0.3.9.
CARGO_WRKSRC must stay at the root for correct Cargo.lock discovery,
but cargo install needs --path pointing at the installable crate,
not the virtual workspace manifest.
DeltaFile
+1-0fresh/Makefile
+1-01 files

FreeBSD/src 36ab14dsys/netpfil/ipfilter/netinet ip_state.c

ipfilter: Fix NULL dereferences in ipf_checkicmp6matchingstate()

Add NULL checks for ic6 (the ICMPv6 header pointer from fin->fin_dp)
and oic (the inner ICMPv6 header from ofin.fin_dp after ipf_makefrip).
These pointers can be NULL when processing malformed ICMPv6 error
packets with extension headers.

Also fix the length validation: the original check (fin->fin_plen <
sizeof(ip6_t)) could never trigger because an earlier check already
ensures fin->fin_plen >= ICMP6ERR_MINPKTLEN (48). Replace with a proper
check that fin->fin_dlen contains at least ICMPERR_ICMPHLEN +
sizeof(ip6_t) bytes to ensure sufficient data exists for both the
ICMPv6 error header and the embedded IPv6 header.

PR:             288333
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2214
Signed-off-by:  Teddy Engel <engel.teddy at gmail.com>

(cherry picked from commit c028080749c09e68c555155df0e9f681ba63c6ae)
DeltaFile
+9-1sys/netpfil/ipfilter/netinet/ip_state.c
+9-11 files

FreeBSD/src f296b1fsys/netpfil/ipfilter/netinet fil.c

ipfilter: Validate length before checksum

Validate the length of the packet listed in the mbuf is the same as
the calculated packet length. If not reject the packet and bump the
bad packet stat.

PR:             295198
Differential Revision:  https://reviews.freebsd.org/D57095

(cherry picked from commit 8dfb0805fc31cd78940429ab0560dae7e8ab6536)
DeltaFile
+13-4sys/netpfil/ipfilter/netinet/fil.c
+13-41 files

FreeBSD/src fb0729bsys/netpfil/ipfilter/netinet fil.c

ipfilter: Add NULL check for fin_dp in ICMP packet handlers

Add NULL checks for fin->fin_dp in ipf_pr_icmp6() and ipf_pr_icmp()
before dereferencing. When processing packets with IPv6 extension
headers, ipf_pr_pullup() can succeed but fin->fin_dp may still be NULL
due to extension header processing leaving insufficient data for the
protocol header.

PR:             288333
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2214
Signed-off-by:  Teddy Engel <engel.teddy at gmail.com>

(cherry picked from commit 68ed81631afa20c07883f7f60343f6da8397ee41)
DeltaFile
+4-0sys/netpfil/ipfilter/netinet/fil.c
+4-01 files

FreeBSD/src a98f5fasys/netpfil/ipfilter/netinet fil.c

ipfilter: Add NULL check for fin_m in ipf_pr_icmp6()

Add NULL check for fin->fin_m before calling M_LEN() in the ICMPv6
error handling code path. When ipf_checkicmp6matchingstate() calls
ipf_makefrip() with a synthesized fr_info_t that has fin_m set to
NULL, the subsequent call to ipf_pr_ipv6hdr() can reach ipf_pr_icmp6()
which would crash when trying to access the mbuf via M_LEN().

PR:             288333
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2214
Signed-off-by:  Teddy Engel <engel.teddy at gmail.com>

(cherry picked from commit cdc40489a7a617b742e295cf9005b3569b45e823)
DeltaFile
+3-0sys/netpfil/ipfilter/netinet/fil.c
+3-01 files

FreeBSD/src 2349f5asys/netpfil/ipfilter/netinet ip_state.c

ipfilter: Fix NULL dereferences in ipf_checkicmp6matchingstate()

Add NULL checks for ic6 (the ICMPv6 header pointer from fin->fin_dp)
and oic (the inner ICMPv6 header from ofin.fin_dp after ipf_makefrip).
These pointers can be NULL when processing malformed ICMPv6 error
packets with extension headers.

Also fix the length validation: the original check (fin->fin_plen <
sizeof(ip6_t)) could never trigger because an earlier check already
ensures fin->fin_plen >= ICMP6ERR_MINPKTLEN (48). Replace with a proper
check that fin->fin_dlen contains at least ICMPERR_ICMPHLEN +
sizeof(ip6_t) bytes to ensure sufficient data exists for both the
ICMPv6 error header and the embedded IPv6 header.

PR:             288333
MFC after:      1 week
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2214
Signed-off-by:  Teddy Engel <engel.teddy at gmail.com>

(cherry picked from commit c028080749c09e68c555155df0e9f681ba63c6ae)
DeltaFile
+9-1sys/netpfil/ipfilter/netinet/ip_state.c
+9-11 files

FreeBSD/src 77dd10bsys/netpfil/ipfilter/netinet fil.c

ipfilter: Validate length before checksum

Validate the length of the packet listed in the mbuf is the same as
the calculated packet length. If not reject the packet and bump the
bad packet stat.

PR:             295198
Differential Revision:  https://reviews.freebsd.org/D57095

(cherry picked from commit 8dfb0805fc31cd78940429ab0560dae7e8ab6536)
DeltaFile
+13-4sys/netpfil/ipfilter/netinet/fil.c
+13-41 files

FreeBSD/src fefcd49sys/netpfil/ipfilter/netinet fil.c

ipfilter: Add NULL check for fin_m in ipf_pr_icmp6()

Add NULL check for fin->fin_m before calling M_LEN() in the ICMPv6
error handling code path. When ipf_checkicmp6matchingstate() calls
ipf_makefrip() with a synthesized fr_info_t that has fin_m set to
NULL, the subsequent call to ipf_pr_ipv6hdr() can reach ipf_pr_icmp6()
which would crash when trying to access the mbuf via M_LEN().

PR:             288333
MFC after:      1 week
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2214
Signed-off-by:  Teddy Engel <engel.teddy at gmail.com>

(cherry picked from commit cdc40489a7a617b742e295cf9005b3569b45e823)
DeltaFile
+3-0sys/netpfil/ipfilter/netinet/fil.c
+3-01 files

FreeBSD/src b2076f3sys/netpfil/ipfilter/netinet fil.c

ipfilter: Add NULL check for fin_dp in ICMP packet handlers

Add NULL checks for fin->fin_dp in ipf_pr_icmp6() and ipf_pr_icmp()
before dereferencing. When processing packets with IPv6 extension
headers, ipf_pr_pullup() can succeed but fin->fin_dp may still be NULL
due to extension header processing leaving insufficient data for the
protocol header.

PR:             288333
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2214
Signed-off-by:  Teddy Engel <engel.teddy at gmail.com>

(cherry picked from commit 68ed81631afa20c07883f7f60343f6da8397ee41)
DeltaFile
+4-0sys/netpfil/ipfilter/netinet/fil.c
+4-01 files

LLVM/project 1e1a1ff.github/workflows release-binaries-all.yml

workflows/release-binaries-all: Validate input and remove template expansion (#199427)

https://github.com/llvm/llvm-project/security/code-scanning/1695
DeltaFile
+8-1.github/workflows/release-binaries-all.yml
+8-11 files

FreeBSD/ports 413844bmultimedia/pipewire pkg-plist distinfo

multimedia/pipewire: update to 1.6.6

Bring in upstreamed patch to fix linux-specific EBADFD errno.

Reviewed by:    arrowd
Approved by:    lwhsu (mentor, implicitly)
Differential Revision:  https://reviews.freebsd.org/D57272
DeltaFile
+4-4multimedia/pipewire/pkg-plist
+5-3multimedia/pipewire/distinfo
+4-1multimedia/pipewire/Makefile
+13-83 files

FreeBSD/ports d0635eemultimedia/wireplumber distinfo pkg-plist

multimedia/wireplumber: update to 0.5.14

Reviewed by:    arrowd
Approved by:    lwhsu (mentor, implicitly)
Differential Revision:  https://reviews.freebsd.org/D57273
DeltaFile
+3-3multimedia/wireplumber/distinfo
+3-2multimedia/wireplumber/pkg-plist
+1-1multimedia/wireplumber/Makefile
+7-63 files

LLVM/project 78f5f77llvm/lib/Target/PowerPC PPCISelLowering.cpp, llvm/test/CodeGen/PowerPC ppc-i64-to-fp.ll

[PowerPC] Drop invalid range metadata when lowering i64 load to fp in INT_TO_FP (#198705)

When lowering an i64 load in LowerINT_TO_FP, we were forwarding the
original !range metadata to a new f64 load. This is invalid because the
metadata no longer matches the value type/semantics, and can trigger
assertions when lowering i64 to fp (double or float) conversions.

This patch fixes this by passing a nullptr for the Ranges operand when
calling getLoad() and adds extra test cases to cover signed/unsigned i64
to f32/f64 conversions and to ensure they do not assert when the !range
metadata is present.

The assertion this patch attempts to fix is:
```
Assertion failed: (!MMO->getRanges() || (mdconst::extract<ConstantInt>(MMO->getRanges()->getOperand(0)) ->getBitWidth() == MemVT.getScalarSizeInBits() && MemVT.isInteger())) && "Range metadata and load type must match!"
```
This assert was originally seen when building Rust on AIX.
DeltaFile
+100-0llvm/test/CodeGen/PowerPC/ppc-i64-to-fp.ll
+3-1llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+103-12 files

LLVM/project cafabacclang/docs ReleaseNotes.rst, clang/lib/AST DeclCXX.cpp

[clang] fix finding class template instantiation pattern for member specializations

Stop treating the member which a member specialization specializes as the pattern of
the former.

Split off from https://github.com/llvm/llvm-project/pull/199528
DeltaFile
+9-6clang/lib/AST/DeclCXX.cpp
+0-6clang/test/CXX/temp/temp.spec/temp.expl.spec/p7.cpp
+1-2clang/test/Modules/cxx-templates.cpp
+1-0clang/docs/ReleaseNotes.rst
+11-144 files

LLVM/project f0ae26c.github/workflows issue-release-workflow.yml

workflows/issue-release-workflow: Fix bug when specifying multiple commits (#199973)

All commits after the first one were being dropped in comments like
/cherry-pick <commit> <commit> ...

This was introduced by: 21df17aaaec2dd9dafd641c5dbfd96446c27921b
DeltaFile
+1-1.github/workflows/issue-release-workflow.yml
+1-11 files

OpenBSD/ports 7rGGpJ1devel/lua-language-server distinfo Makefile

   Update lua-language-server 3.18.0 -> 3.18.2
   Changelog: https://github.com/LuaLS/lua-language-server/blob/master/changelog.md
VersionDeltaFile
1.7+2-2devel/lua-language-server/distinfo
1.9+1-1devel/lua-language-server/Makefile
+3-32 files

FreeBSD/ports 876cf35www/nextcloud-forms distinfo Makefile

www/nextcloud-forms: Update to 5.2.8
DeltaFile
+3-3www/nextcloud-forms/distinfo
+1-1www/nextcloud-forms/Makefile
+4-42 files

FreeBSD/ports f45b405www/nextcloud-calendar distinfo Makefile

www/nextcloud-calendar: Update to 6.4.2
DeltaFile
+3-3www/nextcloud-calendar/distinfo
+1-1www/nextcloud-calendar/Makefile
+4-42 files

OpenBSD/ports 35yLfN0devel/py-trove-classifiers distinfo Makefile

   update to py3-trove-classifiers-2026.5.22.10
VersionDeltaFile
1.36+2-2devel/py-trove-classifiers/distinfo
1.39+1-1devel/py-trove-classifiers/Makefile
+3-32 files

NetBSD/pkgsrc-wip 414c132fresh Makefile distinfo

fresh: update to 0.3.9

- Bump version from 0.3.8 to 0.3.9
- Update CARGO_WRKSRC from crates/fresh-editor to workspace root
  (upstream moved Cargo.lock to repo root in this release)
- Regenerate distinfo checksums
DeltaFile
+6-6fresh/Makefile
+3-3fresh/distinfo
+9-92 files

LLVM/project 7de3f46llvm/lib/Analysis InstructionSimplify.cpp, llvm/test/Transforms/InstSimplify call.ll

[InstSimplify] Fold fshl/fshr of complementary shifts to identity (#196887)
DeltaFile
+69-0llvm/test/Transforms/InstSimplify/call.ll
+11-1llvm/lib/Analysis/InstructionSimplify.cpp
+80-12 files

FreeBSD/ports e9c105fmail/nextcloud-mail distinfo Makefile

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

FreeBSD/ports e4fe946www/nextcloud-contacts distinfo Makefile

www/nextcloud-contacts: Update to 8.5.1
DeltaFile
+3-3www/nextcloud-contacts/distinfo
+1-1www/nextcloud-contacts/Makefile
+4-42 files

FreeBSD/src bd15d6econtrib/libarchive/libarchive archive_string.c

libarchive: Force GNU iconv compatibility on FreeBSD

When libarchive is compiled with FreeBSD's native iconv instead of
libiconv, as happens with libarchive in the base system, we need to
configure iconv(3) to handle invalid sequences by returning -1, as
iconv_strncat_in_locale() assumes GNU iconv semantics.

This corresponds to upstream PR 3056.

PR:             294577
MFC after:      1 week
DeltaFile
+11-1contrib/libarchive/libarchive/archive_string.c
+11-11 files

FreeBSD/ports f485247www/mod_http2 distinfo Makefile

www/mod_http2: Update to 2.0.40
DeltaFile
+3-3www/mod_http2/distinfo
+1-1www/mod_http2/Makefile
+4-42 files

FreeBSD/src e9346d1lib/libutil login.conf.5

login.conf(5): Add missing resource limits

While here, reorder the table.

PR:             295618
MFC after:      1 week
Reviewed by:    olce
Differential Revision:  https://reviews.freebsd.org/D57258
DeltaFile
+6-5lib/libutil/login.conf.5
+6-51 files

FreeBSD/ports 5edba5dsecurity/libressl-devel distinfo Makefile

security/libressl-devel: Update to 4.3.2
DeltaFile
+3-3security/libressl-devel/distinfo
+1-1security/libressl-devel/Makefile
+4-42 files