Skip to content

Commit

Permalink
Update deconz 2.05.59 (home-assistant#524)
Browse files Browse the repository at this point in the history
* Update deconz 2.05.59

* Add cache support
  • Loading branch information
pvizeli authored Feb 20, 2019
1 parent 4bde631 commit d4d68d3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 4 additions & 0 deletions deconz/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.4
- Bump deCONZ to 2.05.59
- Remove the fake aarch64 version in favor of new arch selector

## 1.3
- Bump deCONZ to 2.05.58
- Support now Firmware updates over the Phoscon UI
Expand Down
5 changes: 2 additions & 3 deletions deconz/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
ARG BUILD_FROM
FROM $BUILD_FROM

ARG BUILD_ARCH
ARG DECONZ_VERSION

# Install deCONZ dependencies
ARG BUILD_ARCH
RUN apt-get update \
&& apt-get install -y \
curl \
Expand All @@ -30,6 +28,7 @@ RUN apt-get update \
fi

# Install deCONZ
ARG DECONZ_VERSION
RUN if [ "${BUILD_ARCH}" = "armhf" ] || [ "${BUILD_ARCH}" = "aarch64" ]; \
then \
curl -q -L -o /deconz.deb https://www.dresden-elektronik.de/rpi/deconz/beta/deconz-${DECONZ_VERSION}-qt5.deb; \
Expand Down
3 changes: 1 addition & 2 deletions deconz/build.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"build_from": {
"aarch64": "homeassistant/armhf-base-raspbian:stretch",
"amd64": "homeassistant/amd64-base-ubuntu:18.04",
"armhf": "homeassistant/armhf-base-raspbian:stretch"
},
"args": {
"DECONZ_VERSION": "2.05.58"
"DECONZ_VERSION": "2.05.59"
}
}
4 changes: 2 additions & 2 deletions deconz/config.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "deCONZ",
"version": "1.3",
"version": "1.4",
"slug": "deconz",
"description": "Control a ZigBee network with Conbee or RaspBee by Dresden Elektronik",
"arch": ["aarch64","amd64","armhf"],
"arch": ["amd64", "armhf"],
"url": "https://home-assistant.io/addons/deconz",
"startup": "system",
"boot": "auto",
Expand Down

0 comments on commit d4d68d3

Please sign in to comment.