Pull up following revision(s) (requested by thorpej in ticket #136):
share/mk/bsd.own.mk: revision 1.1457 (patch)
share/man/man5/mk.conf.5: revision 1.118
Set MKPAM=no on m68000. Otherwise, progams like login(1) and cron(8)
blow the max text size budget for lack of dynamic linking.
While there also switch to BSDTAR.
PR bin/59866
lang/ghc910: Removed the "doc" option which had been enabled by default
Sorry, wiz@, but turning doc generation on was such a bad idea. Prior to
ghc910 it was off by default. It wasn't even a proper option. I (pho@) was
personally trying it from time to time to see if it worked.
In the past years it was hopeless. It almost always failed because of
version subtleties. But when I packaged ghc910, the API of Sphinx seemed
stable enough so I thought it was safe to use for building GHC docs.
I was wrong. It wasn't safe at all. Sphinx 9 came along and it broke
again. wiz@ applied a hack to unbreak the build, but I think it's not a
sustainable solution tbh. We must really turn it off and forget docs.
[InstCombine] Add check for flag propagation in `foldSelectIntoOp` (#173735)
Fixes
https://github.com/llvm/llvm-project/pull/162003#issuecomment-3693943568.
The current flag propagation assumes that if a select has both `ninf`
and `nnan`, then the operands of the folded operation must be finite.
While this assumption holds for `fadd`, `fsub`, and `fmul`, it does not
hold for `fdiv`.
For example, assume we have:
```
A = 1.0, B = +Inf
A / B = 0.0 (finite, non-NaN)
```
The current transform would turn `fdiv A, B; select ninf nnan cond, A/B,
A;` into `A / (select ninf nnan cond, B, 1.0)`. If `cond` is true, the
[6 lines not shown]
net-mgmt/{victoria-metrics,vmutils}: update to version 1.132.0
Also, fix two problems with vmagent startup script:
1) We shouldn't use /tmp for buffered data, since that directory is
typically wiped upon reboot. The argument name is a bit misleading
(remoteWrite.tmpDataPath), but that directory is used to store a
persistent queue, and /tmp is very much not persistent. Default to
/var/db/vmagent instead.
2) Previously, vmagent was offloading to itself because remoteWrite.url
in ``vmagent_args'' pointed to port 8429 which is the vmagent port,
leading to a massive load on the machine over time.
PR: 284564
Submitted by: Jan van der Lugt
Reported by: Michael Gruner
py-mautrix: updated to 0.21.0
v0.21.0 (2025-11-17)
* *(event)* Added support for creator power in room v12+.
* *(crypto)* Added support for generating and using recovery keys for verifying
the active device.
* *(bridge)* Added config option for self-signing bot device.
* *(bridge)* Removed check for login flows when using MSC4190
* *(client)* Changed `set_displayname` and `set_avatar_url` to avoid setting
empty strings if the value is already unset