From c99f2a9193a1e0f2f5bc03a7e517ec732aa81feb Mon Sep 17 00:00:00 2001 From: Chris Earley Date: Tue, 1 Oct 2024 03:04:37 -0500 Subject: [PATCH 1/3] Updated the library required by the discogs plugin. --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ddc16ba..d774f75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -80,7 +80,7 @@ RUN \ beets==${BEETS_VERSION} \ beets-extrafiles \ beetcamp \ - discogs-client \ + python3-discogs-client \ flask \ PyGObject \ pyacoustid \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 708ce09..e945e96 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -81,7 +81,7 @@ RUN \ beets==${BEETS_VERSION} \ beets-extrafiles \ beetcamp \ - discogs-client \ + python3-discogs-client \ flask \ PyGObject \ pyacoustid \ From e1b256245c58d7501ecb97714cbb92d744ccb790 Mon Sep 17 00:00:00 2001 From: Chris Earley Date: Tue, 1 Oct 2024 23:49:32 -0500 Subject: [PATCH 2/3] Updated changelog. --- readme-vars.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/readme-vars.yml b/readme-vars.yml index 215663b..72a54c9 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -40,6 +40,7 @@ app_setup_block: | Contains [beets-extrafiles](https://github.com/Holzhaus/beets-extrafiles) plugin, [configuration details](https://github.com/Holzhaus/beets-extrafiles#usage) # changelog changelogs: + - {date: "01.10.24:", desc: "Add packages required for Discogs plugin."} - {date: "28.08.24:", desc: "Rebase to Alpine 3.20, switch from Pillow to Imagemagick."} - {date: "23.12.23:", desc: "Rebase to Alpine 3.19."} - {date: "25.08.23:", desc: "Rebase to Alpine 3.18, pin Pillow to 9.5.0."} From c1d479d2931e16cb087e2ec15217f7c58990f2d0 Mon Sep 17 00:00:00 2001 From: Chris Earley Date: Wed, 2 Oct 2024 00:21:32 -0500 Subject: [PATCH 3/3] Updated the python package requirements for the Discogs plugin. --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index d774f75..b58f75d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -87,6 +87,7 @@ RUN \ pylast \ requests \ requests_oauthlib \ + typing-extensions \ unidecode && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index e945e96..e3cf89a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -88,6 +88,7 @@ RUN \ pylast \ requests \ requests_oauthlib \ + typing-extensions \ unidecode && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \