misc/deark: [NEW PORT] Utility for data extraction, decompression, and image format decoding
Deark is a portable command-line utility that can decode certain types of files,
and either convert them to a more-modern or more-readable format, or extract
embedded files from them. It also has an option (-d) to display detailed
information about a file’s contents and metadata. It’s Free Software.
The files it writes are usually named "output.*".
When processing "archive" formats that contain other files, it's usually best to
use Deark only to convert to ZIP format, so that the filenames and paths can be
retained. Suggest options "-zip -ka".
WWW: https://entropymine.com/deark/
Approved by: yuri@ (Mentor)
Differential Revision: https://reviews.freebsd.org/D54697
x11-toolkits/libadwaita: update 1.7.7 to 1.7.11
Update to 1.7.11 (this version is for Gtk 4.18.x)
=============
Version 1.7.8
=============
- AdwComboRow
- Allow selecting items via touchscreen
- Improve accessibility
- AdwEntryRow
- Fix title ellipsizing too late
- Activate the row action when pressing enter
- AdwNavigationView
- Fix a build warning on some platforms
- AdwTabBar/AdwTabGrid
- Fix context menu alignment on RTL
- Docs
[69 lines not shown]
Mk/bsd.sites.mk: Prune NXDOMAIN mirrors
The following one-liner was used for the initial NXDOMAIN lookup.
$ <Mk/bsd.sites.mk grep -o '://[^/]*\/' | sed 's|[:\/]||g' | sort -u | \
zdns A | jq -r 'select(.results.A.status=="NXDOMAIN") | .name'
comms/hamlib: Update to 4.7.0
- remove patches no longer needed due to FreeBSD changes in upstream
- Add manual page for rigtestmcast and rigtestmcastrx
- Add manual page for rigtestlibusb
- Add rigctltcp manual page
ipfilter: Avoid negative array indicies
Array indices must always be posive. We avoid this by making each index
unsigned. This mitigates out-of-bounds reads and writes.
Reported by: Ilja Van Sprundel <ivansprundel at ioactive.com>
Reviewed by: glebius
MFC after: 3 days
Differential revision: https://reviews.freebsd.org/D55260
capsicum-tests: remove Linux support
Now that this project is part of freebsd-src, it no longer needs to be
portable. Remove Linux-only tests, cross-os compatibility code, and
compatibility with older FreeBSD versions. Leave in place some
originally Linux-only tests that could now be ported to FreeBSD, like the
pipe2 tests.
Sponsored by: ConnectWise
Reviewed by: oshogbo
Differential Revision: https://reviews.freebsd.org/D54985
netlink: force uninline of nl_receive_message()
The entire netlink(4) message processing thread is all inlined into
nl_taskqueue_handler() making it difficult to dtrace(1) on a message
level.