dns/denominator: Mark DEPRECATED
- Uptream repo has been archived
- Use dns/py-dns-lexicon
- Set EXPIRATION_DATE 2026-09-15
(cherry picked from commit 2515483633429946acc0479caac6a88faacf42fa)
multimedia/avidemux-plugins: Mark broken after multimedia/vapoursynth update (a5e4dc2)
It's been spamming pkg-fallout mailing list for a while. I think
it's also expected to be removed/deprecated soon. I am just marking
BROKEN to stop the spam for now.
Reported by: pkg-fallout
Approved by: osa, vvd (Mentors, implicit)
(cherry picked from commit 1ebcc067467ffd4f122f76b17d07426bb3c83f49)
multimedia/avidemux-plugins: Mark broken after multimedia/vapoursynth update (a5e4dc2)
It's been spamming pkg-fallout mailing list for a while. I think
it's also expected to be removed/deprecated soon. I am just marking
BROKEN to stop the spam for now.
Reported by: pkg-fallout
Approved by: osa, vvd (Mentors, implicit)
x11-wm/wayfire-plugins-extra: Update 0.10.0 => 0.11.0, take maintainership
Port changes:
- Add USES+=cmake:indirect for successful build.
- Add new dependency: math/glm.
- Update submodules (the plugins).
- Pet port{clippy,fmt}.
Changelog:
https://github.com/WayfireWM/wayfire-plugins-extra/releases/tag/v0.11.0
Credits: Scott Moreau <oreaus at gmail.com> (upstream: for help fixing build of pixdecor)
Approved by: osa, vvd (Mentors, implicit)
devel/wf-config: Update 0.10.0 => 0.11.0, take maintainership
Port changes:
- Pet portclippy and portfmt.
- Make wayfire mentions to uppercase.
Changelog:
https://github.com/WayfireWM/wf-config/releases/tag/v0.11.0
Reported by: repology
Approved by: osa, vvd (Mentors, implicit)
[lldb] Fix invalid UTF-8 in JSON log message (#216185)
Enabling the JSON packet log part way through a session aborts an
assertions build:
```
(lldb) b f
(lldb) run
(lldb) log enable -j -f /tmp/pk.json gdb-remote packets
(lldb) next
Assertion failed: (false && "Invalid UTF-8 in value used as JSON"), function Value, file JSON.h, line 333.
```
`Log::EmitJSONMessage` passed the message straight to
`llvm::json::Value`,
which asserts on ill-formed UTF-8 and only then falls back to `fixUTF8`.
So a release build repairs the message while an assertions build dies.
The bytes come from the saved packets. Once logging is turned on,
[10 lines not shown]