From: Andrey Volk Date: Sat, 12 Jul 2025 10:00:13 +0000 (+0300) Subject: [Build-System] Add Debian 13 Trixie suite X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8ddf77705326a6210c129516e6261b6cdd09634;p=thirdparty%2Ffreeswitch.git [Build-System] Add Debian 13 Trixie suite --- diff --git a/debian/bootstrap.sh b/debian/bootstrap.sh index adfc6bafa3..6413b2cbab 100755 --- a/debian/bootstrap.sh +++ b/debian/bootstrap.sh @@ -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=( diff --git a/debian/util.sh b/debian/util.sh index c82e681d23..aefc0efebf 100755 --- a/debian/util.sh +++ b/debian/util.sh @@ -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 }