LLVM/project f49fb1amlir/examples/standalone/test lit.cfg.py, mlir/examples/standalone/test/python smoketest.py

check standalone
DeltaFile
+5-7mlir/examples/standalone/test/lit.cfg.py
+4-4mlir/examples/standalone/test/python/smoketest.py
+3-1mlir/test/Examples/standalone/test.wheel.toy
+1-0mlir/test/Examples/standalone/test.toy
+13-124 files

LLVM/project 02c82e3mlir/examples/standalone/test/python smoketest.py, mlir/test/Examples/standalone test.wheel.toy test.toy

check standalone
DeltaFile
+4-4mlir/examples/standalone/test/python/smoketest.py
+3-1mlir/test/Examples/standalone/test.wheel.toy
+1-0mlir/test/Examples/standalone/test.toy
+8-53 files

FreeBSD/src ecb58f9contrib/kyua/cli cmd_debug.cpp

kyua: Fix prompt of "debug -p" command
DeltaFile
+2-2contrib/kyua/cli/cmd_debug.cpp
+2-21 files

LLVM/project 48be4d0llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer crash_exceed_scheduling.ll extract-many-users-buildvector.ll

[SLP]Enable float point math ops as copyables elements.

Patch enables support for float point math operations as base
instructions for copyable elements. It also fixes some scheduling
issues, found during testing

Reviewers: hiraditya, RKSimon

Pull Request: https://github.com/llvm/llvm-project/pull/169857

Recommit after revert in 9008922707915a6632fb74ed301bce11d8775e2a
DeltaFile
+92-46llvm/test/Transforms/SLPVectorizer/crash_exceed_scheduling.ll
+26-102llvm/test/Transforms/SLPVectorizer/X86/vect_copyable_in_binops.ll
+67-23llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+34-38llvm/test/Transforms/SLPVectorizer/extract-many-users-buildvector.ll
+18-26llvm/test/Transforms/SLPVectorizer/X86/user-with-multi-copyable-ops.ll
+20-20llvm/test/Transforms/SLPVectorizer/insertelement-postpone.ll
+257-25515 files not shown
+351-34421 files

FreeBSD/src 98c3d86sbin/fsck_msdosfs dir.c

fsck_msdosfs: avoid warnings about too-long initializer strings

Mark `dot_name` and `dotdot_name` as as `__non_string`, to avoid
warnings from clang 21 similar to:

    sbin/fsck_msdosfs/dir.c:466:39: error: initializer-string for character array is too long, array size is 11 but initializer has size 12 (including the null terminating character); did you mean to use the 'nonstring' attribute? [-Werror,-Wunterminated-string-initialization]
      466 | static const u_char dot_name[11]    = ".          ";
          |                                       ^~~~~~~~~~~~~
    sbin/fsck_msdosfs/dir.c:467:39: error: initializer-string for character array is too long, array size is 11 but initializer has size 12 (including the null terminating character); did you mean to use the 'nonstring' attribute? [-Werror,-Wunterminated-string-initialization]
      467 | static const u_char dotdot_name[11] = "..         ";
          |                                       ^~~~~~~~~~~~~

MFC after:      3 days
DeltaFile
+2-2sbin/fsck_msdosfs/dir.c
+2-21 files

NetBSD/src 41wwABVshare/man/man5 mk.conf.5

   mk.conf(5): use more markup
VersionDeltaFile
1.117+8-7share/man/man5/mk.conf.5
+8-71 files

LLVM/project 0ba7790mlir/lib/Transforms RemoveDeadValues.cpp, mlir/test/Transforms remove-dead-values.mlir

tmp commit

simple test working

draft: do not erase IR, just replace uses
DeltaFile
+183-313mlir/lib/Transforms/RemoveDeadValues.cpp
+109-44mlir/test/Transforms/remove-dead-values.mlir
+292-3572 files

FreeBSD/ports 9674788net-p2p/xmrig distinfo Makefile

net-p2p/xmrig: Update to 6.25.0
DeltaFile
+3-3net-p2p/xmrig/distinfo
+1-1net-p2p/xmrig/Makefile
+4-42 files

LLVM/project 3016679mlir/include/mlir/Dialect/OpenACC/Transforms Passes.td, mlir/lib/Dialect/OpenACC/Transforms ACCIfClauseLowering.cpp CMakeLists.txt

