comms/chirp: update to 20260626
Event: Halifax Hackathon 202606
Event: ARRL/RAC Field Day 2026
Location: MV Northumberland towards Prince Edward Island, Canada
[OpenMP][Clang] Fix parsing of num_teams lower-bound modifier (#205700)
PR #180608 added parsing for the `lower-bound` modifier in the
`num_teams` clause. However, the lower bound expression is handled by
adding it to the first position of the clause's varlist, which is the
list that holds the number of teams for each dimension when `ompx_bare`
is specified. Given that the interpretation of the varlist depends on
its length, the following `ompx_bare` cases are broken:
- `#pragma omp target teams ompx_bare num_teams(11,10)` is interpreted
as a lower-bound and upper-bound, triggering the error "_lower bound is
greater than upper bound in 'num_teams' clause_".
- `#pragma omp target teams ompx_bare num_teams(1,2)` is interpreted as
`num_teams(1:2)` when printing the AST.
This commit fixes the collision by storing the lower bound separated from
the list of upper-bounds. This change is necessary for landing the
upcoming support for multidimensional team spaces (OpenMP 6.1) through
the `dims` modifier.
periodic/security: Introduce $security_status_loginfail_ignore for 800.loginfail
Introduce a new variable "security_status_loginfail_ignore" to filter unwanted
login failure messages from the daily security checks.
Co-authored-by: Michael Osipov <michaelo at FreeBSD.org>
Co-authored-by: Joseph Mingrone <jrm at FreeBSD.org>
PR: 295191
Reviewed by: jrm
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D57671
(cherry picked from commit 6a7c8c92245562cfd9b900dedacab99a13d5ca86)
periodic/security: Introduce $security_status_loginfail_ignore for 800.loginfail
Introduce a new variable "security_status_loginfail_ignore" to filter unwanted
login failure messages from the daily security checks.
Co-authored-by: Michael Osipov <michaelo at FreeBSD.org>
Co-authored-by: Joseph Mingrone <jrm at FreeBSD.org>
PR: 295191
Reviewed by: jrm
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D57671
(cherry picked from commit 6a7c8c92245562cfd9b900dedacab99a13d5ca86)
gnucash-docs: update to 5.16.
5.16 - 28 June 2026
o Fix the description of the Character-separated radio button in the
CSV Import Assistant to match the label.
gnucash: update to 5.16.
Version history:
------- -------
5.16 - 28 June 2026
Between 5.15 and 5.16, the following bugfixes were accomplished:
Bug 421610 - RFE: Include logical dates for View->Filter by "date range"The Select Range
section of the Date tab of the register's Filter By dialog box is changed to
provide relative, specific date, or days ago options for the start and end of
the filter range. The Show number of days item label is changed to Show from days
ago to better reflect what it does.
Bug 436105 - esc key not working as expected in register: Enable the escape key to cancel a
field edit.
Bug 797384 - Gnucash doesn't handle commodity prices with big numerator/denominator properly.
Bug 798004 - Next gen UI for stock transactions
Bug 799314 - Add "enter now" option in scheduled transaction editor. tab to allow users to
select the scheduled transactions to be included in a “Since Last Run…” window.
If there are no instances of a selected transaction triggered by today’s date,
[60 lines not shown]
[VPlan] Support SRem in getSCEVExprForVPValue. (#206361)
Extend vputils::getSCEVExprForVPValue to construct SCEV expressions for
SRem recipes. A SRem of non-negative operands is equivalent to URem.
Enables SCEV-based no-alias reasoning for stores derived from SRem GEPs.
ledger32: fix build with latest boost
Put BROKEN marker into the python option, where it belongs.
If you don't need the Python .so file, the package now builds fine.
Bump PKGREVISION.
[llubi] Treat `llvm.experimental.noalias.scope.decl` as a noop (#206357)
The noalias support is still work in progress:
https://github.com/llvm/llvm-project/pull/195808
`llvm.experimental.noalias.scope.decl` is emitted by the inliner. We may
need more time to clarify the semantics.
This patch treats the intrinsic as a noop to avoid crashes (metadata
arguments are not supported before this patch).