From 31ed347b98f68dc0f8bdd5c695d59555defdb26c Mon Sep 17 00:00:00 2001 From: t0b3 Date: Mon, 9 Aug 2021 13:48:44 +0200 Subject: [PATCH 1/3] install alsa-utils (needed for buster lite) #1255 misses the alsa-utils package that is needed make it work on buster-lite see #1467 --- installation/install-jukebox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/install-jukebox.sh b/installation/install-jukebox.sh index 9931888f6..9a4dce74f 100644 --- a/installation/install-jukebox.sh +++ b/installation/install-jukebox.sh @@ -110,7 +110,7 @@ install_jukebox_dependencies() { samba samba-common-bin \ python3 python3-dev python3-pip python3-setuptools python3-mutagen python3-gpiozero \ ffmpeg \ - alsa-tools \ + alsa-utils \ --no-install-recommends \ --allow-downgrades \ --allow-remove-essential \ From d4ead075c7c4f1b1442f12ed44dd5db7acf7dff9 Mon Sep 17 00:00:00 2001 From: t0b3 Date: Mon, 9 Aug 2021 14:58:52 +0200 Subject: [PATCH 2/3] fix dependencies for pyalsadev needed for ci tests --- installation/install-jukebox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/install-jukebox.sh b/installation/install-jukebox.sh index 9a4dce74f..d301ed3ad 100644 --- a/installation/install-jukebox.sh +++ b/installation/install-jukebox.sh @@ -110,7 +110,7 @@ install_jukebox_dependencies() { samba samba-common-bin \ python3 python3-dev python3-pip python3-setuptools python3-mutagen python3-gpiozero \ ffmpeg \ - alsa-utils \ + alsa-utils libasound2-dev \ --no-install-recommends \ --allow-downgrades \ --allow-remove-essential \ From 3c04596a2c49895de065b600c78e53b98f21569d Mon Sep 17 00:00:00 2001 From: t0b3 Date: Mon, 9 Aug 2021 15:05:01 +0200 Subject: [PATCH 3/3] fix ci requirements for pyalsaaudio --- .github/workflows/pythonpackage.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 262748e99..7bc1d7ef9 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -22,6 +22,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | + sudo apt-get update + sudo apt-get install -y libasound2-dev python -m pip install --upgrade pip pip install wheel pip install spidev