FreeBSD/ports 9d141c0devel/glab Makefile distinfo

devel/glab: update to 1.110.0

Changes:        https://gitlab.com/gitlab-org/cli/-/releases
DeltaFile
+5-5devel/glab/distinfo
+2-2devel/glab/Makefile
+7-72 files

LLVM/project bb33de7lld/test/wasm/lto libcall-archive-bitcode.ll, llvm/test/CodeGen/WebAssembly imported-const-global.ll immutable-global-alias.ll

[WebAssembly] Add a newline at end of file (#212674)

Some tests files lack a newline at end of file. This adds it.
DeltaFile
+1-1llvm/test/CodeGen/WebAssembly/imported-const-global.ll
+1-1llvm/test/CodeGen/WebAssembly/immutable-global-alias.ll
+1-1lld/test/wasm/lto/libcall-archive-bitcode.ll
+3-33 files

LLVM/project fd36451llvm/include/llvm/ExecutionEngine/Orc Core.h, llvm/lib/ExecutionEngine/Orc Core.cpp LazyReexports.cpp

[ORC] Remove SymbolInstance class. (#212665)

This class had only one user, and no tests. Remove it for now and update
the single user to call ExecutionSession::lookup directly.
DeltaFile
+17-15llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
+0-24llvm/include/llvm/ExecutionEngine/Orc/Core.h
+0-21llvm/lib/ExecutionEngine/Orc/Core.cpp
+17-603 files

FreeBSD/ports 3ddd411net Makefile, net/yojimbo distinfo pkg-descr

net/yojimbo: add new ports.

PR:             296782
DeltaFile
+32-0net/yojimbo/Makefile
+28-0net/yojimbo/pkg-plist
+10-0net/yojimbo/pkg-descr
+3-0net/yojimbo/distinfo
+1-0net/Makefile
+74-05 files

FreeBSD/ports 889e4b2net Makefile, net/netcode distinfo pkg-descr

net/netcode: add new ports.

PR:             296781
DeltaFile
+31-0net/netcode/Makefile
+8-0net/netcode/pkg-descr
+3-0net/netcode/distinfo
+1-0net/Makefile
+43-04 files

FreeBSD/ports f6b4a06misc/py-paddlepaddle Makefile, misc/py-paddlepaddle/files patch-paddle_fluid_imperative_amp__utils.h

misc/py-paddlepaddle: Fix build

Reported by:    fallout
DeltaFile
+30-0misc/py-paddlepaddle/files/patch-paddle_fluid_imperative_amp__utils.h
+0-2misc/py-paddlepaddle/Makefile
+30-22 files

LLVM/project 78f84b6clang/lib/AST MicrosoftMangle.cpp, llvm/include/llvm/ADT APFloat.h

[LLVM][APFloat] Add APFloat support for 8-bit UE5M3 type (#210720)

This commit adds APFloat support for UE5M3 type and the associated tests. It is an 8 bit FP type with no sign bit, 5 exponent and 3 mantissa bits

| Property        | Value      |
|-----------------|------------|
| Max exponent    | 31         |
| Bias            | 15         |
| Zero encoding   | 00000 000  |
| Smallest denorm | 00000 001  |
| Largest denorm  | 00000 111  |
| Smallest norm   | 00001 000  |
| Largest norm    | 11111 110  |
| Canonical NaN   | 11111 111  |

Please refer [PTX ISA](https://docs.nvidia.com/cuda/developer-preview/13.4/parallel-thread-execution/index.html#alternate-floating-point-data-formats) for more info

Assisted by: Claude Code (Opus 4.8)
DeltaFile
+332-22llvm/unittests/ADT/APFloatTest.cpp
+33-2llvm/lib/Support/APFloat.cpp
+10-0llvm/include/llvm/ADT/APFloat.h
+1-0clang/lib/AST/MicrosoftMangle.cpp
+376-244 files

FreeBSD/ports 1200bf4net Makefile, net/reliable distinfo pkg-descr

net/reliable: add new ports.

PR:             296780
DeltaFile
+30-0net/reliable/Makefile
+6-0net/reliable/pkg-descr
+3-0net/reliable/distinfo
+1-0net/Makefile
+40-04 files

FreeBSD/ports 0dc5c3barchivers/php-lz4 Makefile distinfo, archivers/php-lz4/files patch-config.m4

archivers/php-lz4: update to 0.7.

PR:             297108
DeltaFile
+0-38archivers/php-lz4/files/patch-config.m4
+3-3archivers/php-lz4/distinfo
+1-2archivers/php-lz4/Makefile
+4-433 files

FreeBSD/ports 9de90fcwww/R-cran-httr2 Makefile distinfo

www/R-cran-httr2: Update to 1.3.0

Changelog: https://cran.r-project.org/web/packages/httr2/news/news.html
DeltaFile
+3-3www/R-cran-httr2/distinfo
+1-1www/R-cran-httr2/Makefile
+4-42 files

LLVM/project 1d4e04fclang/lib/CodeGen CGException.cpp, libcxxabi/src cxa_personality.cpp

[WebAssembly] Call EH personality function instead of `Unwind_CallPersonality` (#209282)

On Wasm, it's not currently possibly to change which `personality` is
attached to a given IR function. This is primarily because no matter
what `personality` is attached, codegen creates a call to a
`Unwind_CallPersonality` wrapper hard-coded to call c++abi's
personality.

In order to allow alternative personalities without introducing bloat at
each personality call site, this PR adjusts the ABI of the personality
on Wasm. `Unwind_CallPersonality` is moved to `libcxxabi` under the name
`__gxx_wasm_personality_v0`, with the "real" personality code renamed
`__gxx_personality_imp` and called by `__gxx_wasm_personality_v0` (after
resetting the landing pad context).

The signature of EH personalities on Wasm is now `int personality(void*
exception_object)` (where the int return is `_Unwind_Reason_Code` and
the `void*` is `_Unwind_Exception*`), and personalities are expected to
`__wasm_lpad_context.selector = 0;`.

Based on #175202
DeltaFile
+22-35llvm/lib/CodeGen/WasmEHPrepare.cpp
+2-40libunwind/src/Unwind-wasm.c
+27-0libunwind/include/unwind_wasm.h
+15-3libcxxabi/src/cxa_personality.cpp
+8-2clang/lib/CodeGen/CGException.cpp
+4-4llvm/test/CodeGen/WebAssembly/wasm-eh-prepare.ll
+78-8422 files not shown
+107-11728 files

FreeBSD/ports d940b20science/py-MDAnalysisTests Makefile distinfo

science/py-MDAnalysisTests: Fix fetch

Reported by:    fallout

(cherry picked from commit 2badb817753dd4793f00490fe934d8575fa754b5)
DeltaFile
+3-3science/py-MDAnalysisTests/distinfo
+1-0science/py-MDAnalysisTests/Makefile
+4-32 files

FreeBSD/ports 2badb81science/py-MDAnalysisTests Makefile distinfo

science/py-MDAnalysisTests: Fix fetch

Reported by:    fallout
DeltaFile
+3-3science/py-MDAnalysisTests/distinfo
+1-0science/py-MDAnalysisTests/Makefile
+4-32 files

FreeBSD/ports 508de6bsecurity/netbird Makefile distinfo

security/netbird: Update to 0.75.1

Changelogs:
https://github.com/netbirdio/netbird/releases/tag/v0.74.5
https://github.com/netbirdio/netbird/releases/tag/v0.74.6
https://github.com/netbirdio/netbird/releases/tag/v0.74.7
https://github.com/netbirdio/netbird/releases/tag/v0.75.0
https://github.com/netbirdio/netbird/releases/tag/v0.75.1

Commit log:
https://github.com/netbirdio/netbird/compare/v0.74.4...v0.75.1

PR:             297116
Reported by:    NetBird Developers <dev at netbird.io> (maintainer)
DeltaFile
+5-5security/netbird/distinfo
+1-1security/netbird/Makefile
+6-62 files

FreeBSD/ports 80b699ewww/hiawatha Makefile distinfo

www/hiawatha: Update 12.2 => 12.3

Changes:
https://gitlab.com/hsleisink/hiawatha/-/blob/30b28a91c9602611c519af46c15097432239b0f2/ChangeLog

PR:             297101
Reported by:    Paavo-Einari Kaipila <pkaipila at gmail.com> (maintainer)
DeltaFile
+3-3www/hiawatha/distinfo
+1-1www/hiawatha/Makefile
+4-42 files

OpenBSD/src 5Ewojzhsys/dev/pci pcidevs.h pcidevs_data.h

   regen
VersionDeltaFile
1.2133+5-1sys/dev/pci/pcidevs_data.h
1.2138+2-1sys/dev/pci/pcidevs.h
+7-22 files

OpenBSD/src wc0lBSXsys/dev/pci pcidevs, sys/dev/pci/drm/amd/amdgpu amdgpu_devlist.h

   add a Navi 33 id

   748b rev 00 is Radeon Pro W7500M
   found in AMD Software: Adrenalin Edition 26.7.1
VersionDeltaFile
1.2145+2-1sys/dev/pci/pcidevs
1.47+1-0sys/dev/pci/drm/amd/amdgpu/amdgpu_devlist.h
+3-12 files

LLVM/project e73371a.ci monolithic-macos.sh, .github/workflows premerge.yaml

[premerge] Route macOS build through a monolithic script to enable Job Summary (#211565)

The macOS premerge job built inline instead of via a `monolithic-*.sh`
script, so it never emitted a GitHub Job Summary or JUnit XML like
Linux/Windows do on failure
DeltaFile
+50-0.ci/monolithic-macos.sh
+7-23.github/workflows/premerge.yaml
+57-232 files

FreeBSD/ports a6f8d99devel/cproto Makefile distinfo

devel/cproto: Update to 4.8a

Changelog: https://invisible-island.net/cproto/CHANGES

PR:             297100
Reported by:    Tom Vogt <thomas at bsdunix.ch> (maintainer)
DeltaFile
+3-3devel/cproto/distinfo
+1-1devel/cproto/Makefile
+4-42 files

OpenBSD/src d2I51Nuusr.sbin/ocspcheck ocspcheck.c

   ocspcheck: make validate_response() static, it's only used in this file
VersionDeltaFile
1.35+2-3usr.sbin/ocspcheck/ocspcheck.c
+2-31 files

OpenBSD/src JLgGUjdregress/lib/libc/timingsafe timingsafe.c

   timingsafe test: make check() static
VersionDeltaFile
1.5+2-2regress/lib/libc/timingsafe/timingsafe.c
+2-21 files

FreeBSD/ports c822a32security/diswall Makefile

security/diswall: Broken on i386

Reported by:    fallout

(cherry picked from commit a071a0cbc03bc2f590f12588e9e615addfed19ae)
DeltaFile
+2-0security/diswall/Makefile
+2-01 files

FreeBSD/ports 7b543cfmisc/valentina Makefile

misc/valentina: Broken on i386

Reported by:    fallout

(cherry picked from commit 086185c40aa8f83acac1517e108dc76c25863592)
DeltaFile
+2-1misc/valentina/Makefile
+2-11 files

FreeBSD/ports 5d1983darchivers/ouch Makefile

archivers/ouch: Broken on i386

Reported by:    fallout

(cherry picked from commit dc172b06c1eadd6ea347cf080bd2a6b2c51c1021)
DeltaFile
+2-0archivers/ouch/Makefile
+2-01 files

FreeBSD/ports dc172b0archivers/ouch Makefile

archivers/ouch: Broken on i386

Reported by:    fallout
DeltaFile
+2-0archivers/ouch/Makefile
+2-01 files

FreeBSD/ports a071a0csecurity/diswall Makefile

security/diswall: Broken on i386

Reported by:    fallout
DeltaFile
+2-0security/diswall/Makefile
+2-01 files

FreeBSD/ports 086185cmisc/valentina Makefile

misc/valentina: Broken on i386

Reported by:    fallout
DeltaFile
+2-1misc/valentina/Makefile
+2-11 files

OpenBSD/src WQmamndregress/lib/libcrypto/x509 verify.c

   verify test: print size_t with %zu
VersionDeltaFile
1.17+2-2regress/lib/libcrypto/x509/verify.c
+2-21 files

FreeBSD/ports feb6aaadevel/py-ty Makefile distinfo

devel/py-ty: Update to 0.0.64

Changelog: https://github.com/astral-sh/ty/blob/0.0.64/CHANGELOG.md

Reported by:    Repology
DeltaFile
+3-3devel/py-ty/distinfo
+1-1devel/py-ty/Makefile
+4-42 files

LLVM/project b360754utils/bazel/llvm-project-overlay/lldb BUILD.bazel

[Bazel] Fixes c35bdc9 (#212659)

This fixes c35bdc99a36bd518ff59b6cb209e84a5c7df24e1 (#210430).

Buildkite error link:
https://buildkite.com/llvm-project/upstream-bazel/builds?commit=c35bdc99a36bd518ff59b6cb209e84a5c7df24e1

Co-authored-by: Google Bazel Bot <google-bazel-bot at google.com>
DeltaFile
+12-1utils/bazel/llvm-project-overlay/lldb/BUILD.bazel
+12-11 files