feature options define combo like auto/yes/no in a standand way.
In other words, upstream projects of ports that use _MESON_YES are
supposed to migrate to _MESON_ENABLED.
https://mesonbuild.com/Build-options.html#features
Reviewed by: tobik (implicit)
Approved by: portmgr (mat)
Differential Revision: https://reviews.freebsd.org/D19127
A light, single-file, minimalist window manager for X11.
This window manager is single-file and a super small binary with low
resource consumption. Personally, I find it's useful for focused work
where you aren't moving around too much and don't need multiple
workspaces (it doesn't support them, obviously).
WWW: https://github.com/vardy/aphelia
PR: 233365
Submitted by: Hyun Hwang <hyun@caffeinated.codes>
===> Configuring for qtile-0.13.0
Download error on https://pypi.org/simple/cairocffi/: [Errno 65] No route to host -- Some packages may not be found!
Download error on https://pypi.org/simple/: [Errno 65] No route to host -- Some packages may not be found!
No local packages or working download links found for cairocffi>=0.9[xcb]
Reported by: pkg-fallout
LXQt is an advanced, easy-to-use, and fast desktop environment based on
Qt technologies. It has been tailored for users who value simplicity,
speed, and an intuitive interface. Unlike most desktop environments,
LXQt also works fine with less powerful machines.
PR: 229318
Approved by: miwi (mentor)
Differential Revision: https://reviews.freebsd.org/D19003
LXQt session handling and configuration.
Contains the startlxqt script and lxqt-leave
binary to respectively start and stop a LXQt DE session.
PR: 229291
Approved by: miwi (mentor)
Differential Revision: https://reviews.freebsd.org/D17974
- Add missing dependencies
- Remove unneeded patches
- Regenerate and rename legacy patches
- Add NLS option to ports providing such a knob, and missing the
option
- Add INSTALL_TARGET=install-strip where missing
- Sort things
- Remove unneeded +=
- Cosmetic changes to OPTION related variables to improve readability
- Update WWW
- Silence portlint warnings about variables order
- Bump PORTREVISION where changing dependencies and/or adding
install-strip
- While here add missing USES=gnome
- Reset maintainer due to the long timeout
PR: 230916
Submitted by: Samy Mahmoudi <samy.mahmoudi@gmail.com>
Approved by: freebsd-ports@dan.me.uk (maintainer timeout, ~5 months)
Even though users usually keep WM configuration local, it's
good to use @sample for global configuration files to avoid
losing it on package reinstalls.
Bump PORTREVISION due to package change.
PR: 227338
Reported by: meine <trialero@gmx.com>
a symbol matches multiple clauses the last one takes precedence. If the
catch-all is last it captures everything. In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the
catch-all lowest priority.
Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium. Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3] The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one. If there's no such non-weak symbol the call
in the weak wrapper resolves to the weak wrapper itself creating an infinite
call loop that overflows the stack and causes a crash. Some of the
allocation functions are variants of C++ new and delete and it probably
depends on the compiler whether these variants are used in other parts of
Qt5Webengine.
Remove the weak wrappers (make them Linux specific). This isn't binary
compatible but we are already breaking that with the changes to the symbol
versions.
[1] 5c2cbfccf9
[2] 2ed5054e3a
[3] 009f5ebb4b
Bump all ports that depend on Qt5.
PR: 234070
Exp-run by: antoine
Approved by: kde (adridg)