Skip to content

Commit

Permalink
v8.11
Browse files Browse the repository at this point in the history
- DietPi-Software | Home Assistant: Resolved an issue where some modules didn't work on ARMv6 and ARMv7 systems because of missing runtime libraries. Many thanks to @mail2rst and @HyperCriSiS for reporting this issue: https://dietpi.com/forum/t/after-the-update-homeassistant-mqtt-broker-integration-broken/14719, https://dietpi.com/forum/t/home-assistant-issues-after-latest-upate/14749
  • Loading branch information
MichaIng committed Oct 27, 2022
1 parent 8e11fc4 commit 23910ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Enhancements:

Bug fixes:
- DietPi-Software | navidome: Resolved an issue where on reinstalls the config was was overwritten. Many thanks to @pedrom34 for reporting this issue: https://github.com/MichaIng/DietPi/issues/5840
- DietPi-Software | Home Assistant: Resolved an issue where some modules didn't work on ARMv6 and ARMv7 systems because of missing runtime libraries. Many thanks to @mail2rst and @HyperCriSiS for reporting this issue: https://dietpi.com/forum/t/after-the-update-homeassistant-mqtt-broker-integration-broken/14719, https://dietpi.com/forum/t/home-assistant-issues-after-latest-upate/14749

As always, many smaller code performance and stability improvements, visual and spelling fixes have been done, too much to list all of them here. Check out all code changes of this release on GitHub: https://github.com/MichaIng/DietPi/pull/XXXX

Expand Down
7 changes: 3 additions & 4 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -11998,13 +11998,12 @@ _EOF_
then
# Create pip config to pull wheels from piwheels.org
G_EXEC eval "echo -e '[global]\nextra-index-url=https://www.piwheels.org/simple/' > $ha_home/.pip/pip.conf"
# libopenjp2-7, libtiff5, libxcb1 for runtime
aDEPS+=('libopenjp2-7' 'libtiff5' 'libxcb1')
aDEPS+=('libopenjp2-7' 'libtiff5' 'libxcb1' 'libatlas3-base') # piwheels wheels require runtime libraries
else
# piwheels.org Python 3.9 wheels depend on shared libraries from Bullseye. Unset extra-index-url explicitly, as /etc/pip.conf could set it.
G_EXEC eval "echo -e '[global]\nextra-index-url=' > $ha_home/.pip/pip.conf"
# libjpeg-dev for Pillow
aDEPS+=('libjpeg-dev')
# libjpeg-dev for Pillow, libatlas-base-dev for numpy
aDEPS+=('libjpeg-dev' 'libatlas-base-dev')
# Rust for cryptography
G_EXEC curl -sSfL 'https://sh.rustup.rs' -o rustup-init.sh
G_EXEC chmod +x rustup-init.sh
Expand Down

0 comments on commit 23910ee

Please sign in to comment.