FreeBSD/ports 70225c2chinese/fcitx Makefile, chinese/fcitx/files pkg-message.in

chinese/fcitx: Fix options GTK2 and GTK3, improve port

GTK2 and GTK3 options aren't working properly: even if disable GTK2, it
gets re-enabled GTK2.

Improve port:
- Replace PORTVERSION with DISTVERSION.
- Fix warnings from portclippy.
- Set dependency from ecm as build.
- Convert CMAKE_ARGS to CMAKE_ON and CMAKE_OFF.
- Replace ".if ${PORT_OPTIONS:M***}" with new style options.
- Remove unnecessary KDE_MAN_PREFIX - it have default value.
- Remove description of Qt4 module from pkg-message.
- Use DESKTOPDIR in pkg-message.

PR:             294883
Approved by:    lichray at gmail.com (maintainer)
Sponsored by:   UNIS Labs
Co-authored-by: Ken DEGUCHI <kdeguchi at sz.tokoha-u.ac.jp>

    [3 lines not shown]
DeltaFile
+44-61chinese/fcitx/Makefile
+1-7chinese/fcitx/files/pkg-message.in
+45-682 files

FreeBSD/src 7a40b8asys/dev/dpaa if_memac_fdt.c if_memac.h

dpaa: Fix copyright headers

Reported by:    ziaee@
Fixes:  fd8d34ce27 ("dpaa: Migrate from NCSW base to a home-grown driver")
DeltaFile
+3-22sys/dev/dpaa/if_memac_fdt.c
+3-22sys/dev/dpaa/if_memac.h
+1-23sys/dev/dpaa/fman_port_if.m
+3-3sys/dev/dpaa/fman_xmdio.c
+3-3sys/dev/dpaa/fman_port.h
+3-3sys/dev/dpaa/fman_port.c
+16-7615 files not shown
+47-10721 files

FreeBSD/src 7b5a23bsys/dev/iicbus/rtc rs5c372a.c

rs5c372a: Fix copyright header

Reported by:    ziaee@
Fixes:  d22051b18 ("iicbus/rtc: Add driver for the Ricoh rs5c372 RTC")
DeltaFile
+2-22sys/dev/iicbus/rtc/rs5c372a.c
+2-221 files

LLVM/project 5c0e063.github/workflows release-tasks.yml

workflows/release-tasks: remove duplicate environment specification
DeltaFile
+0-1.github/workflows/release-tasks.yml
+0-11 files

FreeBSD/ports 3b9c03fchinese/fcitx Makefile, chinese/fcitx/files pkg-message.in

chinese/fcitx: Fix options GTK2 and GTK3, improve port

GTK2 and GTK3 options aren't working properly: even if disable GTK2, it
gets re-enabled GTK2.

Improve port:
- Replace PORTVERSION with DISTVERSION.
- Fix warnings from portclippy.
- Set dependency from ecm as build.
- Convert CMAKE_ARGS to CMAKE_ON and CMAKE_OFF.
- Replace ".if ${PORT_OPTIONS:M***}" with new style options.
- Remove unnecessary KDE_MAN_PREFIX - it have default value.
- Remove description of Qt4 module from pkg-message.
- Use DESKTOPDIR in pkg-message.

PR:             294883
Approved by:    lichray at gmail.com (maintainer)
Sponsored by:   UNIS Labs
Co-authored-by: Ken DEGUCHI <kdeguchi at sz.tokoha-u.ac.jp>
MFH:            2026Q2
DeltaFile
+44-61chinese/fcitx/Makefile
+1-7chinese/fcitx/files/pkg-message.in
+45-682 files

LLVM/project 2a338aellvm/utils/FileCheck FileCheck.cpp

Apply clang-format
DeltaFile
+2-2llvm/utils/FileCheck/FileCheck.cpp
+2-21 files

LLVM/project 0b65233libcxx/docs/ReleaseNotes 23.rst, libcxx/include algorithm

