net-mgmt/etherape: Update 0.9.20 => 0.9.21, take maintainership
Changelog:
* GooCanvas was unsupported and getting really old, replaced by
GtkDrawingArea.
* --final-export is primarily meant to be used from other tools as a way
to get statistics data from a replay. As such, --final-export exits
automatically after the file replay ends and the dump is written.
* Compatibility Warnings:
- removed GooCanvas dependency, drawing now done with plain Gtk.
- new behavior for --final-export: exit after saving the XML dump.
* Changes summary:
- Updated german translation, thanks to Christoph Brinkhaus.
- Fix for german translation, thanks to Ronald W. Henderson.
- Fix for gcc 15, thanks to Petr Gajdos.
- Assorted refactorings and small modernizations, including autotools.
Improve port:
- Replace PORTVERSION with DISTVERSION.
[14 lines not shown]
net-mgmt/etherape: Update 0.9.20 => 0.9.21, take maintainership
Changelog:
* GooCanvas was unsupported and getting really old, replaced by
GtkDrawingArea.
* --final-export is primarily meant to be used from other tools as a way
to get statistics data from a replay. As such, --final-export exits
automatically after the file replay ends and the dump is written.
* Compatibility Warnings:
- removed GooCanvas dependency, drawing now done with plain Gtk.
- new behavior for --final-export: exit after saving the XML dump.
* Changes summary:
- Updated german translation, thanks to Christoph Brinkhaus.
- Fix for german translation, thanks to Ronald W. Henderson.
- Fix for gcc 15, thanks to Petr Gajdos.
- Assorted refactorings and small modernizations, including autotools.
Improve port:
- Replace PORTVERSION with DISTVERSION.
[12 lines not shown]
posix_spawn test: switch to POSIX spelling for addchdir and addfchdir
Reviewed by: dim
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D56222
posix_spawn_file_action_addopen.3: ignoring close failure is now approved
Reviewed by: dim
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
Differential revision: https://reviews.freebsd.org/D56222
posix_spawn: actions chdir and fchdir are now required by POSIX
Drop the _np suffix.
Reviewed by: dim
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D56222
splash: add shutdown splash
This commit adds a shutdown splash to the existing kernel startup splash(4)
screen feature. It can be customized by providing a PNG image to the
shutdown_splash directive loader.conf(5).
Sponsored by: Defenso
MFC after: 2 weeks
Reviewed by: vexeduxr, ziaee, manu
Differential Revision: https://reviews.freebsd.org/D55140
security/py-shodan: Revert "security/py-shodan: New port: Python library and command-line utility for Shodan"
This reverts commit 98f2446834b21a4f645c889016ac5f08fe68f899.
Reported by: Antoine Brodin <antoine at freebsd.org>
truss: add support for decoding Netlink messages
Netlink usage is growing in FreeBSD. This patch adds support to
`truss(1)` to decode Netlink headers in sendmsg/recvmsg calls, making
debugging network configuration tools significantly easier.
Changes:
libsysdecode: Add `sysdecode_netlink()` to parse struct `nlmsghdr`.
truss: Detect `AF_NETLINK` sockets and decode the message payload.
Reviewed by: kp
Signed-off-by: Ishan Agrawal <iagrawal9990 at gmail.com>
Github PR: https://github.com/freebsd/freebsd-src/pull/1950