Skip to content

Commit

Permalink
Increase DukTape version
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlStraussberger committed Feb 25, 2022
1 parent 267d2a1 commit 0ff8803
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ if(WITH_SYSTEMD AND (${CMAKE_SYSTEM_NAME} MATCHES "Linux"))
set (SYSTEMD_AFTER_TARGET "mysql.target network-online.target")
set (SYSTEMD_DESCRIPTION "Gerbera Media Server with MySQL")
else()
set (SYSTEMD_AFTER_TARGET "network.target")
set (SYSTEMD_AFTER_TARGET "network.target network-online.target")
set (SYSTEMD_DESCRIPTION "Gerbera Media Server")
endif()

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ sudo make install
| zlib | | | | Required | Data compression | |
| [fmtlib] | 7.1.3 | 7.1.3 | 8.1.1 | Required | Fast string formatting | |
| [spdlog] | 1.8.1 | 1.8.5 | 1.9.2 | Required | Runtime logging | |
| [duktape] | 2.1.0 | 2.5.0 | 2.6.0 | Optional | Scripting Support | Enabled |
| [duktape] | 2.1.0 | 2.6.0 | 2.7.0 | Optional | Scripting Support | Enabled |
| mysql | | | | Optional | Alternate database storage | Disabled |
| curl | | | | Optional | Enables web services | Enabled |
| [taglib] | 1.12 | 1.12 | 1.12 | Optional | Audio tag support | Enabled |
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

# General information about the project.
project = u'Gerbera'
copyright = u'2018-21, Gerbera Contributors'
copyright = u'2018-22, Gerbera Contributors'
author = u'Gerbera Contributors'

# The version info for the project you're documenting, acts as replacement for
Expand Down
4 changes: 3 additions & 1 deletion scripts/debian/build-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,10 @@ else
libduktape="libduktape202"
elif [ "$lsb_codename" == "buster" ]; then
libduktape="libduktape203"
elif [ "$lsb_codename" == "sid" -o "${my_sys}" == "debian:testing" -o "${my_sys}" == "debian:unstable" ]; then
elif [ "$lsb_codename" == "bookworm" -o "${my_sys}" == "debian:testing" ]; then
libduktape="libduktape206"
elif [ "$lsb_codename" == "sid" -o "${my_sys}" == "debian:unstable" ]; then
libduktape="libduktape207"
fi
libduktape="duktape-dev ${libduktape}"
echo "Selecting $libduktape for $lsb_distro $lsb_codename"
Expand Down
4 changes: 2 additions & 2 deletions scripts/versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [[ "${GERBERA_ENV-head}" == "minimum" ]]; then

elif [[ "${GERBERA_ENV-head}" == "default" ]]; then

DUKTAPE="2.5.0"
DUKTAPE="2.6.0"
EBML="1.3.9"
EXIV2="v0.26"
FFMPEGTHUMBNAILER="2.2.0"
Expand All @@ -30,7 +30,7 @@ elif [[ "${GERBERA_ENV-head}" == "default" ]]; then

else

DUKTAPE="2.6.0"
DUKTAPE="2.7.0"
EBML="1.4.2"
EXIV2="v0.27.5"
FFMPEGTHUMBNAILER="2.2.2"
Expand Down

0 comments on commit 0ff8803

Please sign in to comment.