[libc++] Implement `ranges::fold_right` (#193997)

- Part of https://github.com/llvm/llvm-project/issues/105208.
- Closes https://github.com/llvm/llvm-project/issues/174060.
DeltaFile
+196-0libcxx/test/std/algorithms/alg.nonmodifying/alg.fold/ranges.fold_right.pass.cpp
+47-0libcxx/include/__algorithm/ranges_fold.h
+8-0libcxx/include/algorithm
+3-4libcxx/test/benchmarks/algorithms/nonmodifying/fold.bench.cpp
+4-0libcxx/test/libcxx/algorithms/nodiscard.verify.cpp
+2-2libcxx/docs/ReleaseNotes/23.rst
+260-63 files not shown
+263-89 files

GhostBSD/ports 53751afmisc/bun-decompile pkg-plist, misc/openclaw pkg-plist

Merge remote-tracking branch 'freebsd/main'
DeltaFile
+0-75,163misc/openclaw/pkg-plist
+0-15,936www/firefox-esr/files/patch-bug1962139-c27-ffmpeg8
+1,121-5,604misc/openclaw/files/package-lock.json
+2,552-2,967www/homepage/pkg-plist
+4,798-0misc/bun-decompile/pkg-plist
+1,686-3,080net-mgmt/icinga-php-thirdparty/pkg-plist
+10,157-102,7505,950 files not shown
+128,756-157,5605,956 files

FreeBSD/src ee58056stand/powerpc/boot1.chrp Makefile

boot1.chrp: Specify --image-base

This is required for LLVM 22's ld.lld to avoid a build error:

ld.lld: error: section '.text' address (0x38000) is smaller than image base (0x10000000); specify --image-base
ld.lld: error: section '.rodata' address (0x3b308) is smaller than image base (0x10000000); specify --image-base
ld.lld: error: section '.data' address (0x3b610) is smaller than image base (0x10000000); specify --image-base
ld.lld: error: section '.bss' address (0x3f618) is smaller than image base (0x10000000); specify --image-base

Use 0x38000 for the image base, which is the address of the lowest
(and only) LOAD segment in the file.

Sponsored by:   https://www.patreon.com/bsdivy
Differential Revision:  https://reviews.freebsd.org/D56459

(cherry picked from commit aa0bc7cca153f67f8becec8a8fb259ff5fd30fd0)
DeltaFile
+1-1stand/powerpc/boot1.chrp/Makefile
+1-11 files

FreeBSD/src 0a919e2lib/libifconfig libifconfig_bridge.c

libifconfig: Skip bridge VLAN config for span members

bridge(4) doesn't support BRDGGIFVLANSET for span members, which
means if a span interface is configured, libifconfig will fail to
fetch bridge members.  Skip this for IFBIF_SPAN members.

PR:     292634
MFC after:      3 days
Reported by:    Emrion <kmachine at free.fr>
Reviewed by:    pouria, zlei
Sponsored by:   https://www.patreon.com/bsdivy
Differential Revision:  https://reviews.freebsd.org/D56694

(cherry picked from commit 454322c08b8aa181939c8d920472f03cfd591032)
DeltaFile
+5-0lib/libifconfig/libifconfig_bridge.c
+5-01 files

LLVM/project 94e005dllvm/test/CodeGen/DirectX discard_error.ll firstbitlow_error.ll

[DirectX] Update error messages after #194061 (#195553)

Since DirectX is an experimental target these tests aren't failing on
public bots, but they obviously do when building DirectX.
DeltaFile
+1-1llvm/test/CodeGen/DirectX/discard_error.ll
+1-1llvm/test/CodeGen/DirectX/firstbitlow_error.ll
+1-1llvm/test/CodeGen/DirectX/firstbitshigh_error.ll
+1-1llvm/test/CodeGen/DirectX/firstbituhigh_error.ll
+1-1llvm/test/CodeGen/DirectX/saturate_errors.ll
+5-55 files

LLVM/project b4e81b9llvm/test/CodeGen/DirectX/ContainerData RuntimeInfoCS.ll

[DirectX] Add missing test update for #191528 (#195552)

In #191528 we added the string table to the YAML and updated many tests
that were affected, but it looks like this one was missed.
DeltaFile
+4-0llvm/test/CodeGen/DirectX/ContainerData/RuntimeInfoCS.ll
+4-01 files

FreeBSD/src 457c621sys/fs/nfsserver nfs_nfsdstate.c

nfsd: Disable use of callbacks for NFSv4.0

Commit 71ac1ec5c9d9 disabled callbacks for the NFS
client for NFSv4.0.  This patch does the same for
the NFSv4.0 server.

The only use for callbacks for NFSv4.0 is delegations
and delegations rarely work well for NFSv4.0 anyhow.

Therefore, this patch disables callbacks for the
NFSv4.0 server.  This is the same behavior as
occurs when vfs.nfsd.issue_delegations is 0.

This change allowed the functions called
nfsrv_getclientipaddr() and nfsrv_getipnumber() to be
removed from the kernel.

MFC after:      2 weeks
DeltaFile
+38-245sys/fs/nfsserver/nfs_nfsdstate.c
+38-2451 files

FreeBSD/ports 12f571bmisc/snakemake Makefile distinfo

misc/snakemake: update 9.19.0 → 9.20.0

Reported by:    portscout
DeltaFile
+4-3misc/snakemake/Makefile
+3-3misc/snakemake/distinfo
+7-62 files

GhostBSD/ports d6234acsysutils/xcp distinfo Makefile

sysutils/xcp: update 0.24.7 → 0.24.8
DeltaFile
+141-113sysutils/xcp/distinfo
+70-57sysutils/xcp/Makefile
+211-1702 files

GhostBSD/ports f45c008textproc/cpp-peglib distinfo Makefile

textproc/cpp-peglib: update 1.10.2 → 1.10.3
DeltaFile
+3-3textproc/cpp-peglib/distinfo
+2-2textproc/cpp-peglib/Makefile
+5-52 files

FreeBSD/ports 02ba113deskutils/qmd Makefile, deskutils/qmd/files package-lock.json package-lock-node-llama-cpp.json

deskutils/qmd: New port: On-device hybrid search for markdown files
DeltaFile
+3,715-0deskutils/qmd/files/package-lock.json
+1,808-0deskutils/qmd/files/package-lock-node-llama-cpp.json
+467-0deskutils/qmd/files/package-lock-better-sqlite3.json
+124-0deskutils/qmd/Makefile
+74-0deskutils/qmd/files/package-lock-tree-sitter-typescript.json
+54-0deskutils/qmd/files/package-lock-tree-sitter-go.json
+6,242-011 files not shown
+6,527-017 files

GhostBSD/ports 7f4d0besecurity/kuku pkg-plist distinfo

security/kuku: update 2.1.0 → 3.0.0

Reported by:    portscout
DeltaFile
+13-13security/kuku/pkg-plist
+3-3security/kuku/distinfo
+5-1security/kuku/Makefile
+21-173 files

GhostBSD/ports 02ba113deskutils/qmd Makefile, deskutils/qmd/files package-lock.json package-lock-node-llama-cpp.json

deskutils/qmd: New port: On-device hybrid search for markdown files
DeltaFile
+3,715-0deskutils/qmd/files/package-lock.json
+1,808-0deskutils/qmd/files/package-lock-node-llama-cpp.json
+467-0deskutils/qmd/files/package-lock-better-sqlite3.json
+124-0deskutils/qmd/Makefile
+74-0deskutils/qmd/files/package-lock-tree-sitter-typescript.json
+54-0deskutils/qmd/files/package-lock-tree-sitter-go.json
+6,242-011 files not shown
+6,527-017 files

FreeBSD/ports 7f4d0besecurity/kuku pkg-plist Makefile

security/kuku: update 2.1.0 → 3.0.0

Reported by:    portscout
DeltaFile
+13-13security/kuku/pkg-plist
+5-1security/kuku/Makefile
+3-3security/kuku/distinfo
+21-173 files

FreeBSD/ports d6234acsysutils/xcp distinfo Makefile

sysutils/xcp: update 0.24.7 → 0.24.8
DeltaFile
+141-113sysutils/xcp/distinfo
+70-57sysutils/xcp/Makefile
+211-1702 files

FreeBSD/ports f45c008textproc/cpp-peglib distinfo Makefile

textproc/cpp-peglib: update 1.10.2 → 1.10.3
DeltaFile
+3-3textproc/cpp-peglib/distinfo
+2-2textproc/cpp-peglib/Makefile
+5-52 files

FreeBSD/ports 8033376x11/rio distinfo Makefile

x11/rio: update 0.4.0 → 0.4.2
DeltaFile
+7-7x11/rio/distinfo
+3-3x11/rio/Makefile
+10-102 files

GhostBSD/ports 12f571bmisc/snakemake Makefile distinfo

misc/snakemake: update 9.19.0 → 9.20.0

Reported by:    portscout
DeltaFile
+4-3misc/snakemake/Makefile
+3-3misc/snakemake/distinfo
+7-62 files

GhostBSD/ports 8033376x11/rio distinfo Makefile

x11/rio: update 0.4.0 → 0.4.2
DeltaFile
+7-7x11/rio/distinfo
+3-3x11/rio/Makefile
+10-102 files

GhostBSD/ports a9b92badeskutils/skim distinfo Makefile

deskutils/skim: update 4.6.1 → 4.6.2
DeltaFile
+21-21deskutils/skim/distinfo
+10-10deskutils/skim/Makefile
+31-312 files

FreeBSD/ports a9b92badeskutils/skim distinfo Makefile

deskutils/skim: update 4.6.1 → 4.6.2
DeltaFile
+21-21deskutils/skim/distinfo
+10-10deskutils/skim/Makefile
+31-312 files

NetBSD/src ZD300Xrcommon/dist/zlib zutil.h

   No #include <userland.header> in KERNEL or STANDALONE

   This is another step towards fixing the builds.
VersionDeltaFile
1.10+5-3common/dist/zlib/zutil.h
+5-31 files

NetBSD/src 2THRpUtsys/uvm uvm_pmap.h

   Reduce the pmap API surface exposed to modules.  Of the ones that remain,
   you could argue that those shouldn't be exposed either, but our file
   system <-> pager interface is not that great, among other things, so
   they have to remain for now.
VersionDeltaFile
1.44+57-48sys/uvm/uvm_pmap.h
+57-481 files

LLVM/project 6e72c62lld/ELF OutputSections.cpp, lld/test/ELF relocatable-crel.s

[ELF] Remove duplicate SHT_CREL writeTo branch and cover discarded section symbol path. NFC (#195558)

OutputSection::writeTo had two identical
`if (type == SHT_CREL && !(flags & SHF_ALLOC))` blocks added together in
0af07c078798 (#98115). Drop a dead copy.

A section relocation against a /DISCARD/'d section sees the section
symbol demoted to Undefined. Add a -r --crel case to relocatable-crel.s
that exercises that path.
DeltaFile
+22-0lld/test/ELF/relocatable-crel.s
+0-6lld/ELF/OutputSections.cpp
+22-62 files