Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
strategy:
matrix:
addon: ${{ fromJson(needs.init.outputs.changed_addons) }}
arch: ["aarch64", "amd64", "armhf", "armv7", "i386"]
arch: ["aarch64", "amd64"]

steps:
- name: Check out repository
Expand Down
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# Tekmar Packet Server (tekmar-packetserv)
![Supports aarch64 Architecture][aarch64-shield]
![Supports amd64 Architecture][amd64-shield]
![Supports armhf Architecture][armhf-shield]
![Supports armv7 Architecture][armv7-shield]
![Supports i386 Architecture][i386-shield]

This is a Home Assistant Add-On used by the [Tekmar Gateway 482 Integration](https://github.com/WillCodeForCats/tekmar-482) to communicate with your Tekmar networked thermostats, setpoint controls, and snow melting controls.

Expand Down Expand Up @@ -39,7 +36,4 @@ Implemented using "tN4 Gateway 482 - Custom Integration Tools" and "Tekmar Home
Tekmar, tekmarNet, tN4, tN2, and related logos and trademarks are copyright 2021 Watts.

[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
3 changes: 3 additions & 0 deletions tekmar_packetserv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.3.0
- Drop support for armhf, armv7, and i386 architectures.

## 1.2.2
- Update documentation.

Expand Down
4 changes: 2 additions & 2 deletions tekmar_packetserv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG BUILD_FROM
FROM $BUILD_FROM
FROM ${BUILD_FROM}

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

ARG TEMPIO_VERSION BUILD_ARCH
RUN \
Expand Down
3 changes: 0 additions & 3 deletions tekmar_packetserv/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
build_from:
aarch64: "ghcr.io/home-assistant/aarch64-base:3.18"
amd64: "ghcr.io/home-assistant/amd64-base:3.18"
armhf: "ghcr.io/home-assistant/armhf-base:3.18"
armv7: "ghcr.io/home-assistant/armv7-base:3.18"
i386: "ghcr.io/home-assistant/i386-base:3.18"
labels:
org.opencontainers.image.title: "Home Assistant Add-on: Tekmar packet server"
org.opencontainers.image.description: "Communicate with the Tekmar Gateway 482."
Expand Down
4 changes: 2 additions & 2 deletions tekmar_packetserv/config.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "Tekmar Packet Server",
"version": "1.2.2",
"version": "1.3.0",
"url": "https://github.com/WillCodeForCats/tekmar-packetserv",
"slug": "tekmar_packetserv",
"description": "Connect with the Tekmar Gateway 482",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"arch": ["aarch64", "amd64"],
"image": "ghcr.io/willcodeforcats/{arch}-tekmar-packetserv",
"init": false,
"options": {
Expand Down
Loading