13,232,022 commits found in 7 milliseconds
shells/dash: Update to 0.5.13.4.
Changes: https://git.kernel.org/pub/scm/utils/dash/dash.git/log/
(cherry picked from commit 5172bd2c835f0e468150fb5cbbc7013151d0be43 )
security/vuxml: Document dash entry
LLVM /project 11c8eed — clang/lib/CIR/CodeGen CIRGenExpr.cpp Address.h, clang/test/CIR/CodeGen amdgpu-stack-alloca-array-decay.cpp [CIR][CIRGen] Cast stack allocas to the language-visible address space
shells/dash: Update to 0.5.13.4.
Changes: https://git.kernel.org/pub/scm/utils/dash/dash.git/log/
[clang][test] Add AArch64 requirement to arm64_neon.h test (#196867)
Only run test when the AArch64 target is built LLVM /project 165ce5c — clang/include/clang/Serialization ASTRecordReader.h, clang/lib/AST ASTContext.cpp Type.cpp trivial changes
LLVM /project 5b3da81 — clang/include/clang/AST ASTContext.h, clang/lib/AST ASTContext.cpp ItaniumMangle.cpp [clang] implement CWG2064: ignore value dependence for decltype
The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.
This patch also implements what's neceessary to allow overloading
on pure differences in instantiation dependence, making `std::void_t`
usable for SFINAE purposes.
This also readds a few test cases from da98651 , which was a previous attempt
at resolving CWG2064.
Fixes #8740
Fixes #61818
Fixes #190388
LLVM /project 3a7c0eb — clang/lib/Headers arm64_neon.h module.modulemap, clang/test/CodeGen arm64-neon-header.c [clang] Add arm64_neon.h wrapper on windows (#196014)
Add an MSVC-compatible <arm64_neon.h> resource header that forwards to
Clang's generated <arm_neon.h>. This lets ARM64 Windows code using the
MSVC header name lower NEON intrinsics through Clang builtins instead of
eaving external neon_* calls such as neon_ld1m4_q32
Fixes #195683 FreeBSD /ports 5b89b6d — security/bitwarden-cli distinfo Makefile, security/bitwarden-cli/files/packagejsons package-lock.json security/bitwarden-cli: Update to 2026.4.1
Changelog: https://github.com/bitwarden/clients/releases/tag/cli-v2026.4.1
Reported by: GitHub (watch releases)
[clangd][Parser][Sema] Fix TemplateIdAnnotation UAF with template-id declarator and lambda default argument (#196788)
I think this is another case of template annotations lifetime bug,
similar to the one fixed by
https://github.com/llvm/llvm-project/pull/89494.
Closes https://github.com/llvm/llvm-project/issues/196725. x11/xauth: Update to 1.1.5
Add WWW and update pkg-descr.
https://lists.x.org/archives/xorg-announce/2025-December/003653.html
PR: 295117
Approved by: x11 (arrowd)
Approved by: fluffy (mentor)
PGSHIFT -> PAGE_SHIFT
PGOFSET -> PAGE_MASK
NBPG -> PAGE_SIZE
NBPG -> PAGE_SIZE
PGOFSET -> PAGE_MASK
PGOFSET -> PAGE_MASK
Fix formatting of function declarations in sanitizer_common.h Fix pointer declaration style for altstack_base_ Fix return statement formatting in sigaltstack check Reorder includes LLVM /project 19a1532 — llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir Merge branch 'main' into users/ilovepi/signalstack Delta File +275,101 -0 llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir +87,984 -82,073 llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll +144,679 -0 llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir +66,293 -29,491 llvm/test/CodeGen/RISCV/rvv/clmulh-sdnode.ll +57,682 -0 llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir +27,592 -26,643 llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll +659,331 -138,207 28,075 files not shown +3,490,982 -1,327,988 28,081 files
OpenBSD /ports TsweUyq — sysutils/grafana Makefile distinfo, sysutils/grafana/patches patch-conf_sample_ini sysutils/grafana: update to 13.0.1
ok denis@
textproc/ov: Update to 0.52.0
While here, claim maintainership after three consecutive maintainer
timeouts.
Changelog: https://github.com/noborus/ov/releases/tag/v0.52.0
PR: 294813
Approved by: lcook (former maintainer, timeout 2 weeks)
sysutils/py-croniter: Update to 6.2.2
- Update PORTVERSION from 6.0.0 to 6.2.2
devel/py-multipledispatch: Update to version 1.0.0
- Update PORTVERSION to 1.0.0
PR: 294188
Reported by: Yuri Victorovich <yuri at freebsd.org>
databases/R-cran-RSQLite: Update to 3.52.0
- Update PORTVERSION from 2.4.6 to 3.52.0
- Remove R-cran-Rcpp from CRAN_DEPENDS (replaced by cpp11)
audio/go-librespot: Update 0.5.3 => 0.7.1
Changelog:
https://github.com/devgianlu/go-librespot/releases/tag/v0.6.0
https://github.com/devgianlu/go-librespot/releases/tag/v0.6.1
https://github.com/devgianlu/go-librespot/releases/tag/v0.6.2
https://github.com/devgianlu/go-librespot/releases/tag/v0.7.0
https://github.com/devgianlu/go-librespot/releases/tag/v0.7.1
PR: 295183
Sponsored by: UNIS Labs
[ADT] Avoid map storage for small SmallMapVector (#196473)
SmallMapVector previously used SmallDenseMap for its index, which still
initializes and maintains map storage even when the number of entries is
tiny.
Teach MapVector to support a vector-only small mode. While the entry
count stays
within the configured small size, operations use the underlying vector
directly.
When the size grows past the threshold, the map index is built and
subsequent
operations use the regular MapVector path.
This mirrors the small-size strategy used by SmallSetVector. mail/fetchmail{,conf}: Update 6.6.3 => 6.6.4
News:
https://gitlab.com/fetchmail/fetchmail/-/blob/6.6.4/NEWS
While here remove GNU_CONFIGURE_MANPREFIX - this is default value.
PR: 295178
Sponsored by: UNIS Labs
graphics/R-cran-GDD: Mark as BROKEN
Mark GDD as BROKEN as it is no longer actively developed and fails to
compile with recent releases of R
www/tt-rss: Update g20260317 => g20260501
Commit log:
https://github.com/tt-rss/tt-rss/compare/5cbcc14...f88091c
PR: 295181
Sponsored by: UNIS Labs