]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[Build-System] Add Debian 13 Trixie suite
authorAndrey Volk <andywolk@gmail.com>
Sat, 12 Jul 2025 10:00:13 +0000 (13:00 +0300)
committerAndrey Volk <andywolk@gmail.com>
Sat, 12 Jul 2025 10:00:13 +0000 (13:00 +0300)
debian/bootstrap.sh
debian/util.sh

index adfc6bafa376d3a2168186de893c95dd2c977998..6413b2cbab9669399143e9a98e29554757037056 100755 (executable)
@@ -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=(
index c82e681d23fe0eb8f5b07682cdda8d27c8e487c0..aefc0efebfd489a05d02cb720619970294775943 100755 (executable)
@@ -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
 }