net-p2p/{lib,r}torrent: Roll back to 0.16.5
Due to instability of 0.16.6, roll back to 0.16.5 stable.
As a temporary measure as upstream is working on a release fix, let's
roll back with a portrevision bump.
PR: 292914
Reported by: glebius
Reviewed by: glebius, novel
MFH: 2026Q1
See also: https://github.com/rakshasa/rtorrent/issues/1689
(cherry picked from commit 73e88b9f23d4986b5862933ff0d07f9ebf0aeee7)
net-p2p/{lib,r}torrent: Roll back to 0.16.5
Due to instability of 0.16.6, roll back to 0.16.5 stable.
As a temporary measure as upstream is working on a release fix, let's
roll back with a portrevision bump.
PR: 292914
Reported by: glebius
Reviewed by: glebius, novel
MFH: 2026Q1
See also: https://github.com/rakshasa/rtorrent/issues/1689
[CIR] Add CIR types and operations for flattened EH and cleanup (#178496)
This adds the CIR dialect definitions for the new types and operations
that will be needed to perform CFG flattening on the high-level CIR
representation of exception handlng and cleanups. Tests are added for
the dialect printing, parsing, and verification.
This does not include any code to flatten the CFG or otherwise generate
the new operations or to lower them into other forms. That support will
be added in later changes.
[lldb][TypeSystemClang] Don't treat float vector types as floating point types (#179213)
This patch re-implements `TypeSystemClang::IsFloatingPointType` by
forwarding it to `clang::Type::isFloatingType`. The main difference is
that the latter returns false for float vector types. The motovation
here (apart from implementation simplicity) is that this is currently a
foot-gun because most callsites probably don't consider treating float
vector types. Callers should test for vectors explicitly using
`IsVectorType` (or use `GetTypeInfo`).
This patch makes all the callers of `IsFloatingPointType` now check
`GetTypeInfo() & eTypeIsFloat`. This is set for float vector types too,
so behaviour doesn't change.
To make sure we audit all the call-sites in `ValueObject.cpp`, I added a
helper `HasFloatRepresentation` (named after the
`clang::Type::hasFloatingRepresentation` API), which does the
`GetTypeInfo` check, and added a FIXME to it.
LinuxKPI: string_choices.h: use ternary operator
Switch from using if () else to a direct return (?:) code.
No functional changes.
Suggested by: kib (D55029)
Sponosred by: The FreeBSD Foundation
MFC after: 3 days
Reviewed by: emaste (before removing more () as suggested by him)
Differential Revision: https://reviews.freebsd.org/D55088
zk: Update to 0.15.2
Changes:
0.15.2
Added
- Find notes with missing backlinks using zk list --missing-backlink
- LSP diagnostic for missing backlinks when other notes link to current note
without reciprocal links
- Code action to add missing backlinks
- LSP diagnostic for self-referential links
Fixed
- Release tarballs now output the program version
- Config path can be set with $ZK_CONFIG_DIR
devel/libvirt: fix build on 16-CURRENT
As of src commit ac5a19ec6989675c8ec6c3ca245dba243d1a6416 xdrproc_t
accepts only two arguments. Address that change in libvirt.
Reported by: pkg-fallout
Obtained from: upstream
Sponsored by: The FreeBSD Foundation