math/givaro: Add DOXYGEN option
- Sort PLIST
- Bump PORTREVISION for package change
Documentation built with Doxygen should be added to DOXYGEN option
rather than DOCS option.
PR: 295149
graphics/feh: Update to 3.12.2
Upstream changes:
- Treat audio/mpeg files as images and display their cover image, if present
- Fix menu-related focusing issues under Xwayland
- Support reproducible builds for feh(1) manual
Sponsored by: The FreeBSD Foundation
power: Rename sleep types
Make sleep type names clearer and more consistent, and allow space for
something like "os_hibernate" once that gets added to FreeBSD.
Reviewed by: jaeyoon, olce, markj
Approved by: jaeyoon, olce, markj
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56920
lang/zig015: copy from lang/zig
Create the lang/zig015 for ports not ready for Zig 0.16.0 and depending
on Zig 0.15
PR: 294741
Approved by: arrowd (co-mentor)
rge: add the Intel Killer E5000 PCI ID
This and the E3000 are both handled by the r8169 driver in Linux, and
reportedly this is infact just a straight re-brand of the RTL8126.
Tested by: "Sinetek" on Discord
Reviewed by: adrian
Differential Revision: https://reviews.freebsd.org/D56917
libregex: fix our mapping for \w
A small oversight in our implementation of \w is that it's actually
not strictly [[:alnum:]]. According to the GNU documentation, it's
actually [[:alnum:]] + underscore. The fix is rather trivial: just add
it to our set explicitly, and amend our test set to be sure that _ is
actually included.
PR: 287396
(cherry picked from commit d0ff5773cefaf3fa41b1be3e44ca35bd9d5f68ee)