mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 13:14:21 +01:00
* Trial fix for #815 * Remove extra semicolon from old if block * Better fix for #815 (just flip blocks) * Version to 2.2, add changelog * Update build.json * Update CHANGELOG.md Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch>
This commit is contained in:
committed by
Pascal Vizeli
parent
e836914c69
commit
216b6245a9
@@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.2
|
||||||
|
|
||||||
|
- Fix a cause of "autodetect FAILED" on Raspberry Pi introduced in 2.1
|
||||||
|
- Update to Alpine 3.11
|
||||||
|
|
||||||
## 2.1
|
## 2.1
|
||||||
|
|
||||||
- Added README into the add-on repository
|
- Added README into the add-on repository
|
||||||
|
|||||||
@@ -28,12 +28,12 @@ RUN \
|
|||||||
&& mkdir -p /usr/src/libcec/build \
|
&& mkdir -p /usr/src/libcec/build \
|
||||||
&& cd /usr/src/libcec/build \
|
&& cd /usr/src/libcec/build \
|
||||||
&& if [[ "armhf armv7 aarch64" = *"$BUILD_ARCH"* ]]; then \
|
&& if [[ "armhf armv7 aarch64" = *"$BUILD_ARCH"* ]]; then \
|
||||||
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr/local ..; \
|
|
||||||
else \
|
|
||||||
cmake \
|
cmake \
|
||||||
-DCMAKE_INSTALL_PREFIX:PATH=/usr/local \
|
-DCMAKE_INSTALL_PREFIX:PATH=/usr/local \
|
||||||
-DRPI_INCLUDE_DIR=/opt/vc/include \
|
-DRPI_INCLUDE_DIR=/opt/vc/include \
|
||||||
-DRPI_LIB_DIR=/opt/vc/lib ..; \
|
-DRPI_LIB_DIR=/opt/vc/lib ..; \
|
||||||
|
else \
|
||||||
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr/local ..; \
|
||||||
fi \
|
fi \
|
||||||
&& make -j$(nproc) \
|
&& make -j$(nproc) \
|
||||||
&& make install \
|
&& make install \
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"build_from": {
|
"build_from": {
|
||||||
"aarch64": "homeassistant/aarch64-base:3.10",
|
"aarch64": "homeassistant/aarch64-base:3.11",
|
||||||
"amd64": "homeassistant/amd64-base:3.10",
|
"amd64": "homeassistant/amd64-base:3.11",
|
||||||
"armhf": "homeassistant/armhf-base:3.10",
|
"armhf": "homeassistant/armhf-base:3.11",
|
||||||
"armv7": "homeassistant/armv7-base:3.10",
|
"armv7": "homeassistant/armv7-base:3.11",
|
||||||
"i386": "homeassistant/i386-base:3.10"
|
"i386": "homeassistant/i386-base:3.11"
|
||||||
},
|
},
|
||||||
"args": {
|
"args": {
|
||||||
"LIBCEC_VERSION": "4.0.3"
|
"LIBCEC_VERSION": "4.0.3"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "CEC Scanner",
|
"name": "CEC Scanner",
|
||||||
"version": "2.1",
|
"version": "2.2",
|
||||||
"slug": "cec_scan",
|
"slug": "cec_scan",
|
||||||
"description": "Scan for HDMI CEC devices",
|
"description": "Scan for HDMI CEC devices",
|
||||||
"url": "https://github.com/home-assistant/hassio-addons/tree/master/cec_scan",
|
"url": "https://github.com/home-assistant/hassio-addons/tree/master/cec_scan",
|
||||||
|
|||||||
Reference in New Issue
Block a user