Add safety REVISION bump
After disabling pipewire, the PLIST had to be adjusted. When pipewire was
present, it was also built with the header. To be on the safe side, REVISION
bump after the PLIST update.
Pointer from phessler
Qt6WaylandClient and Qt6WaylandClient missing version sync
Qt6WaylandClient and Qt6WaylandClient moved from qtwayland to qtbase.
I forgot to move the versions. With this commit, they were also bumped and the
REVISION was increased.
Spotted by aja
cmake: fix build with Qt 6.10 (#100)
The 'Qt6FooPrivate' targets have been split into separate CMake files
in Qt 6.9, and require a 'find_package(Qt6FooPrivate)' call starting
with Qt 6.10.
See also: https://bugreports.qt.io/browse/QTBUG-87776
Update to Python 3.13.11, ok kmos (maintainer), sthen
3.13.10 was a rather massive update and .11 adds a few fixes on top,
some of them for not too terrible security issues:
https://www.python.org/downloads/release/python-31310/https://www.python.org/downloads/release/python-31311/
The annoying bit about this update is that our homegrown expat build
system does not install expat_config.h, which, strangely, is autoconf
results exposed in a public header (next to a few XML_ things). Until
that's sorted in base we get to patch the Python code since the expat
maintainer made the mitigation knobs only available behind some config
knobs, which the new Python code assumes to be enabled.