Update gnome-control-center to version 47.7.
Remove unneeded patch.
USE_LDCONFIG is not needed. (truckman)
Pet portlint makefile order. (truckman)
PR: 287874
Update evince to version 48.1.
Fix pkg-plist* %%%%GTK4_VERSION%% and %%%%GTK3_VERSION%% macros are
irrelevant here, because Evince is build against Gtk3.
PR: 287987
Remove dependencies unneeded for lite flavor,
The update to v48.0 copied some dependencies that are for the full
version to both versions: gnomedesktop3, introspection:build,
libxm2.
libdbus-1.so is not needed for the lite version, but libxml2 is for both.
(truckman)
pet portlint (truckman)
PR: 287619
- Fix added in CegoQueyHelper::evalAttrCond, COMPLETE value must
be returned in flArray loop and if not found PARTIAL must be returned
( return was missing )
- Patch in CegoTerm::getSelectQueryList to retrieve subselects
also for case conditions and nested conditions. So this affects
also class CegoFactor, CegoCaseCond and CegoCondition which have
to provide the getSelectQueryList method. This extension is required
to retrieve appropriate table sets for query cache decicisions
- Update pkg-descr files to show correct PHP version (was 8.0 for all)
- Update COMMENT in Makefiles to include correct version branch
- Fix Makefile variable ordering (IGNORE_WITH_PHP before PHP_VER)
- Fix incomplete IGNORE_WITH_PHP entries to include all other PHP versions
- Apply portfmt formatting
While here, ensure all ports pass portclippy validation.
Reviewed by: bofh
Differential Revision: https://reviews.freebsd.org/D51148
There is only one pipeline, with two commands, in the script and the
receiving awk script is carefully written to produce a correct exit
status for any situation.
For that reason pipefail was already redundant. More than that,
pipefail was actually harmful because the awk script would terminate
early upon detecting success. Because of that, readelf could get
SIGPIPE and terminate with non-zero status. "Thanks" to pipefail the
whole pipeline would have non-zero exit status well.
The issue manifested itself as sporadic failures of the script during
bulk poudriere builds.
Discussed with: bapt
git 2.50.0 was failing to build when libsysinfo was installed and, to
workaround this issue, an option LIBSYSINFO was added to the port and a
small change made on configure.ac to make it possible to disable this
knob.
After some discussion with git developers they prpoposed a different
approach to just ignore libsysinfo if it's installed because git should
never use it on FreeBSD. It should use BSD_SYSCTL option instead.
This change removes the LIBSYSINFO option and properly change
configure.ac to ignore LIBSYSINFO when HAVE_BSD_SYSCTL is set. This way
git will build exactly the same when libsysinfo is or not installed.
Obtained from: https://lore.kernel.org/git/b57b1418-2179-480c-92a3-a107388d71f2@gentoo.org/T/#ma65c83afdc1918ffdb18c9cae9ead29db4738b0f
Sponsored by: Rubicon Communications, LLC ("Netgate")