py-lupa: updated to 2.6
2.6 (2025-10-24)
* The bundled LuaJIT versions were updated to the latest git branches.
* Built with Cython 3.1.6.
2.5 (2025-06-15)
* Lua uses ``dlopen()`` again, which was lost in Lupa 2.3.
Patch by Philipp Krones.
* The bundled Lua 5.4 was updated to 5.4.8.
* The bundled LuaJIT versions were updated to the latest git branches.
* Built with Cython 3.1.2.
[lldb-dap] Migrate stackTrace request to structured types (#173226)
This patch finishes migration to structured types and removes
`LegacyRequestHandler`.
[SLP]Recalculate dependencies for all cleared entries
Need to recalculate the dependencies for all cleared items to avoid
a crash, if the entry is used in other vector nodes
Fixes #173469
databases/mongodb70: harden the port to external CONFIGURE_ARGS
CONFIGURE_ARGS is directly connected to CONFIGURE_SCRIPT and the script
only accepts 2 parameters. Exit 1 on incorrect number of parameters.
And don't allow to += on CONFIGURE_ARGS.
Not bumping PORTREVISION, no content change intended.
PR: 291951
linprocfs.4: Improve docs around pid/self entries
Mark <pid> as a placeholder and document that self is a symlink to a directory.
PR: 283080
Reviewed by: ziaee
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D54358
linprocfs.4: Improve docs around pid/self entries
Mark <pid> as a placeholder and document that self is a symlink to a directory.
PR: 283080
Reviewed by: ziaee
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D54358
Add compatibility check to EC_POINT_mul()
This is the only public API that doesn't check for compatibility between
group and point. Add the missing check.
ok jsing kenjiro
Replace group->meth != point->meth checks
The method will currently always be identical since all groups use the
EC_GFp_mont_method(). Use the ec_group_and_point_compatible() check to
ensure this and if both group and point have a nid set, check that they
are identical.
ok jsing kenjiro
Add ec_group_and_point_compatible() helper
Check that a given group and point are reasonably compatible. First see
if they use the same method. Compare nids if both have nid != NID_undef.
ok jsing kenjiro
Add nid to EC_POINT for compat checking
It is annoying that an EC_POINT does not really know on what EC_GROUP it
lives. Adding a refcount to EC_GROUP is slightly tricky, so instead use
a nid which we will know unless the group was constructed by hand.
ok jsing kenjiro