Skip to content

Commit 9e1b2ed

Browse files
committed
dietpi-software: microblog.pub: add missing dependency
1 parent 77f2c88 commit 9e1b2ed

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Bug fixes:
1616
- DietPi-Software | ADS-B Feeder: Resolved an issue where the setup could have failed on RISC-V and 32-bit ARM system due to missing dependencies for the Python cryptography module.
1717
- DietPi-Software | Gogs: Resolved an issue where ARMv8 systems were not able to detect the latest version due to a changed asset name suffix in the GitHub releases for this architecture. Many thanks to @deeejas for reporting this issue: https://github.com/MichaIng/DietPi/issues/7945
1818
- DietPi-Software | Plex Media Server: Resolved an issue where APT was throwing errors and package installs/upgrades failed because of a faulty key rotation done at the Plex APT repository. The old repository has been since shut down and a new one set up, which we use now. The migration is done automatically on DietPi update. Many thanks to @Krouwndouwn for reporting this issue: https://github.com/MichaIng/DietPi/issues/7925
19+
- DietPi-Software | microblog.pub: Resolved an issue where the install failed since pyenv Python 3.11 or older builds require the "patch" package now. Many thanks to @gilou for reporting this issue: https://dietpi.com/forum/t/24975/2
1920

2021
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
2122

dietpi/dietpi-software

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2676,6 +2676,8 @@ sudo sysctl -p /etc/sysctl.d/dietpi-$1.conf"
26762676
# Optional to suppress warnings: libbz2-dev libreadline-dev libsqlite3-dev liblzma-dev
26772677
# libffi-dev for the optional _ctypes module, needed at least for Home Assistant => include it in all pyenv builds to avoid surprises
26782678
aDEPS+=('gcc' 'libc6-dev' 'make' 'libssl-dev' 'zlib1g-dev' 'libbz2-dev' 'libreadline-dev' 'libsqlite3-dev' 'liblzma-dev' 'libffi-dev')
2679+
# Python < 3.12: https://dietpi.com/forum/t/24975/2
2680+
(( $PYTHON_VERSION < 312 )) && aDEPS+=('patch')
26792681
;;
26802682
'pymicro-vad') aDEPS+=('g++');;
26812683
'pynacl')

0 commit comments

Comments
 (0)