From 675f3b870fd9531e7f23fd518458395953d82942 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Thu, 28 Sep 2023 16:39:19 +0200 Subject: [PATCH] v8.23 - DietPi-Software | Resolved an issue where motionEye failed to build on Bullseye systems since piwheels currently have no wheel for the latest Pillow version. --- CHANGELOG.txt | 1 + dietpi/dietpi-software | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 242a7cfbd3..2a364b3240 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -5,6 +5,7 @@ Enhancements: Bug fixes: - DietPi-Config | Resolved an issue where the WiFi channel selection was not possible with 5 GHz mode enabled. Many thanks to @lukaszsobala for reporting this issue: https://github.com/MichaIng/DietPi/issues/6636#issuecomment-1734427451 +- DietPi-Software | Resolved an issue where motionEye failed to build on Bullseye systems since piwheels currently have no wheel for the latest Pillow version. 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/ADDME diff --git a/dietpi/dietpi-software b/dietpi/dietpi-software index 36f1780bf9..3b32dcfbb9 100755 --- a/dietpi/dietpi-software +++ b/dietpi/dietpi-software @@ -9252,13 +9252,13 @@ _EOF_ if To_Install 136 motioneye # motionEye then - # APT deps: libcurl4-openssl-dev gcc libssl-dev for pycurl - # - ARMv6/7 Bookworm + RISC-V: libjpeg-dev for Pillow - if (( ( $G_HW_ARCH < 3 && $G_DISTRO > 6 ) || $G_HW_ARCH == 11 )) + # APT deps + # - ARMv6/7 Bullseye/Bookworm + RISC-V: libjpeg62-turbo-dev and gcc for Pillow + if (( ( $G_HW_ARCH < 3 && $G_DISTRO > 5 ) || $G_HW_ARCH == 11 )) then - G_AGI libjpeg-dev + G_AGI libjpeg62-turbo-dev gcc - # - ARMv8/x86_64 + # - ARMv8/x86_64: libcurl4-openssl-dev, gcc and libssl-dev for pycurl elif (( $G_HW_ARCH > 2 )) then G_AGI libcurl4-openssl-dev gcc libssl-dev