WMScript allows to specify a command and have the numeric result
of that command displayed in the dock app's window. Up to 5 things
to monitor, the interval is configurable.
See http://freshmeat.sourceforge.net/projects/wmscript for details.
PR: 253346
Submitted by: Igor Pokrovsky <ip@unixway.org> (maintainer)
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D28558
While we're here, unbreak sysutils/nsysctl with the new version and bump its
PORTREVISION.
PR: 253388, 253389
Submitted by: Alfonso S. Siciliano <alfix86 AT gmail DOT com> (maintainer)
Release 21.02.0:
core:
* GfxCal*ColorSpace: introduce Bradford transform for chromatic adaptation
* Fix memory leak if saving the file fails
* Internal code improvements
* Fix various issues handling broken files
* Make checkedAdd work for long long in MSVC
qt5:
* Properly export NewSignatureData class
* Fix regression in QIODeviceOutStream + MSVC
qt6:
* Properly export NewSignatureData class
* Fix regression in QIODeviceOutStream + MSVC
utils:
* pdftohtml: Fix error() parameter type
PR: 253183
Exp-run by: antoine
- Install more complete set of manual pages
- Do not patch+sed(1) the script, just put in on SHEBANG_FILES
- Remove patches which apparently were to avoid dependency on
GNU make, but they are incomplete and did not do the job well
(e.g., tests were broken due to circular dependencies)
- Unbreak the tests by calling /bin/sh rather than /bin/bash
While here also:
Replace the deprecated arm_control by arm_64bit for 64bits configuration
Add hdmi_safe for rpi4, recent updates of rpi-firmware break something related
to hdmi. Version 1.20201201 will reset if hdmi monitor is connected while later
version will only work if an hdmi monitor is connected. [1]
PR: 252971 [1]
MFH: 2021Q1
Hal has been introduced as part of the Gnome2 desktop and used in many
desktop application as an abstraction on the hardware layer, it has been quickly
deprecated, but alternatives took time to land in freebsd.
In most cases alternatives are now in place or upstreams dropped entirely support for
HAL.
As a result it is time to retire HAL
Bug fixes and UI improvements
cluster-software-manager: Add ports/wip management and linux compat setup,
make autoremove optional
cluster-setup: Leverage improved auto-nfs-*-setup in place of duplicated code
Finish support for non-numbered compute node hostnames
Several minor bug fixes and improvements
UI improvements, install key ports from source
Allow user to choose between simplified or advanced configuration
Tag ports installed from source so that auto-update-system will upgrade
from source
A few minor bug fixes and enhancements
Bug fixes, performance and interface improvements
auto-pkgsrc-setup: Add custom umask to sbmake wrapper to override user env
auto-change-id: Improve performance with find -exec +, prune nfs mounts
auto-gpu-setup: Install drm-kmod from source and tag for upgrading from source
auto-nfs-*-setup: Add support for nfsuserd, generalize UI
auto-nfs-restart: Restart nfsuserd in case domain has changed
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/plain/doc/RelNotes/v1.46.0.txt?h=v1.46.0
The major item in porting is to switch from GNU libc's qsort_r()
interface to ours, but see https://reviews.freebsd.org/D17083
Also, it appears at cursory glance that it takes the FUSEFS option
to get HAVE_PTHREAD_H #defined. Just pass -DHAVE_PTHREAD_H through
CPPFLAGS without further investigation.
Finally, there appears to be some confusion around __u64 vs.
unsigned long long, we get format string complaints. Use <inttypes.h>
and leverage the PRIu64 macro.
I do not intend to MFH this.