Skip to content

Commit

Permalink
v8.23
Browse files Browse the repository at this point in the history
- DietPi-Software | Resolved an issue where motionEye failed to build on Bullseye systems since piwheels currently have no wheel for the latest Pillow version.
  • Loading branch information
MichaIng committed Sep 28, 2023
1 parent 970abad commit 675f3b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 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-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

Expand Down
10 changes: 5 additions & 5 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 675f3b8

Please sign in to comment.