From 46c8c7149fab2d126dc98d3bc9d7ee2e96013ee5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82?= Date: Wed, 8 Jul 2026 21:01:05 +0200 Subject: [PATCH] fix(calamares-branding-antergos-next-minimal): add missing minimal-info.qml to PKGBUILD The minimal-info.qml file existed in the package directory but was never listed in the source array or copied in package(), so the notesqml module couldn't find it and failed to load. --- packages/calamares-branding-antergos-next-minimal/PKGBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/calamares-branding-antergos-next-minimal/PKGBUILD b/packages/calamares-branding-antergos-next-minimal/PKGBUILD index f8a3e2b..371d779 100644 --- a/packages/calamares-branding-antergos-next-minimal/PKGBUILD +++ b/packages/calamares-branding-antergos-next-minimal/PKGBUILD @@ -32,7 +32,8 @@ source=("branding.desc" "welcome.conf" "settings_offline.conf" "settings_online.conf" - "calamares-next.sh") + "minimal-info.qml" + "calamares-next.sh") sha256sums=('SKIP' 'SKIP' 'SKIP' @@ -52,6 +53,7 @@ sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' + 'SKIP' 'SKIP' 'SKIP' 'SKIP' @@ -75,6 +77,7 @@ package() { cp "draw-rectangle.svg" "${pkgdir}${_brand}/" cp "antergos-logo.png" "${pkgdir}${_brand}/" cp "antergos-icon.png" "${pkgdir}${_brand}/" + cp "minimal-info.qml" "${pkgdir}${_brand}/" # Also overwrite default branding so Artix calamares package can't sneak in local _defbrand="/usr/share/calamares/branding/default"