FreeBSD/ports ed89d9bmail/spamassassin-devel distinfo pkg-plist

mail/spamassassin-devel: update to latest github commit
DeltaFile
+3-3mail/spamassassin-devel/distinfo
+6-0mail/spamassassin-devel/pkg-plist
+2-2mail/spamassassin-devel/Makefile
+11-53 files

FreeBSD/ports daa6a6dsecurity/wpa_supplicant-devel Makefile distinfo

security/wpa_supplicant-devel: Update to latest GH commit

Update to the latest w1.fi commit, proxied through my GH account.
DeltaFile
+4-2security/wpa_supplicant-devel/Makefile
+3-3security/wpa_supplicant-devel/distinfo
+7-52 files

FreeBSD/ports 2912449net/hostapd-devel distinfo Makefile

net/hostapd-devel: Update to the latest GH commit

Update to the latest w1.fi commit, proxied through my GH account
DeltaFile
+3-3net/hostapd-devel/distinfo
+3-2net/hostapd-devel/Makefile
+6-52 files

FreeBSD/ports 1f29b19security/krb5-devel distinfo Makefile, security/krb5-devel/files patch-plugins_preauth_pkinit_pkinit__crypto__openssl.c

security/krb5-devel: update to the latest MIT/KRB5 github commit

Support for OpenSSL 1.1.1 has been removed by upstream in this update.
DeltaFile
+11-19security/krb5-devel/files/patch-plugins_preauth_pkinit_pkinit__crypto__openssl.c
+3-3security/krb5-devel/distinfo
+2-2security/krb5-devel/Makefile
+16-243 files

FreeBSD/ports de07d8cx11-toolkits/thentenaar-motif-devel distinfo Makefile, x11-toolkits/thentenaar-motif-devel/files patch-lib_Xm_Makefile.am

x11-toolkits/thentenaar-motif-devel: Update to the latest github commit
DeltaFile
+3-3x11-toolkits/thentenaar-motif-devel/distinfo
+2-2x11-toolkits/thentenaar-motif-devel/Makefile
+2-2x11-toolkits/thentenaar-motif-devel/files/patch-lib_Xm_Makefile.am
+1-1x11-toolkits/thentenaar-motif-devel/pkg-plist
+8-84 files

FreeBSD/ports 20fd521shells/ksh-devel distinfo Makefile

shells/ksh-devel: update to the latest ksh93/ksh github commit
DeltaFile
+3-3shells/ksh-devel/distinfo
+2-2shells/ksh-devel/Makefile
+5-52 files

FreeBSD/ports 33d128asysutils/cfengine-devel distinfo Makefile

sysutils/cfengine-devel: Update to latest GH commit
DeltaFile
+5-5sysutils/cfengine-devel/distinfo
+3-3sysutils/cfengine-devel/Makefile
+8-82 files

FreeBSD/ports 69b84d4sysutils/cfengine-masterfiles-devel distinfo Makefile

sysutils/cfengine-masterfiles-devel: Update to latest GH commit
DeltaFile
+3-3sysutils/cfengine-masterfiles-devel/distinfo
+2-2sysutils/cfengine-masterfiles-devel/Makefile
+5-52 files

LLVM/project c76374alld/MachO ConcatOutputSection.cpp

add section name to log
DeltaFile
+1-1lld/MachO/ConcatOutputSection.cpp
+1-11 files

LLVM/project 8ea2b58clang/lib/CIR/Dialect/Transforms LoweringPrepare.cpp, clang/test/CIR/CodeGen local-const-aggregate-name-clash.cpp

