-
-
Notifications
You must be signed in to change notification settings - Fork 501
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
339 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,15 +207,12 @@ Package: amiberry | |
Version: $v_ami | ||
Architecture: $(dpkg --print-architecture) | ||
Maintainer: MichaIng <[email protected]> | ||
Date: $(date -u '+%a, %d %b %Y %T %z') | ||
Standards-Version: 4.6.2.0 | ||
Date: $(date -uR) | ||
Installed-Size: $(du -sk "$DIR" | mawk '{print $1}') | ||
Depends:$DEPS_APT_VERSIONED | ||
Section: games | ||
Priority: optional | ||
Homepage: https://amiberry.com/ | ||
Vcs-Git: https://github.com/BlitterStudio/amiberry.git | ||
Vcs-Browser: https://github.com/BlitterStudio/amiberry | ||
Description: Optimized Amiga emulator for the Raspberry Pi and other ARM boards | ||
This package ships with optimized libSDL2 and capsimg builds. | ||
_EOF_ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,8 @@ adeps=('libc6' 'gstreamer1.0-alsa' 'gstreamer1.0-libav' 'gstreamer1.0-plugins-go | |
(( $G_DISTRO > 7 )) && adeps+=('libupnp17') || adeps+=('libupnp13') | ||
for i in "${adeps[@]}" | ||
do | ||
dpkg-query -s "$i" &> /dev/null && continue | ||
# Temporarily allow lib*t64 packages, while the 64-bit time_t transition is ongoing on Sid: https://bugs.debian.org/1065394 | ||
dpkg-query -s "$i" &> /dev/null || dpkg-query -s "${i}t64" &> /dev/null && continue | ||
G_DIETPI-NOTIFY 1 "Expected dependency package was not installed: $i" | ||
exit 1 | ||
done | ||
|
@@ -163,6 +164,8 @@ find "$DIR" ! \( -path "$DIR/DEBIAN" -prune \) -type f -exec md5sum {} + | sed " | |
DEPS_APT_VERSIONED= | ||
for i in "${adeps[@]}" | ||
do | ||
# Temporarily allow lib*t64 packages, while the 64-bit time_t transition is ongoing on Sid: https://bugs.debian.org/1065394 | ||
dpkg-query -s "$i" &> /dev/null || i+='t64' | ||
DEPS_APT_VERSIONED+=" $i (>= $(dpkg-query -Wf '${VERSION}' "$i"))," | ||
done | ||
DEPS_APT_VERSIONED=${DEPS_APT_VERSIONED%,} | ||
|
@@ -182,15 +185,12 @@ Package: $name | |
Version: $version-$suffix | ||
Architecture: $(dpkg --print-architecture) | ||
Maintainer: MichaIng <[email protected]> | ||
Date: $(date -u '+%a, %d %b %Y %T %z') | ||
Standards-Version: 4.6.2.0 | ||
Date: $(date -uR) | ||
Installed-Size: $(du -sk "$DIR" | mawk '{print $1}') | ||
Depends:$DEPS_APT_VERSIONED | ||
Section: sound | ||
Priority: optional | ||
Homepage: $repo | ||
Vcs-Git: $repo.git | ||
Vcs-Browser: $repo | ||
Description: Minimalist UPNP AV renderer | ||
gmrender-resurrect is a minimalist UPNP AV renderer that can be used to | ||
play music controlled by a UPNP AV control point. This package contains | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,14 +54,11 @@ Package: raspberrypi-sys-mods | |
Version: 2:20230510-dietpi2 | ||
Architecture: all | ||
Maintainer: MichaIng <[email protected]> | ||
Date: $(date -u '+%a, %d %b %Y %T %z') | ||
Standards-Version: 4.6.2.0 | ||
Date: $(date -uR) | ||
Installed-Size: $(du -sk raspberrypi-sys-mods | mawk '{print $1}') | ||
Section: admin | ||
Priority: optional | ||
Homepage: https://github.com/RPi-Distro/raspberrypi-sys-mods | ||
Vcs-Git: https://github.com/RPi-Distro/raspberrypi-sys-mods.git | ||
Vcs-Browser: https://github.com/RPi-Distro/raspberrypi-sys-mods | ||
Description: System tweaks for the Raspberry Pi, DietPi edition | ||
_EOF_ | ||
G_CONFIG_INJECT 'Installed-Size: ' "Installed-Size: $(du -sk raspberrypi-sys-mods | mawk '{print $1}')" raspberrypi-sys-mods/DEBIAN/control | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,8 @@ case $G_DISTRO in | |
esac | ||
for i in "${adeps[@]}" "${adeps2[@]}" | ||
do | ||
dpkg-query -s "$i" &> /dev/null && continue | ||
# Temporarily allow lib*t64 packages, while the 64-bit time_t transition is ongoing on Sid: https://bugs.debian.org/1065394 | ||
dpkg-query -s "$i" &> /dev/null || dpkg-query -s "${i}t64" &> /dev/null && continue | ||
G_DIETPI-NOTIFY 1 "Expected dependency package was not installed: $i" | ||
exit 1 | ||
done | ||
|
@@ -348,6 +349,8 @@ find "$DIR" ! \( -path "$DIR/DEBIAN" -prune \) -type f -exec md5sum {} + | sed " | |
DEPS_APT_VERSIONED= | ||
for i in "${adeps[@]}" | ||
do | ||
# Temporarily allow lib*t64 packages, while the 64-bit time_t transition is ongoing on Sid: https://bugs.debian.org/1065394 | ||
dpkg-query -s "$i" &> /dev/null || i+='t64' | ||
DEPS_APT_VERSIONED+=" $i (>= $(dpkg-query -Wf '${VERSION}' "$i"))," | ||
done | ||
DEPS_APT_VERSIONED=${DEPS_APT_VERSIONED%,} | ||
|
@@ -528,6 +531,8 @@ find "$DIR" ! \( -path "$DIR/DEBIAN" -prune \) -type f -exec md5sum {} + | sed " | |
# - Obtain DEB dependency versions | ||
for i in "${adeps2[@]}" | ||
do | ||
# Temporarily allow lib*t64 packages, while the 64-bit time_t transition is ongoing on Sid: https://bugs.debian.org/1065394 | ||
dpkg-query -s "$i" &> /dev/null || i+='t64' | ||
DEPS_APT_VERSIONED+=", $i (>= $(dpkg-query -Wf '${VERSION}' "$i"))" | ||
done | ||
# shellcheck disable=SC2001 | ||
|
@@ -539,16 +544,13 @@ Package: $name-airplay2 | |
Version: $version-$suffix | ||
Architecture: $(dpkg --print-architecture) | ||
Maintainer: MichaIng <[email protected]> | ||
Date: $(date -u '+%a, %d %b %Y %T %z') | ||
Standards-Version: 4.6.2.0 | ||
Date: $(date -uR) | ||
Installed-Size: $(du -sk "$DIR" | mawk '{print $1}') | ||
Depends:$DEPS_APT_VERSIONED | ||
Conflicts: $name | ||
Section: sound | ||
Priority: optional | ||
Homepage: $repo | ||
Vcs-Git: $repo.git | ||
Vcs-Browser: $repo | ||
Description: AirPlay audio player | ||
Plays audio streamed from iTunes, iOS devices and third-party AirPlay | ||
sources such as ForkedDaapd and others. Audio played by a Shairport | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -164,16 +164,13 @@ Package: squeezelite | |
Version: $version-$suffix | ||
Architecture: $(dpkg --print-architecture) | ||
Maintainer: MichaIng <[email protected]> | ||
Date: $(date -u '+%a, %d %b %Y %T %z') | ||
Standards-Version: 4.6.2.0 | ||
Date: $(date -uR) | ||
Installed-Size: $(du -sk "$DIR" | mawk '{print $1}') | ||
Depends:$DEPS_APT_VERSIONED | ||
Conflicts: squeezelite-pa, squeezelite-pulseaudio | ||
Section: sound | ||
Priority: optional | ||
Homepage: https://github.com/ralph-irving/squeezelite | ||
Vcs-Git: https://github.com/ralph-irving/squeezelite.git | ||
Vcs-Browser: https://github.com/ralph-irving/squeezelite | ||
Description: lightweight headless Squeezebox emulator - ALSA version | ||
Squeezelite is a small headless Squeezebox emulator. It is aimed at | ||
supporting high quality audio including USB DAC based output at multiple | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -227,15 +227,12 @@ Package: vaultwarden | |
Version: $version | ||
Architecture: $(dpkg --print-architecture) | ||
Maintainer: MichaIng <[email protected]> | ||
Date: $(date -u '+%a, %d %b %Y %T %z') | ||
Standards-Version: 4.6.2.0 | ||
Date: $(date -uR) | ||
Installed-Size: $(du -sk "$DIR" | mawk '{print $1}') | ||
Depends:$DEPS_APT_VERSIONED | ||
Section: misc | ||
Priority: optional | ||
Homepage: https://github.com/dani-garcia/vaultwarden | ||
Vcs-Git: https://github.com/dani-garcia/vaultwarden.git | ||
Vcs-Browser: https://github.com/dani-garcia/vaultwarden | ||
Description: Alternative implementation of the Bitwarden server API written in | ||
Rust and compatible with upstream Bitwarden clients, perfect for self-hosted | ||
deployment where running the official resource-heavy service might not be ideal. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,8 @@ case $G_DISTRO in | |
esac | ||
for i in "${adeps[@]}" | ||
do | ||
dpkg-query -s "$i" &> /dev/null && continue | ||
# Temporarily allow lib*t64 packages, while the 64-bit time_t transition is ongoing on Sid: https://bugs.debian.org/1065394 | ||
dpkg-query -s "$i" &> /dev/null || dpkg-query -s "${i}t64" &> /dev/null && continue | ||
G_DIETPI-NOTIFY 1 "Expected dependency package was not installed: $i" | ||
exit 1 | ||
done | ||
|
@@ -137,6 +138,8 @@ find "$DIR" ! \( -path "$DIR/DEBIAN" -prune \) -type f -exec md5sum {} + | sed " | |
DEPS_APT_VERSIONED= | ||
for i in "${adeps[@]}" | ||
do | ||
# Temporarily allow lib*t64 packages, while the 64-bit time_t transition is ongoing on Sid: https://bugs.debian.org/1065394 | ||
dpkg-query -s "$i" &> /dev/null || i+='t64' | ||
DEPS_APT_VERSIONED+=" $i (>= $(dpkg-query -Wf '${VERSION}' "$i"))," | ||
done | ||
DEPS_APT_VERSIONED=${DEPS_APT_VERSIONED%,} | ||
|
@@ -157,15 +160,12 @@ Package: ympd | |
Version: $version-$suffix | ||
Architecture: $(dpkg --print-architecture) | ||
Maintainer: MichaIng <[email protected]> | ||
Date: $(date -u '+%a, %d %b %Y %T %z') | ||
Standards-Version: 4.6.2.0 | ||
Date: $(date -uR) | ||
Installed-Size: $(du -sk "$DIR" | mawk '{print $1}') | ||
Depends:$DEPS_APT_VERSIONED | ||
Section: sound | ||
Priority: optional | ||
Homepage: https://github.com/SuperBFG7/ympd | ||
Vcs-Git: https://github.com/SuperBFG7/ympd.git | ||
Vcs-Browser: https://github.com/SuperBFG7/ympd | ||
Description: Standalone MPD Web GUI written in C, utilizing Websockets and Bootstrap/JS | ||
_EOF_ | ||
G_CONFIG_INJECT 'Installed-Size: ' "Installed-Size: $(du -sk "$DIR" | mawk '{print $1}')" "$DIR/DEBIAN/control" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.