From 719a89465eaddfc1b2ca220bbbd3660c9d6eb436 Mon Sep 17 00:00:00 2001 From: Sean Doran Date: Fri, 27 Feb 2026 21:34:22 -0500 Subject: [PATCH] fix: correct uvicorn package name to 'uvicorn' in PKGBUILD Arch Linux packages uvicorn as 'uvicorn', not 'python-uvicorn', causing dependency resolution to fail during makepkg. --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index c7e16a0..28fdd94 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,7 +12,7 @@ depends=( 'python-pyserial' 'python-pulsectl' 'python-fastapi' - 'python-uvicorn' + 'uvicorn' 'pipewire-pulse' 'playerctl' )