[CIR] Avoid duplicate name collisions in LoweringPrepare (#194469)

This fixes a bug in the CIR LoweringPrepare pass where we were creating
multiple constant initializer global values with the same name, causing
references to them (specifically cir.get_global) to get the wrong value.

Assisted-by: Cursor / claude-4.7-opus-xhigh
DeltaFile
+86-25clang/lib/CIR/Dialect/Transforms/LoweringPrepare.cpp
+45-0clang/test/CIR/CodeGen/local-const-aggregate-name-clash.cpp
+131-252 files

FreeBSD/ports ddf21ccnet/foreman-proxy Makefile distinfo, net/foreman-proxy/files foreman-proxy.in

net/foreman-proxy: Update 3.13.0 => 3.18.1

Changelog:
https://github.com/theforeman/smart-proxy/blob/3.18.1/CHANGELOG

Commit log:
https://github.com/theforeman/smart-proxy/compare/3.13.0...3.18.1

Improve port:
- Fix warnings from portclippy.
- Fix build with USERS/GROUPS not in UIDs/GIDs.
- In do-install:
  - Merge MKDIRs.
  - Replace "LN -s" with "RLN".
  - Replace "CP -r" in for loop with single COPYTREE_SHARE.
  - Merge INSTALL_SCRIPTs.
  - Replace "${PREFIX}/etc/foreman-proxy" with "${ETCDIR}".
- Replace "${PREFIX}/etc/foreman-proxy" with "${ETCDIR}" in rc script.


    [3 lines not shown]
DeltaFile
+27-26net/foreman-proxy/Makefile
+3-3net/foreman-proxy/distinfo
+1-1net/foreman-proxy/files/foreman-proxy.in
+1-0net/foreman-proxy/pkg-plist
+32-304 files

LLVM/project ba6861cllvm/lib/Frontend/OpenMP OMPIRBuilder.cpp, mlir/test/Target/LLVMIR openmp-target-spmd-num-threads-i64.mlir

[OpenMPIRBuilder] Cast device num_threads to i32 for __kmpc_parallel_60 (#194634)

I observed a crash in device OpenMP lowering when compiling with
`-fdefault-integer-8`. In `targetParallelCallback`, `NumThreads` can be
`i64`, but `__kmpc_parallel_60` expects an `i32` `num_threads`
parameter, which caused a bad-signature assertion during call creation.

The fix is to use `CreateZExtOrTrunc(..., Int32)` for the `num_threads`
argument before building the runtime call. This matches the handling
used in clang in `CGOpenMPRuntimeGPU::emitParallelCall`.

The problem can be seen with the following testcase whe compiled with
`flang -fopenmp --offload-arch=gfx90a test.f90 -fdefault-integer-8``

```
program test
  implicit none
  integer :: nthreads
  integer :: i

    [6 lines not shown]
DeltaFile
+19-0mlir/test/Target/LLVMIR/openmp-target-spmd-num-threads-i64.mlir
+4-1llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+23-12 files

FreeBSD/ports 0824dc4sysutils/rubygem-redfish_client distinfo Makefile

sysutils/rubygem-redfish_client: Update 0.5.4 => 0.8.0

Commit log:
https://github.com/xlab-steampunk/redfish-client-ruby/compare/0.5.4...0.8.0

Add LICENSE_FILE.

PR:             294846
Sponsored by:   UNIS Labs
DeltaFile
+3-3sysutils/rubygem-redfish_client/distinfo
+3-2sysutils/rubygem-redfish_client/Makefile
+6-52 files

LLVM/project 329f620llvm/lib/Target/AArch64 AArch64InstrFormats.td

fixup! Remove superfluous code
DeltaFile
+0-7llvm/lib/Target/AArch64/AArch64InstrFormats.td
+0-71 files

FreeBSD/ports 0744244textproc/p5-Lingua-EN-Syllable Makefile

textproc/p5-Lingua-EN-Syllable: fix version going backwards
DeltaFile
+2-1textproc/p5-Lingua-EN-Syllable/Makefile
+2-11 files

LLVM/project 474ebacllvm/test/Transforms/LoopVectorize make_scalarization_decisions.ll

Add suggested test
DeltaFile
+43-0llvm/test/Transforms/LoopVectorize/make_scalarization_decisions.ll
+43-01 files

LLVM/project 24adcf2lldb/source/Target Process.cpp

fixup! don't enqueue actions that won't change the site status
DeltaFile
+7-1lldb/source/Target/Process.cpp
+7-11 files

FreeBSD/ports 0234ee2emulators/qemu Makefile

emulators/qemu: Remove remnants of EXTRA_PATCHES

Reported by:    brd
DeltaFile
+0-3emulators/qemu/Makefile
+0-31 files

FreeBSD/ports 785fde8textproc/fzf Makefile distinfo

textproc/fzf: Update version 0.71.0=>0.72.0

Changelog: https://github.com/junegunn/fzf/releases/tag/v0.72.0
DeltaFile
+2-10textproc/fzf/Makefile
+5-5textproc/fzf/distinfo
+7-152 files

FreeBSD/ports e90fda6textproc/p5-Lingua-EN-Syllable distinfo Makefile

textproc/p5-Lingua-EN-Syllable: Update version 0.29=>0.30

Changelog: https://metacpan.org/dist/Lingua-EN-Syllable/changes
DeltaFile
+3-3textproc/p5-Lingua-EN-Syllable/distinfo
+1-1textproc/p5-Lingua-EN-Syllable/Makefile
+4-42 files

FreeBSD/ports 0a123e1devel/py-ariadne distinfo Makefile

devel/py-ariadne: Update version 0.25.1=>0.25.2

Changelog: https://github.com/mirumee/ariadne/releases/tag/0.25.2
DeltaFile
+3-3devel/py-ariadne/distinfo
+1-1devel/py-ariadne/Makefile
+4-42 files

FreeBSD/ports 4902f6adevel/py-lizard distinfo Makefile

devel/py-lizard: Update version 1.17.19=>1.17.20

Changelog: https://github.com/terryyin/lizard/releases/tag/1.17.20
DeltaFile
+3-3devel/py-lizard/distinfo
+1-1devel/py-lizard/Makefile
+4-42 files

FreeBSD/ports 5b58587net/p5-Amazon-SQS-Simple distinfo Makefile

net/p5-Amazon-SQS-Simple: Update version 2.05=>2.06

Changelog: https://metacpan.org/release/PENFOLD/Amazon-SQS-Simple-2.06/changes
DeltaFile
+3-3net/p5-Amazon-SQS-Simple/distinfo
+1-1net/p5-Amazon-SQS-Simple/Makefile
+4-42 files

FreeBSD/ports 64ae9e0net/libwebsockets distinfo Makefile

net/libwebsockets: Update version 4.3.9=>4.3.10

Changelog: https://github.com/warmcat/libwebsockets/releases/tag/v4.3.10
DeltaFile
+3-3net/libwebsockets/distinfo
+1-2net/libwebsockets/Makefile
+4-52 files

FreeBSD/ports a60be56devel/p5-BZ-Client distinfo Makefile

devel/p5-BZ-Client: Update version 1.071=>1.072

Changelog: https://metacpan.org/dist/BZ-Client/changes
DeltaFile
+3-3devel/p5-BZ-Client/distinfo
+1-1devel/p5-BZ-Client/Makefile
+2-0devel/p5-BZ-Client/pkg-plist
+6-43 files

FreeBSD/ports 1c46749databases/freetds-devel distinfo Makefile

databases/freetds-devel: Update version 1.5.311=>1.5.312
DeltaFile
+3-3databases/freetds-devel/distinfo
+1-1databases/freetds-devel/Makefile
+4-42 files

FreeBSD/ports 43c4f52x11-wm/river distinfo Makefile

x11-wm/river: update to 0.4.3

Approved by:    lwhsu (mentor, implicitly)
DeltaFile
+3-3x11-wm/river/distinfo
+1-1x11-wm/river/Makefile
+4-42 files

FreeBSD/ports 513d49csecurity/hockeypuck distinfo Makefile

security/hockeypuck: update to 2.3.3

Approved by:    lwhsu (mentor, implicitly)
DeltaFile
+3-3security/hockeypuck/distinfo
+1-2security/hockeypuck/Makefile
+4-52 files

LLVM/project 5c27e49llvm/lib/Target/AArch64 AArch64RegisterInfo.td, llvm/lib/Target/AArch64/AsmParser AArch64AsmParser.cpp

fixup! Implement Marian's suggestion to implement as XSeqPairsClass + [XZR, XZR]
DeltaFile
+54-82llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
+35-73llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
+12-9llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
+8-1llvm/lib/Target/AArch64/AArch64RegisterInfo.td
+0-7llvm/test/MC/AArch64/armv9a-sysp.s
+1-3llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.h
+110-1756 files

LLVM/project e42838allvm/lib/Target/AArch64/MCTargetDesc AArch64InstPrinter.cpp, llvm/test/MC/AArch64 armv9a-sysp.s

fixup! Add no-alias tests
DeltaFile
+4-3llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
+7-0llvm/test/MC/AArch64/armv9a-sysp.s
+11-32 files