From facf7ae7f384be4ae42f57902e2e2e86f0f0f5a9 Mon Sep 17 00:00:00 2001 From: WillCodeForCats <48533968+WillCodeForCats@users.noreply.github.com> Date: Sun, 30 Nov 2025 09:38:31 -0800 Subject: [PATCH 1/8] Base 3.19 --- tekmar_packetserv/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tekmar_packetserv/build.yaml b/tekmar_packetserv/build.yaml index 8f90bd0..ede7cb7 100644 --- a/tekmar_packetserv/build.yaml +++ b/tekmar_packetserv/build.yaml @@ -1,7 +1,7 @@ # https://developers.home-assistant.io/docs/add-ons/configuration#add-on-dockerfile build_from: - aarch64: "ghcr.io/home-assistant/aarch64-base:3.18" - amd64: "ghcr.io/home-assistant/amd64-base:3.18" + aarch64: "ghcr.io/home-assistant/aarch64-base:3.19" + amd64: "ghcr.io/home-assistant/amd64-base:3.19" labels: org.opencontainers.image.title: "Home Assistant Add-on: Tekmar packet server" org.opencontainers.image.description: "Communicate with the Tekmar Gateway 482." From c417255de247cfb47fa9592ab8ba6f77e434fb52 Mon Sep 17 00:00:00 2001 From: WillCodeForCats <48533968+WillCodeForCats@users.noreply.github.com> Date: Sun, 30 Nov 2025 09:38:55 -0800 Subject: [PATCH 2/8] Remove tempio --- tekmar_packetserv/Dockerfile | 5 ----- tekmar_packetserv/build.yaml | 2 -- 2 files changed, 7 deletions(-) diff --git a/tekmar_packetserv/Dockerfile b/tekmar_packetserv/Dockerfile index be2c7dc..a8967a7 100755 --- a/tekmar_packetserv/Dockerfile +++ b/tekmar_packetserv/Dockerfile @@ -3,11 +3,6 @@ FROM ${BUILD_FROM} ENV LANG=C.UTF-8 -ARG TEMPIO_VERSION BUILD_ARCH -RUN \ - curl -sSLf -o /usr/bin/tempio \ - "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}" - # Install requirements for add-on RUN apk add --no-cache python3 RUN apk add --no-cache py3-pip diff --git a/tekmar_packetserv/build.yaml b/tekmar_packetserv/build.yaml index ede7cb7..19802ce 100644 --- a/tekmar_packetserv/build.yaml +++ b/tekmar_packetserv/build.yaml @@ -7,5 +7,3 @@ labels: org.opencontainers.image.description: "Communicate with the Tekmar Gateway 482." org.opencontainers.image.source: "https://github.com/WillCodeForCats/tekmar-packetserv" org.opencontainers.image.licenses: "MIT License" -args: - TEMPIO_VERSION: "2021.09.0" From 66e32d62bc68155a7a9034a70b8983f9581b7002 Mon Sep 17 00:00:00 2001 From: WillCodeForCats <48533968+WillCodeForCats@users.noreply.github.com> Date: Sun, 30 Nov 2025 09:39:02 -0800 Subject: [PATCH 3/8] Update Dockerfile --- tekmar_packetserv/Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tekmar_packetserv/Dockerfile b/tekmar_packetserv/Dockerfile index a8967a7..6f809df 100755 --- a/tekmar_packetserv/Dockerfile +++ b/tekmar_packetserv/Dockerfile @@ -1,11 +1,13 @@ ARG BUILD_FROM -FROM ${BUILD_FROM} +FROM $BUILD_FROM +# Add env ENV LANG=C.UTF-8 # Install requirements for add-on -RUN apk add --no-cache python3 -RUN apk add --no-cache py3-pip -RUN pip3 --no-cache-dir install pyserial +RUN \ + apk add --no-cache python3 py3-pip \ + && pip3 --no-cache-dir install pyserial +# Copy data COPY rootfs / From 61dbb9a26635210f2a9aa29267b45fcc8cc9e169 Mon Sep 17 00:00:00 2001 From: WillCodeForCats <48533968+WillCodeForCats@users.noreply.github.com> Date: Sun, 30 Nov 2025 09:42:38 -0800 Subject: [PATCH 4/8] Update Dockerfile --- tekmar_packetserv/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tekmar_packetserv/Dockerfile b/tekmar_packetserv/Dockerfile index 6f809df..7eff460 100755 --- a/tekmar_packetserv/Dockerfile +++ b/tekmar_packetserv/Dockerfile @@ -6,8 +6,9 @@ ENV LANG=C.UTF-8 # Install requirements for add-on RUN \ - apk add --no-cache python3 py3-pip \ - && pip3 --no-cache-dir install pyserial + apk add --no-cache python3 \ + && apk add --no-cache py3-pip \ + && pip3 --no-cache-dir install pyserial==3.5 # Copy data COPY rootfs / From 86662f9f105c113af80675657619f7ac3a48794e Mon Sep 17 00:00:00 2001 From: WillCodeForCats <48533968+WillCodeForCats@users.noreply.github.com> Date: Sun, 30 Nov 2025 09:46:35 -0800 Subject: [PATCH 5/8] Update Dockerfile --- tekmar_packetserv/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tekmar_packetserv/Dockerfile b/tekmar_packetserv/Dockerfile index 7eff460..352e868 100755 --- a/tekmar_packetserv/Dockerfile +++ b/tekmar_packetserv/Dockerfile @@ -5,10 +5,9 @@ FROM $BUILD_FROM ENV LANG=C.UTF-8 # Install requirements for add-on -RUN \ - apk add --no-cache python3 \ - && apk add --no-cache py3-pip \ - && pip3 --no-cache-dir install pyserial==3.5 +RUN apk add --no-cache python3 +RUN apk add --no-cache py3-pip +RUN pip3 --no-cache-dir install pyserial==3.5 # Copy data COPY rootfs / From afaf4fc6b4d288926b11acdaff20ed496db3f4fb Mon Sep 17 00:00:00 2001 From: WillCodeForCats <48533968+WillCodeForCats@users.noreply.github.com> Date: Sun, 30 Nov 2025 09:48:40 -0800 Subject: [PATCH 6/8] Update Dockerfile --- tekmar_packetserv/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tekmar_packetserv/Dockerfile b/tekmar_packetserv/Dockerfile index 352e868..1b5e2b3 100755 --- a/tekmar_packetserv/Dockerfile +++ b/tekmar_packetserv/Dockerfile @@ -5,9 +5,10 @@ FROM $BUILD_FROM ENV LANG=C.UTF-8 # Install requirements for add-on -RUN apk add --no-cache python3 -RUN apk add --no-cache py3-pip -RUN pip3 --no-cache-dir install pyserial==3.5 +RUN \ + apk add --no-cache python3 \ + && apk add --no-cache py3-pip \ + && apk add --no-cache py3-pyserial # Copy data COPY rootfs / From a0f8bc234a2d619ea17708df22421ac1995b3901 Mon Sep 17 00:00:00 2001 From: WillCodeForCats <48533968+WillCodeForCats@users.noreply.github.com> Date: Sun, 30 Nov 2025 09:51:22 -0800 Subject: [PATCH 7/8] Update CHANGELOG.md --- tekmar_packetserv/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tekmar_packetserv/CHANGELOG.md b/tekmar_packetserv/CHANGELOG.md index 0647b2a..6edf55d 100644 --- a/tekmar_packetserv/CHANGELOG.md +++ b/tekmar_packetserv/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.3.1 +- Update to base 3.19 +- Remove tempio + ## 1.3.0 - Drop support for armhf, armv7, and i386 architectures. From ac752284d759d11fedc72d953100f6868c17a68a Mon Sep 17 00:00:00 2001 From: WillCodeForCats <48533968+WillCodeForCats@users.noreply.github.com> Date: Sun, 30 Nov 2025 09:55:11 -0800 Subject: [PATCH 8/8] Bump version for release --- tekmar_packetserv/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tekmar_packetserv/config.json b/tekmar_packetserv/config.json index f4dacd1..9b6a378 100755 --- a/tekmar_packetserv/config.json +++ b/tekmar_packetserv/config.json @@ -1,6 +1,6 @@ { "name": "Tekmar Packet Server", - "version": "1.3.0", + "version": "1.3.1", "url": "https://github.com/WillCodeForCats/tekmar-packetserv", "slug": "tekmar_packetserv", "description": "Connect with the Tekmar Gateway 482",