FreeBSD/ports b3f5f55devel/R-cran-blob distinfo Makefile

devel/R-cran-blob: Update to 1.3.0

Changelog: https://cran.r-project.org/web/packages/blob/news/news.html
DeltaFile
+3-3devel/R-cran-blob/distinfo
+2-2devel/R-cran-blob/Makefile
+5-52 files

NetBSD/src kGBJLbWdoc 3RDPARTY

   update some programs
VersionDeltaFile
1.2158+20-18doc/3RDPARTY
+20-181 files

LLVM/project 3356df3clang/include/clang/Options Options.td, clang/lib/CodeGen CodeGenModule.cpp

[RFC][Clang][AMDGPU] Emit only delta target-features to reduce IR bloat

Currently, AMDGPU functions have `target-features` attribute populated with all default features for the target GPU. This is redundant because the backend can derive these defaults from the `target-cpu` attribute via `AMDGPUTargetMachine::getFeatureString()`.

In this PR, for AMDGPU targets only:

- Functions without explicit target attributes no longer emit `target-features`
- Functions with `__attribute__((target(...)))` or `-target-feature` emit only features that differ from the target's defaults (delta)

The backend already handles missing `target-features` correctly by falling back to the TargetMachine's defaults.

A new cc1 flag `-famdgpu-emit-full-target-features` is added to emit full features when needed.

Example:

Before:

