devel/git-flow-next: Add new port
Modern reimplementation of git-flow in Go that offers greater
flexibility while maintaining backward compatibility with the original
git-flow and git-flow-avh.
PR: 293234
Mk/Uses/cabal.mk: Support for USE_CABAL in separate Makefile.cabal
Like we already do have in Mk/Uses/cargo.mk for Makefile.crates.
* Adopt www/hs-postgrest to this change in framework.
Reviewed by: vvd@
Approved by: portmgr@ (arrowd@)
Approved by: db@, yuri@ (Mentors, implicit)
Differential Revision: https://reviews.freebsd.org/D51936
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]
14.4/relnotes: remove obsolete information
The Future Release section must correspond
to current state. Removed section was copies
from 14.3R relnotes and obsolete since 15.R
release date
Approved by: re (implicit)
Differential Revision: https://reviews.freebsd.org/D55322
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.
handbook/advanced-networking: Add ip6 to bridging
Add example for assigning a dynamic IPv6 address to a bridge interface
and clarify packet filtering behavior.
Reviewed by: madpilot, ziaee
Closes: https://github.com/freebsd/freebsd-doc/pull/603