lang/kotlin22: add port for Kotlin 2.2.21
This port is required by games/lwjgl3. Since Kotlin 2.3.0, Ant support has been
removed, but lwjgl3 has complex long ongoing migration story from Ant to
Gradle.
Hopefully after migration the port may be removed.
PR: 292099
Reported by: vvd@
cad/abc: exclude i386 from build targets
Build on i386 fails with errors:
__int128 is not supported on this target
Approved by: db@, yuri@ (Mentors, implicit)
vifm: update to 0.14.3.
Vifm v0.14.3
------------
Thanks for the bug reports. The 'trashdir' saga continues, sorry for the
inconveniences.
Documentation:
- Improved documentation on the use of registers. Thanks to aleksejrs.
Menus and dialogs:
- Say "primary" instead of "default" in the title of :colorscheme menu.
Other changes:
- Provided more details on file handlers and viewers in sample vifmrc files.
Fixes:
- Fixed picking trash directory when rooted trash is included in 'trashdir'
[8 lines not shown]
[Clang] Use valid source loc for empty target_clones diagnostic (#173747)
For X86 and RISCV checking of target_clones attribute arguments
attempted to use the location of the first argument for diagnosing a
missing default argument.
However, if the argument list is empty, then this location doesn't exist
and causes an assertion.
This commit passes the location of the attribute itself to the
target-specific validation function in the case of X86 and RISCV in
order to provide a usable location for this diagnostic.
Fixes #173684
---
I am not sure whether this is intentional, but for AArch64 the
validation does not emit a diagnostic for missing `"default"` argument.
[2 lines not shown]
sysutils/logstash92: New port: Server-side data ingestion and transformation tool (9.2.x version)
Logstash is an open source, server-side data processing pipeline that
ingests data from a multitude of sources simultaneously, transforms it,
and then sends it to your favorite "stash."
PR: 290986
sysutils/logstash91: New port: Server-side data ingestion and transformation tool (9.1.x version)
Logstash is an open source, server-side data processing pipeline that
ingests data from a multitude of sources simultaneously, transforms it,
and then sends it to your favorite "stash."
PR: 290985
camcontrol.8: Descriptions before examples
This page has a lot of examples, so having them in the previous order
can be confusing. Rewrite to the normal order where the descriptions
come before the command, followed by a colon, which is still clear even
jumping to the middle of the section.
PR: 291759
MFC after: 3 days
Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D54285
(cherry picked from commit fbc321b9cdceecd3c97742868da5d500423cf484)
[CIR] Match codegen change on __builtin_clrsb expansion
- 0bc6491da0c827ce94bd8fa852422eaafe6c39e7 adds the `nuw` flag during
__builtin_clrsb expansion. Match that change in CIR.
vt.4: Style pass
Outstanding: I'm not sure kernel configuration declarations are defined
variables. Dv does not allow arguments, but some why allowed paths, so
non-path arguments were being incorrectly marked up as paths.
MFC after: 3 days (with resolved conflicts)
Reviewed by: 0mp, emaste
Differential Revision: https://reviews.freebsd.org/D49565
(cherry picked from commit 7cd6da268a8fbf34b16564dd9a94c86853eb7c56)
vt.4: Style pass
Outstanding: I'm not sure kernel configuration declarations are defined
variables. Dv does not allow arguments, but some why allowed paths, so
non-path arguments were being incorrectly marked up as paths.
MFC after: 3 days (with resolved conflicts)
Reviewed by: 0mp, emaste
Differential Revision: https://reviews.freebsd.org/D49565
(cherry picked from commit 7cd6da268a8fbf34b16564dd9a94c86853eb7c56)
InstCombine: Rudimentary support of shufflevector in SimplifyDemandedFPClass (#174101)
This should look more like the computeKnownFPClass handling, with
knowledge of demanded vector elements.