-
af174b9b · upgpkg: 135.0.7049.114-2: libxml2 2.14.2 rebuild
-
7c419c20 · upgpkg: 135.0.7049.114-1
Can someone more proficient explain to me why use_qt5
should still be set to true
? I mean Arch Linux now ships qt6 anyway?
-
6d4b8b4f · upgpkg: 135.0.7049.95-2: libxml2 2.14.2 rebuild
The intention behind that elif
is to replace adler2
with adler
if the latter cannot be found under /usr/lib/rustlib
. Chromium 135.0.7049.84 was the...
grep -q
will exit with 0 as soon it finds something. So you reverse that with !
. Meaning the if branch will be entered if adler2
is found.
Isn't it that you check for adler2
and if it exists, substituting it with adler
? But in Rust 1.86.0 adler2
exists - and AFAIK adler
not - but you s...
-
c20549e7 · Remove adler2 workaround (Rust 1.86 is now stable)
We're checking if the adler2
library exists and, if not, substituting it with adler
. The version check would achieve the same exact thing.
@loqs, @hanabishi, thank you both for the confirmation (thus answering the question).
There is nothing to test really, it would not work....
In Gentoo they at least check if the used rust version is lower than 1.86 - but we just replace adler2 with adler no matter what:...
Did you test with unprivileged user namespaces disabled such as linux-hardened or with USER_NS_UNPRIVILEGED disabled?