aurupdater

qt5-quickcontrols-nemo

Build times (auto-updated)


Category: maintained/qt5-quickcontrols-nemo (adopted from official Arch repos – flagged by buildmaster’s “Missing state file” checker as a candidate to move to the AUR; see https://buildmaster.archlinux32.org/checker/summary.html).

2026-09-05: adopted from official repos

2026-09-05: build failure – transitive Qt5/Qt6 mlite conflict, fixed via a Qt5 fork chain

2026-09-08: false UPD flag fixed – upstream’s own Qt5->Qt6 migration, same story as above

STATES.txt flagged 5.7.7 -> 6.4.3 as UPD. Confirmed real (upstream genuinely tagged 6.4.3), but checked that tag’s CMakeLists.txt: find_package(Qt6 COMPONENTS Core Gui Qml Quick Test REQUIRED) – upstream itself migrated to Qt6 starting at tag 6.0, same underlying story as the nemo-qml-plugin-configuration fork above. This package depends entirely on qt5-* packages and is deliberately pinned to the last Qt5-era tag, so bumping to 6.4.3 would both require a Qt6 rebuild and break every qt5-* dependency. Not a routine bump.

Fixed at the nvchecker level rather than leaving it perpetually flagged: added include_regex = "5\\..*" to .nvchecker.toml so only 5.x tags are ever considered. Hit a real nvchecker gotcha getting there – include_regex/exclude_regex match via re.fullmatch(pattern, str(x)), so an anchored-prefix-only pattern like "^5\\." matches nothing (fullmatch requires the whole string, e.g. "5.7.7", to match; "^5\\." alone only ever matches the 2-char string "5."). Needed .* at the end ("^5\\..*" or bare "5\\..*", fullmatch anchors both ends already) to actually match real version strings. Verified directly with nvchecker -c .nvchecker.toml --logger json before and after.