fix: remove calamares from CI, add grub-theme and live packages

- Remove calamares from packages.yaml: our fork stripped services-openrc,
  Artix repo provides working calamares (3.4.2-4) with openrc support
- Add antergos-grub-theme to CI: uses real Antergos background + logo
  from grub2-theme-antergos repo merged with Artix UI infrastructure
- Add antergos-live to CI: fork of artix-live with s/artix/antergos branding
- Bump calamares-branding-antergos-next pkgrel 12->13: settings now call
  services-openrc instead of services-systemd, show.qml drops EndeavourOS,
  calamares-next.sh targets /home/antergos not /home/liveuser
This commit is contained in:
2026-06-25 14:16:27 +02:00
parent 2c2e9338b2
commit 5f81605eb2
9 changed files with 169 additions and 6 deletions
+32
View File
@@ -0,0 +1,32 @@
# Maintainer: Antergos NeXT <antergos-next@github>
pkgname=antergos-release
pkgver=2026.06
pkgrel=1
pkgdesc='Antergos NeXT release file'
arch=('any')
url="https://github.com/Antergos-NeXT"
license=('GPL3')
conflicts=('artix-release')
provides=('os-release')
package() {
install -dm755 $pkgdir/usr/lib
install -dm755 $pkgdir/etc
cat > $pkgdir/usr/lib/os-release << EOF
NAME="Antergos NeXT"
PRETTY_NAME="Antergos NeXT"
ID=antergos
ID_LIKE=artix
BUILD_ID=rolling
ANSI_COLOR="38;2;0;136;204"
HOME_URL="https://github.com/Antergos-NeXT"
DOCUMENTATION_URL="https://wiki.archlinux.org"
SUPPORT_URL="https://github.com/Antergos-NeXT"
BUG_REPORT_URL="https://github.com/Antergos-NeXT"
LOGO=antergos-logo
EOF
cp $pkgdir/usr/lib/os-release $pkgdir/etc/os-release
}
backup=('etc/os-release' 'usr/lib/os-release')