[Build-System] Add Debian 13 Trixie suite

This commit is contained in:
Andrey Volk
2025-07-12 13:00:13 +03:00
parent d4827d7d4f
commit d8ddf77705
2 changed files with 9 additions and 9 deletions

2
debian/bootstrap.sh vendored
View File

@@ -29,7 +29,7 @@ conf_dir="../conf"
lang_dir="../conf/vanilla/lang"
fs_description="FreeSWITCH is a scalable open source cross-platform telephony platform designed to route and interconnect popular communication protocols using audio, video, text or any other form of media."
mod_build_depends="." mod_depends="." mod_recommends="." mod_suggests="."
supported_debian_distros="wheezy jessie stretch buster bullseye bookworm sid"
supported_debian_distros="buster bullseye bookworm trixie sid"
supported_ubuntu_distros="trusty utopic xenial"
supported_distros="$supported_debian_distros $supported_ubuntu_distros"
avoid_mods=(

16
debian/util.sh vendored
View File

@@ -46,10 +46,10 @@ find_distro () {
case "$1" in
experimental) echo "sid";;
unstable) echo "sid";;
experimental) echo "bookworm";;
testing) echo "bullseye";;
stable) echo "buster";;
oldstable) echo "stretch";;
testing) echo "trixie";;
stable) echo "bookworm";;
oldstable) echo "bullseye";;
oldoldstable) echo "buster";;
*) echo "$1";;
esac
}
@@ -57,10 +57,10 @@ find_distro () {
find_suite () {
case "$1" in
sid) echo "unstable";;
bookworm) echo "experimental";;
bullseye) echo "testing";;
buster) echo "stable";;
stretch) echo "oldstable";;
trixie) echo "testing";;
bookworm) echo "stable";;
bullseye) echo "oldstable";;
buster) echo "oldoldstable";;
*) echo "$1";;
esac
}