From 5c837f107dbe9a4f03b7a32231d4dff042a319e1 Mon Sep 17 00:00:00 2001 From: Celestia Ludenberg Date: Fri, 3 Jul 2026 00:15:09 +0200 Subject: [PATCH] fix: remove deleted opus files from antergos-next-memes PKGBUILD i-feel-fantastic.opus and still-alive.opus were deleted from the repo but still referenced in PKGBUILD source and package(), causing CI build to fail. Keep only the existing its-raining-tacos.opus. --- packages/antergos-next-memes/PKGBUILD | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/packages/antergos-next-memes/PKGBUILD b/packages/antergos-next-memes/PKGBUILD index d0b9371..1407c40 100644 --- a/packages/antergos-next-memes/PKGBUILD +++ b/packages/antergos-next-memes/PKGBUILD @@ -8,16 +8,10 @@ arch=('any') url="https://github.com/Antergos-NeXT" license=('custom:fairuse') depends=() -source=("i-feel-fantastic.opus" - "still-alive.opus" - "its-raining-tacos.opus") -sha256sums=('SKIP' - 'SKIP' - 'SKIP') +source=("its-raining-tacos.opus") +sha256sums=('SKIP') package() { install -dm755 "${pkgdir}/usr/share/antergos-next-memes" - cp "i-feel-fantastic.opus" "${pkgdir}/usr/share/antergos-next-memes/" - cp "still-alive.opus" "${pkgdir}/usr/share/antergos-next-memes/" cp "its-raining-tacos.opus" "${pkgdir}/usr/share/antergos-next-memes/" }