LLVM/project 7635761llvm/lib/Object ObjectFile.cpp, llvm/unittests/Object GOFFObjectFileTest.cpp

[llvm][object] handle GOFF in createObjectFile (#206636)

`ObjectFile::createObjectFile` doesn't handle GOFF and returns an error,
even though the requisite GOFF support is present (i.e.
`createGOFFObjectFile`). This change corrects this, and adds a simple
test for `createObjectFile` on a GOFF type object.
DeltaFile
+26-0llvm/unittests/Object/GOFFObjectFileTest.cpp
+2-1llvm/lib/Object/ObjectFile.cpp
+28-12 files

FreeBSD/ports 108390baudio/pipewire-spa-oss-ng distinfo Makefile

audio/pipewire-spa-oss-ng: Update to 0.9.2

robustness fixes, driver-clock overhaul, hardware volume control
DeltaFile
+3-3audio/pipewire-spa-oss-ng/distinfo
+1-1audio/pipewire-spa-oss-ng/Makefile
+4-42 files

GhostBSD/build 596cb86packages drivers

Merge pull request #277 from ghostbsd/synaptics

Remove xlibre-xf86-input-synaptics from drivers list
DeltaFile
+0-1packages/drivers
+0-11 files

NetBSD/pkgsrc JnnmxShdoc CHANGES-2026

   doc: Updated devel/objfw to 1.5.7
VersionDeltaFile
1.4218+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc Vwcm4YJdevel/objfw distinfo PLIST

   Update devel/objfw to 1.5.7

   ## ObjFW 1.5.7
   2026-07-03

   Changes from ObjFW 1.5.6:
   * Fixes tombstone counting in OFMapTable that could lead to incorrect out of range exceptions
   * Fixes timers with 3 objects firing twice
   * Copies for atomic properties are now performed outside the spinlock to avoid a possible deadlock
   * Fixes a memory leak in objc_removeAssociatedObjects
   * Avoids an unnecessary autorelease pool in OFEpollKernelEventObserver
VersionDeltaFile
1.49+4-4devel/objfw/distinfo
1.39+2-2devel/objfw/PLIST
1.71+2-2devel/objfw/Makefile
1.22+2-2devel/objfw/PLIST.runtime
+10-104 files

FreeBSD/ports 80b3969print/plutobook distinfo Makefile

print/plutobook: Update to 0.18.0

Changelog: https://github.com/plutoprint/plutobook/releases/tag/v0.18.0
DeltaFile
+3-3print/plutobook/distinfo
+1-1print/plutobook/Makefile
+4-42 files

NetBSD/pkgsrc uhy8aJBmath/cvc5 Makefile

   TEST_TARGET=check is better.
VersionDeltaFile
1.4+2-2math/cvc5/Makefile
+2-21 files

GhostBSD/build bb8105apackages drivers

Remove xlibre-xf86-input-synaptics from drivers list

Only pre-2010 era laptops need this driver; modern hardware works
fine with the default input drivers.
DeltaFile
+0-1packages/drivers
+0-11 files

LLVM/project bf68b41llvm/lib/Transforms/Vectorize LoopVectorizationPlanner.h

[LV] Implement VPBuilder::createPtrAdd with createNoWrapPtrAdd (NFC) (#207467)

createPtrAdd is exactly createNoWrapPtrAdd with GEPNoWrapFlags::none().
Forward to it instead of duplicating the VPInstruction construction.
DeltaFile
+1-3llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
+1-31 files

NetBSD/src toGMm1Esys/arch/evbcf/include param.h

   Provide common defaults for NKMEMPAGES_MIN_DEFAULT and NKMEMPAGES_MAX_DEFAULT
   for all m68k platforms.  Defaults for all 68010 come from Sun2, defaults
   for everyone else come from hp300, and per-platform overrides for min and
   max are provided (and preserved).
VersionDeltaFile
1.4+5-19sys/arch/evbcf/include/param.h
+5-191 files

LLVM/project 1381ef4clang/docs/CommandGuide clang.rst, clang/include/clang/Basic LangStandards.def LangStandard.h

[Clang] Add flags and lang option for C++2d (#203992)

This adds diagnostic groups, command-line options, a language option,
and various other things required to support `-std=c++2d`. I haven’t
touched e.g. clang-tidy or clang-format, as I’m not really familiar w/
either. This is only meant to add the most necessary parts to support
C++29 mode.

I grepped for `CPlusPlus26`/`C++26`/`C++2c` and updated all places I
could find where we need to handle every language mode in some way or
another.

This patch is roughly based on b763d6a4ed4650c74c6846d743156468563b0e31.
DeltaFile
+16-0clang/test/Preprocessor/init.c
+15-1clang/include/clang/Basic/LangStandards.def
+9-5clang/include/clang/Basic/LangStandard.h
+5-3clang/lib/Driver/ToolChains/Clang.cpp
+8-0clang/docs/CommandGuide/clang.rst
+7-0clang/include/clang/Basic/DiagnosticGroups.td
+60-920 files not shown
+97-1826 files

NetBSD/src PZpZrq3sys/dev/sun disksubr.c

   Re-factor BAD144 bad sector handling into its own source module.  This
   lays the groundwork for removing many duplicate copies of BAD144 code
   that have been cargo-culted over the decades.

   (missed file in previous commit.)
VersionDeltaFile
1.19+2-26sys/dev/sun/disksubr.c
+2-261 files

NetBSD/src DwqL95esys/sys dkbad.h

   Re-factor BAD144 bad sector handling into its own source module.  This
   lays the groundwork for removing many duplicate copies of BAD144 code
   that have been cargo-culted over the decades.

   (missed file in previous commit.)
VersionDeltaFile
1.16+18-3sys/sys/dkbad.h
+18-31 files

NetBSD/src iEAMGvNsys/arch/virt68k/virt68k machdep.c

   Remove unnecessary #include directives.
VersionDeltaFile
1.44+4-32sys/arch/virt68k/virt68k/machdep.c
+4-321 files

LLVM/project 5de2fb5llvm/lib/Transforms/Vectorize VPlanCFG.h

[VPlan] Simplify VPHierarchicalChildrenIterator::operator*. NFC (#207464)

This is like a pointer-valued iterator, whose constness should not
qualify the pointee ( `vector<T*>::const_iterator` yields `T*`, not
`const T*`), so collapse the two overloads into a single `BlockPtrTy
operator*() const`.
DeltaFile
+3-6llvm/lib/Transforms/Vectorize/VPlanCFG.h
+3-61 files

NetBSD/src IMbY94hsys/arch/sun3/dev xd.c xy.c, sys/dev bad144.c

   Re-factor BAD144 bad sector handling into its own source module.  This
   lays the groundwork for removing many duplicate copies of BAD144 code
   that have been cargo-culted over the decades.
VersionDeltaFile
1.1+386-0sys/dev/bad144.c
1.475+127-39sys/dev/ata/wd.c
1.82+15-30sys/arch/sun3/dev/xd.c
1.121+20-24sys/dev/ata/ata_wdc.c
1.85+14-29sys/arch/sun3/dev/xy.c
1.101+12-28sys/dev/vme/xd.c
+574-15011 files not shown
+614-19717 files

LLVM/project 37fa9c4llvm/test/Transforms/LoopVectorize runtime-checks-difference.ll, llvm/test/Transforms/LoopVectorize/RISCV tail-folding-bin-unary-ops-args.ll fminimumnum.ll

[LAA] Use (Diff - 1) <u (Threshold - 1) for diff checks. (#188462)

Update diff checks to use (Diff - 1) <u (Threshold - 1), equivalent to 0
< Diff <u Threshold, to exclude Diff == 0, equal pointers are a safe
loop-independent dependence.

Alive2 proofs https://alive2.llvm.org/ce/z/_ss9QG
 * (Diff - 1) <u (Threshold - 1) => 0 < Diff <u Threshold
 * Old and new check are equivalent, if diff > 0: 

On some platforms, this adds an extra instruction to compute the diff
check, but allows to handle the case where both pointers are equal.

PR: https://github.com/llvm/llvm-project/pull/188462
DeltaFile
+108-36llvm/test/Transforms/LoopVectorize/RISCV/tail-folding-bin-unary-ops-args.ll
+76-52llvm/test/Transforms/LoopVectorize/RISCV/fminimumnum.ll
+74-37llvm/test/Transforms/LoopVectorize/RISCV/tail-folding-call-intrinsics.ll
+89-13llvm/test/Transforms/LoopVectorize/runtime-checks-difference.ll
+36-18llvm/test/Transforms/LoopVectorize/X86/masked_load_store.ll
+31-11llvm/test/Transforms/LoopVectorize/RISCV/tail-folding-cast-intrinsics.ll
+414-16752 files not shown
+803-35458 files

FreeBSD/ports 4ee5e91devel/py-odoo-addon-openupgrade-framework17 pkg-plist distinfo

devel/py-odoo-addon-openupgrade-framework17: Update to 17.0.1.0.0.10
DeltaFile
+4-4devel/py-odoo-addon-openupgrade-framework17/pkg-plist
+3-3devel/py-odoo-addon-openupgrade-framework17/distinfo
+1-1devel/py-odoo-addon-openupgrade-framework17/Makefile
+8-83 files

FreeBSD/ports 24ef86enet/dataplaneapi distinfo Makefile, net/dataplaneapi/files patch-configuration_configuration.go

net/dataplaneapi: Update to 3.4.0

ChangeLog: https://github.com/haproxytech/dataplaneapi/releases/tag/v3.4.0
DeltaFile
+7-8net/dataplaneapi/files/patch-configuration_configuration.go
+5-5net/dataplaneapi/distinfo
+2-2net/dataplaneapi/Makefile
+14-153 files

FreeBSD/ports 50f652fsecurity/py-privleap distinfo Makefile, security/py-privleap/files patch-usr_lib_python3_dist-packages_privleap_privleapd.py

security/py-privleap: Update to 5.9-1

ChangeLog: https://github.com/Kicksecure/privleap/releases/tag/5.9-1
DeltaFile
+7-7security/py-privleap/files/patch-usr_lib_python3_dist-packages_privleap_privleapd.py
+3-3security/py-privleap/distinfo
+1-1security/py-privleap/Makefile
+11-113 files

FreeBSD/ports 6b6dde3www/py-dj60-django-stubs-ext distinfo Makefile

www/py-dj60-django-stubs-ext: Update to 6.0.6

ChangeLogs:

- https://github.com/typeddjango/django-stubs/releases/tag/6.0.5
- https://github.com/typeddjango/django-stubs/releases/tag/6.0.6
DeltaFile
+3-3www/py-dj60-django-stubs-ext/distinfo
+1-1www/py-dj60-django-stubs-ext/Makefile
+4-42 files

FreeBSD/ports 8742150www/oauth2-proxy distinfo Makefile

www/oauth2-proxy: Update to 7.15.3

ChangeLog: https://github.com/oauth2-proxy/oauth2-proxy/releases/tag/v7.15.3
DeltaFile
+5-5www/oauth2-proxy/distinfo
+2-3www/oauth2-proxy/Makefile
+7-82 files

FreeBSD/ports 00af1c6security/py-unicode-show distinfo Makefile

security/py-unicode-show: Update to 52.8-1

ChangeLog:
https://github.com/Kicksecure/helper-scripts/compare/52.1-1...52.8-1
DeltaFile
+3-3security/py-unicode-show/distinfo
+1-1security/py-unicode-show/Makefile
+4-42 files

FreeBSD/ports dd16833sysutils/py-dbuild distinfo Makefile

sysutils/py-dbuild: Update to 1.9.6

ChangeLogs:

- https://github.com/daemonless/dbuild/releases/tag/v1.9.4
- https://github.com/daemonless/dbuild/releases/tag/v1.9.5
- https://github.com/daemonless/dbuild/releases/tag/v1.9.6
DeltaFile
+3-3sysutils/py-dbuild/distinfo
+1-1sysutils/py-dbuild/Makefile
+4-42 files

FreeBSD/ports 32f8665multimedia/pipe-viewer distinfo Makefile

multimedia/pipe-viewer: Update to 0.5.8

ChangeLog: https://github.com/trizen/pipe-viewer/releases/tag/0.5.8
DeltaFile
+3-3multimedia/pipe-viewer/distinfo
+1-1multimedia/pipe-viewer/Makefile
+4-42 files

NetBSD/pkgsrc-wip 0030e10rust196-bin distinfo Makefile

rust196-bin: Update to version 1.96.1 to track the change to lang/rust.
DeltaFile
+54-54rust196-bin/distinfo
+1-1rust196-bin/Makefile
+55-552 files

NetBSD/pkgsrc 6E81mYJdoc CHANGES-2026

   Note update of lang/rust-bin to 1.96.1.
VersionDeltaFile
1.4217+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 5NI3JRmlang/rust-bin distinfo Makefile

   lang/rust-bin: update to 1.96.1, to track the main package update:

   Rust 1.96.1 fixes:

   Missing retries / timeouts in Cargo's HTTP client
   Miscompilation in a MIR optimization

   It also fixes three CVEs affecting libssh2 (which is compiled into Cargo):

   CVE-2025-15661
   CVE-2026-55199
   CVE-2026-55200
VersionDeltaFile
1.52+55-55lang/rust-bin/distinfo
1.84+2-2lang/rust-bin/Makefile
+57-572 files

NetBSD/pkgsrc UCcOTNnmath/cvc5 Makefile

   Pass LD_LIBRARY_PATH to TEST_ENV.
VersionDeltaFile
1.3+4-9math/cvc5/Makefile
+4-91 files

LLVM/project 369269fllvm/test/MC/SystemZ insn-good-zos-pcrel.s

Fully translate test case to HLASM syntax dialect

This is a follow-up to 9d4436e3f4dfecd9503e90fb4cba907c86103e1e
which came in through the rebase.
DeltaFile
+28-28llvm/test/MC/SystemZ/insn-good-zos-pcrel.s
+28-281 files