```llvm
attributes #0 = { "target-cpu"="gfx90a" "target-features"="+16-bit-insts,+atomic-buffer-global-pk-add-f16-insts,+atomic-fadd-rtn-insts,+ci-insts,+dl-insts,+dot1-insts,+dot2-insts,..." }

    [13 lines not shown]
DeltaFile
+53-53clang/test/CodeGenOpenCL/amdgpu-features.cl
+70-0clang/test/CodeGenOpenCL/amdgpu-features-default-delta.cl
+43-5clang/lib/CodeGen/CodeGenModule.cpp
+4-6clang/test/CodeGenOpenCL/amdgpu-readonly-features-written-with-no-target.cl
+4-4clang/test/CodeGenOpenCL/amdgpu-enqueue-kernel.cl
+6-0clang/include/clang/Options/Options.td
+180-684 files not shown
+189-7310 files

FreeBSD/ports cabe711www/filepizza pkg-plist distinfo

www/filepizza: Update to 2.0.20251222

ChangeLog:
https://github.com/kern/filepizza/commits/60704b45e6e4ed0fbcc43931b759d0cb9536c146/
DeltaFile
+1,844-1,841www/filepizza/pkg-plist
+3-3www/filepizza/distinfo
+2-3www/filepizza/Makefile
+1,849-1,8473 files

FreeBSD/ports ad1243bsysutils/backrest distinfo Makefile

sysutils/backrest: Update to 1.11.1

ChangeLogs:

- https://github.com/garethgeorge/backrest/releases/tag/v1.11.0
- https://github.com/garethgeorge/backrest/releases/tag/v1.11.1
DeltaFile
+7-7sysutils/backrest/distinfo
+2-3sysutils/backrest/Makefile
+9-102 files

OpenBSD/ports HC1MqASgames/corsixth Makefile distinfo, games/corsixth/patches patch-CorsixTH_Lua_app_lua

   Update to latest version 0.69.1. Maintainer timeout. ok tb@
VersionDeltaFile
1.18+3-5games/corsixth/Makefile
1.9+5-1games/corsixth/pkg/PLIST
1.10+2-2games/corsixth/distinfo
1.6+0-0games/corsixth/patches/patch-CorsixTH_Lua_app_lua
+10-84 files

OpenBSD/ports 7rXdLjGgames/godot Makefile distinfo, games/godot/patches patch-core_object_cpp patch-thirdparty_embree_kernels_geometry_pointi_h

   Update to Godot 3.6.2, the latest 3.x version. ok op@
VersionDeltaFile
1.58+7-8games/godot/Makefile
1.25+4-4games/godot/distinfo
1.3+1-1games/godot/patches/patch-core_object_cpp
1.2+0-0games/godot/patches/patch-thirdparty_embree_kernels_geometry_pointi_h
1.2+0-0games/godot/patches/patch-thirdparty_embree_kernels_subdiv_bezier_curve_h
+12-135 files

LLVM/project f006cd7clang/lib/Interpreter IncrementalExecutor.cpp, clang/unittests/Interpreter OutOfProcessInterpreterTests.cpp

[clang-repl] Skip out-of-process execution due to compiler-rt path mismatch (#176198)

On some setups (Solaris), clang-repl attempts to enable out-of-process
execution,
but fails to locate the ORC runtime due to a mismatch between the
toolchain’s
expected compiler-rt path and the actual on-disk layout.

Specifically, ToolChain::getCompilerRT() relies on
getArchNameForCompilerRTLib(),
which returns an architecture name that does not match the Solaris
compiler-rt
directory naming. As a result, the ORC runtime (orc_rt) is not detected
at the
correct path, even though it exists under
lib/clang/<version>/lib/sunos/.

As an initial workaround, special-case Solaris in
getArchNameForCompilerRTLib() to return "sunos", aligning the expected

    [14 lines not shown]
DeltaFile
+84-53clang/unittests/Interpreter/OutOfProcessInterpreterTests.cpp
+3-3clang/lib/Interpreter/IncrementalExecutor.cpp
+87-562 files

LLVM/project 262a782llvm/lib/Target/AMDGPU SIInstrInfo.cpp SIInstrInfo.h, llvm/lib/Target/AMDGPU/Disassembler AMDGPUDisassembler.cpp

[AMDGPU] Fix inline constant encoding for `v_pk_fmac_f16`

This PR handles`v_pk_fmac_f16` inline constant encoding/decoding differences between pre-GFX11 and GFX11+ hardware.

- Pre-GFX11: fp16 inline constants produce (f16, 0) - value in low 16 bits, zero in high.
- GFX11+: fp16 inline constants are duplicated to both halves (f16, f16).
DeltaFile
+56-0llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+14-0llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+12-2llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
+10-0llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
+9-1llvm/lib/Target/AMDGPU/SIInstrInfo.h
+8-0llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
+109-36 files not shown
+133-912 files

NetBSD/src 6zVziTGlib/libedit refresh.c

   When trying to print a help message while editing a multiline entry, print
   move down enough so that the error message does not get printed on top of
   the newline from Yuishiro NAITO. Example program:

   #include <stdio.h>
   #include <histedit.h>

   char *
   prompt(EditLine *el)
   {
        return "(config) ";
   }

   static unsigned char
   help(EditLine *el, int ch)
   {

        printf("\n");
        printf("aaa:\n");

    [50 lines not shown]
VersionDeltaFile
1.61+11-3lib/libedit/refresh.c
+11-31 files

NetBSD/pkgsrc 7QobnRJmail/opendmarc options.mk Makefile

   mail/opendmarc: Add support of mariaDB as option
VersionDeltaFile
1.1+19-0mail/opendmarc/options.mk
1.35+3-2mail/opendmarc/Makefile
+22-22 files

OpenBSD/ports vuXDobEcad/horizon-eda Makefile distinfo, cad/horizon-eda/patches patch-src_pool-prj-mgr_pool-mgr_pool_remote_box_cpp patch-src_pool-prj-mgr_pool-mgr_pool_git_box_cpp

   cad/horizon-eda: update to 2.7.2

   Initial diff by Thomas <tom.longshine at web.de>, tweak and ok by me and ok tb@.
VersionDeltaFile
1.7+2-2cad/horizon-eda/Makefile
1.2+2-2cad/horizon-eda/distinfo
1.4+0-0cad/horizon-eda/patches/patch-src_pool-prj-mgr_pool-mgr_pool_remote_box_cpp
1.4+0-0cad/horizon-eda/patches/patch-src_pool-prj-mgr_pool-mgr_pool_git_box_cpp
+4-44 files

FreeBSD/ports 4bf67c6devel/R-cran-rstudioapi distinfo Makefile

devel/R-cran-rstudioapi: Update to 0.18.0

Reported by:    portscout
DeltaFile
+3-3devel/R-cran-rstudioapi/distinfo
+1-1devel/R-cran-rstudioapi/Makefile
+4-42 files

NetBSD/src 1lFAnC3doc 3RDPARTY CHANGES

   new byacc
VersionDeltaFile
1.2157+4-4doc/3RDPARTY
1.3219+2-1doc/CHANGES
+6-52 files

NetBSD/src aBHOlbcexternal/bsd/byacc/dist config.sub, external/bsd/byacc/dist/test expr.oxout.y grammar.y

   merge changes between 2024-01-09 and 2024-12-31
VersionDeltaFile
1.7+644-633external/bsd/byacc/dist/test/btyacc/expr.oxout.tab.c
1.6+628-618external/bsd/byacc/dist/test/yacc/expr.oxout.tab.c
1.4+596-596external/bsd/byacc/dist/test/expr.oxout.y
1.8+574-180external/bsd/byacc/dist/config.sub
1.7+162-150external/bsd/byacc/dist/test/btyacc/btyacc_demo.tab.c
1.2+260-49external/bsd/byacc/dist/test/grammar.y
+2,864-2,226108 files not shown
+7,203-5,469114 files

NetBSD/src RKx5m0Qexternal/bsd/byacc/dist configure config.sub, external/bsd/byacc/dist/test expr.oxout.y

   Import byacc-2024-12-31, previous was 2024-01-09

   2024-12-31  Thomas E. Dickey  <dickey at invisible-island.net>

        * package/pkgsrc/distinfo: regen

        * main.c: s/0/NULL/

        * main.c: gcc warning

        * reader.c:
        make UCH() consistent wrt IS_xxxx macros (prompted by patch by Christos Zoulas)

   2024-12-31  Christos Zoulas <christos at NetBSD.org>

        * main.c:
        from NetBSD - if "-o" option is given, derive the filename of the ".h"
        definitions-file by stripping commonly-used C/C++ suffixes such as ".c"
        and then adding ".h"

    [97 lines not shown]
VersionDeltaFile
1.1.1.6+644-633external/bsd/byacc/dist/test/btyacc/expr.oxout.tab.c
1.1.1.5+628-618external/bsd/byacc/dist/test/yacc/expr.oxout.tab.c
1.1.1.12+656-589external/bsd/byacc/dist/configure
1.1.1.3+596-596external/bsd/byacc/dist/test/expr.oxout.y
1.1.1.13+574-180external/bsd/byacc/dist/config.sub
1.1.1.9+162-150external/bsd/byacc/dist/test/btyacc/btyacc_demo.tab.c
+3,260-2,766118 files not shown
+7,919-6,125124 files

OpenBSD/src eD1i8z4usr.sbin/bgpd bgpd.conf.5, usr.sbin/hostapd hostapd.conf.5

   Slightly iprove a confusing wording in the parse.y manuals:
   The things that need quoting are not necessarily "argument names",
   and not even necessarily "names" at all, so just talk about "arguments".

   "I guess?" florian@ and no objection from otto@, both back in July 2025.

   Actually, the quoting rules are more complicated than the text makes
   believe, but i do not know how to better describe them.  It may not be
   easy because some suspect the implementation may be somewhat adhoc
   rather than based on cleary defined lexical rules.
VersionDeltaFile
1.252+3-3usr.sbin/bgpd/bgpd.conf.5
1.67+3-3usr.sbin/snmpd/snmpd.conf.5
1.51+3-3usr.sbin/hostapd/hostapd.conf.5
1.129+3-3usr.sbin/httpd/httpd.conf.5
1.8+3-3usr.sbin/iscsictl/iscsi.conf.5
1.30+3-3usr.sbin/ldapd/ldapd.conf.5
+18-1810 files not shown
+48-4816 files

NetBSD/pkgsrc mbprwRddoc CHANGES-2026

   doc: Updated games/chess-tui to 2.3.0
VersionDeltaFile
1.480+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc P2vUnb4games/chess-tui distinfo Makefile

   games/chess-tui: update to 2.3.0

   What's Changed

       fix: parse args before mousetrack by @thomas-mauran in #181
       fix: color popup piece scaling by @thomas-mauran in #186
       fix: size crash by @thomas-mauran in #182
       fix: ui history styling by @thomas-mauran in #187
       fix: lichess bugs by @thomas-mauran in #183
       fix: rust features to disable sound by @thomas-mauran in #184

   pkgsrc changes: disable audio feature and avoid alsa dependency.
VersionDeltaFile
1.12+10-7games/chess-tui/distinfo
1.12+4-5games/chess-tui/Makefile
1.11+2-1games/chess-tui/cargo-depends.mk
+16-133 files

LLVM/project 3457e7ellvm/lib/Transforms/Vectorize VPlanRecipes.cpp, llvm/test/Transforms/LoopVectorize/AArch64 select-costs.ll

[VPlan] Match inverted logical AND/OR for select costs.

VPlan transforms may invert logical AND/OR selects, which can impact
costs on targets the select is not cheap but the boolean AND/OR is.
Also match the inverted logical AND/OR to improve accuracy of the
cost estimation and fixes the underlying issue for the cost
divergence between legacy and VPlan-based cost model that caused
the revert of 01d34eb38fa058 in ed004cf42bf57c.
DeltaFile
+8-8llvm/test/Transforms/LoopVectorize/AArch64/select-costs.ll
+7-0llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+15-82 files

NetBSD/pkgsrc wlwaDkedoc CHANGES-2026

   doc: Updated devel/ruby-redmine60 to 6.0.8
VersionDeltaFile
1.479+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc lE7JXqndevel/ruby-redmine60 Makefile distinfo, devel/ruby-redmine60/patches patch-Gemfile

   devel/ruby-redmine60: update to 6.0.8

   6.0.8 (2026-01-05)

   Code cleanup/refactoring

   * Defect #43441: Fix failures in test/system/issues_test.rb
   * Patch #43638: Update copyright year to 2026

   Custom fields

   * Defect #43521: Saving a custom field fails with 500 when regular
     expression is invalid

   Gems support

   * Defect #43609: Tests fail with minitest 6.0

   Issues list

    [41 lines not shown]
VersionDeltaFile
1.5+37-6devel/ruby-redmine60/patches/patch-Gemfile
1.11+16-12devel/ruby-redmine60/Makefile
1.7+5-5devel/ruby-redmine60/distinfo
1.5+5-1devel/ruby-redmine60/PLIST
+63-244 files

FreeBSD/ports 7d9c193devel/R-cran-clock distinfo Makefile

devel/R-cran-clock: Update to 0.7.4

Reported by:    portscout
DeltaFile
+3-3devel/R-cran-clock/distinfo
+1-1devel/R-cran-clock/Makefile
+4-42 files

FreeBSD/doc 0060187documentation/content/en/books/porters-handbook/uses _index.adoc

phb: USES=fam is gone
DeltaFile
+0-8documentation/content/en/books/porters-handbook/uses/_index.adoc
+0-81 files

NetBSD/pkgsrc cy2PfmVdoc CHANGES-2026

   doc: Updated devel/ruby-redmine51 to 5.1.11
VersionDeltaFile
1.478+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 0d4d34pdevel/ruby-redmine51 PLIST distinfo

   devel/ruby-redmine51: update to 5.1.11

   5.1.11 (2026-01-05)

   Code cleanup/refactoring

   * Defect #43441: Fix failures in test/system/issues_test.rb
   * Patch #43638: Update copyright year to 2026

   Gems support

   * Defect #43609: Tests fail with minitest 6.0

   Security

   * Defect #43451: PostScript disguised as PDF can lead to arbitrary file
     operations via thumbnail generation
   * Defect #43634: Authorization bypass in Redmine allows modification of
     attachment metadata on invisible issues

    [2 lines not shown]
VersionDeltaFile
1.6+2,263-2,259devel/ruby-redmine51/PLIST
1.13+4-4devel/ruby-redmine51/distinfo
1.19+2-3devel/ruby-redmine51/Makefile
+2,269-2,2663 files

FreeBSD/ports 0732454Mk/Scripts qa.sh

Mk/Scripts/qa.sh: USES=fam is gone
DeltaFile
+0-3Mk/Scripts/qa.sh
+0-31 files

NetBSD/pkgsrc vD63bsSdoc CHANGES-2026

   doc: Updated www/ruby-webrick to 1.9.2
VersionDeltaFile
1.477+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc KXXhORVwww/ruby-webrick distinfo Makefile

   www/ruby-webrick: update to 1.9.2

   1.9.2 (2025-11-26)

   What's Changed

   * Remove usage of IO#nread by @osyoyu in #181
   * Remove assert matching stderr output in test_sni. by @jackorp in #158

   New Contributors

   * @osyoyu made their first contribution in #181
   * @jackorp made their first contribution in #158
VersionDeltaFile
1.14+4-4www/ruby-webrick/distinfo
1.23+2-2www/ruby-webrick/Makefile
+6-62 files

NetBSD/pkgsrc n7KORmQdoc CHANGES-2026

   doc: Updated www/ruby-uri to 1.1.1
VersionDeltaFile
1.476+2-1doc/CHANGES-2026
+2-11 files