[mlir][acc] Add ACCIfClauseLowering pass (#173573)

This pass lowers OpenACC compute constructs with `if` clauses into
`scf.if` with separate device and host paths.

Before:
```
  %d = acc.copyin varPtr(%a : memref<10xf32>) -> memref<10xf32>
  acc.parallel dataOperands(%d) if(%cond) {
    acc.loop control(%i : i32) = (%c0 : i32) to (%c10 : i32) step (%c1 :
i32) {
      // loop body
      acc.yield
    }
    acc.yield
  }
  acc.copyout accPtr(%d) to varPtr(%a)
```


    [20 lines not shown]
DeltaFile
+245-0mlir/lib/Dialect/OpenACC/Transforms/ACCIfClauseLowering.cpp
+224-0mlir/test/Dialect/OpenACC/acc-if-clause-lowering.mlir
+35-0mlir/include/mlir/Dialect/OpenACC/Transforms/Passes.td
+1-0mlir/lib/Dialect/OpenACC/Transforms/CMakeLists.txt
+505-04 files

LLVM/project 16ed5ec.ci generate_test_report_lib.py premerge_advisor_explain.py

[CI] Finish Python Version TODOs

There were a couple TODOs in .ci related to Python typing changes after
v3.10. Now that Windows is python version matched to Linux at Python
3.12, we do not need to keep using the old syntax.
DeltaFile
+2-4.ci/generate_test_report_lib.py
+1-5.ci/premerge_advisor_explain.py
+3-92 files

NetBSD/src 0wxILWMshare/man/man5 mk.conf.5

   Document recently added MK* build knobs, and update for the changes to
   some of the defaults used on m68000 systems.
VersionDeltaFile
1.116+436-16share/man/man5/mk.conf.5
+436-161 files

NetBSD/src 4gI9elashare/mk bsd.README

   Mention MKBLUETOOTH.
VersionDeltaFile
1.459+3-3share/mk/bsd.README
+3-31 files

NetBSD/src OZC72HIlib/libc/time private.h

   Add the tools nbcompat mempcpy to the list of places that mempcpy is
   available.

   Fixes the tools zic build on macOS.
VersionDeltaFile
1.75+3-2lib/libc/time/private.h
+3-21 files

DragonFlyBSD/src e1d4ba6usr.bin/truss x86_64-fbsd.c syscalls.c

truss - Fix xsyscall printing of 6th argument. Fix lseek arguments.

* The 6th argument of an xsyscall gets buried underneath one extra stack
  value, so we need to add 2*sizeof(register_t) to the RSP register value.

* The 3rd argument of lseek(2) gets passed in the place where the 4th
  argument is expected.

* Add "execve" to the list in syscalls.c, in order to print the path string.
  Explicitly specify the number of return values as 0, and print a newline
  after printing the Syscall Entry information in that case.
  This does the right thing, since "execve" only returns a value when it
  fails, and errors are handled separately in truss(1).

* At least for very basic programs, truss(1) should now be somewhat useable
  again, but a lot remains to make it great again.
DeltaFile
+7-4usr.bin/truss/x86_64-fbsd.c
+4-2usr.bin/truss/syscalls.c
+11-62 files

FreeBSD/ports 2f8be65emulators/vice pkg-plist, emulators/vice/files patch-doc_vice.texi patch-src_arch_gtk3_joystickdrv_joystick_bsd.c

emulators/vice: update to 3.10
DeltaFile
+87-89emulators/vice/pkg-plist
+0-37emulators/vice/files/patch-doc_vice.texi
+33-0emulators/vice/files/patch-src_arch_gtk3_joystickdrv_joystick_bsd.c
+0-16emulators/vice/files/patch-src_pet_pet-stubs.c
+0-15emulators/vice/files/patch-src_c64dtv_c64dtviec.c
+0-15emulators/vice/files/patch-src_c64dtv_c64dtv-stubs.c
+120-1724 files not shown
+130-20610 files

LLVM/project 88039f8llvm/include/llvm/IR PassManager.h

[PassManager] Use ListSeparator. NFC (#173462)

Change-Id: I40fa748d2c188171caccff7cb418c6be74c22fb8
DeltaFile
+4-4llvm/include/llvm/IR/PassManager.h
+4-41 files

NetBSD/pkgsrc cmEPZQQmath/py-roman_numerals Makefile

   py-roan_numerals: add conflict with (removed) py-roman_numerals_py
VersionDeltaFile
1.2+3-1math/py-roman_numerals/Makefile
+3-11 files

HardenedBSD/src 9629944lib/libcuse cuse_lib.c

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+1-1lib/libcuse/cuse_lib.c
+1-11 files

HardenedBSD/src 3288a8elib/libcuse cuse_lib.c

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+1-1lib/libcuse/cuse_lib.c
+1-11 files

NetBSD/pkgsrc N0MbOvWwww/nginx Makefile, www/nginx-devel Makefile

   www/nginx*: update CONFLICTS
VersionDeltaFile
1.164+2-2www/nginx-devel/Makefile
1.187+2-2www/nginx/Makefile
+4-42 files

HardenedBSD/ports c61894fastro/libosmpbf/files patch-osmpbf_CMakeLists.txt, audio/adplay/files patch-acinclude.m4

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+0-20audio/adplay/files/patch-acinclude.m4
+9-9lang/rust-nightly/distinfo
+18-0devel/cppcheck/files/patch-test_signal_CMakeLists.txt
+0-18astro/libosmpbf/files/patch-osmpbf_CMakeLists.txt
+7-7textproc/dyff/distinfo
+11-0devel/cppcheck/files/patch-test_CMakeLists.txt
+45-5412 files not shown
+79-8018 files

NetBSD/pkgsrc 0pw0O82graphics/digikam distinfo, graphics/digikam/patches patch-core_libs_threads_actionthreadbase.cpp

   digikam: add upstream bug report URL
VersionDeltaFile
1.69+2-2graphics/digikam/distinfo
1.2+2-1graphics/digikam/patches/patch-core_libs_threads_actionthreadbase.cpp
+4-32 files

NetBSD/pkgsrc f2f5pUedoc CHANGES-2025

   Added www/freenginx version 1.28.0
VersionDeltaFile
1.7403+2-1doc/CHANGES-2025
+2-11 files

NetBSD/pkgsrc dDHFQl6www/freenginx-devel Makefile

   www/freenginx-devel: update CONFLICTS
VersionDeltaFile
1.3+2-2www/freenginx-devel/Makefile
+2-21 files

NetBSD/src rIfZ4imexternal/bsd/elftoolchain/dist/libelf _libelf.h elf_update.c

   elftoolchain/libelf: Update to upstream [r4324].
VersionDeltaFile
1.5+20-17external/bsd/elftoolchain/dist/libelf/_libelf.h
1.6+17-11external/bsd/elftoolchain/dist/libelf/elf_update.c
1.6+12-11external/bsd/elftoolchain/dist/libelf/libelf_convert.m4
1.6+6-15external/bsd/elftoolchain/dist/libelf/libelf_ehdr.c
1.6+10-11external/bsd/elftoolchain/dist/libelf/elf_scn.c
1.2+12-7external/bsd/elftoolchain/dist/libelf/Makefile
+77-7257 files not shown
+356-26663 files

NetBSD/pkgsrc Pml9Orlwww/freenginx options.mk Makefile, www/freenginx/patches patch-conf_nginx.conf extra-patch-ngx_brotli_filter_config

   www/freenginx: add new port, freenginx stable version 1.28.0
VersionDeltaFile
1.1+461-0www/freenginx/options.mk
1.1+145-0www/freenginx/Makefile
1.1+93-0www/freenginx/patches/patch-conf_nginx.conf
1.1+71-0www/freenginx/distinfo
1.1+44-0www/freenginx/PLIST
1.1+40-0www/freenginx/patches/extra-patch-ngx_brotli_filter_config
+854-07 files not shown
+993-013 files

NetBSD/pkgsrc lWkymuOdoc CHANGES-2025

   doc: Updated graphics/digikam-gmic-qt to 3.6.0.20251021
VersionDeltaFile
1.7402+2-1doc/CHANGES-2025
+2-11 files

NetBSD/pkgsrc FEgbfLdgraphics/digikam-gmic-qt Makefile distinfo

   digikam-gmic-qt: update to 3.6.0.20251021.

   Switch to qt6.

   Changes: only codespell fixes.
VersionDeltaFile
1.11+7-8graphics/digikam-gmic-qt/Makefile
1.5+4-4graphics/digikam-gmic-qt/distinfo
1.3+4-4graphics/digikam-gmic-qt/PLIST
+15-163 files

NetBSD/pkgsrc E6MXoXYdoc CHANGES-2025

   doc: Updated graphics/digikam to 8.8.0
VersionDeltaFile
1.7401+2-1doc/CHANGES-2025
+2-11 files

NetBSD/pkgsrc uF0d1Lbgraphics/digikam PLIST Makefile, graphics/digikam/patches patch-core_libs_threads_actionthreadbase.cpp

   digikam: update to 8.8.0.

   Switch to qt6.

   This version delivers significant improvements in performance,
   stability, and user experience, with a particular focus on image
   processing, color management, and workflow efficiency.
VersionDeltaFile
1.44+165-167graphics/digikam/PLIST
1.264+25-30graphics/digikam/Makefile
1.1+21-0graphics/digikam/patches/patch-core_libs_threads_actionthreadbase.cpp
1.68+5-4graphics/digikam/distinfo
+216-2014 files