mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-09 09:17:34 +00:00
debian: wheezy is the new stable
And jessie is the new testing. The king is dead, long live the king!
This commit is contained in:
parent
8c37db140e
commit
4448d6b743
4
debian/bootstrap.sh
vendored
4
debian/bootstrap.sh
vendored
@ -7,7 +7,7 @@ conf_dir="../conf"
|
|||||||
lang_dir="../conf/vanilla/lang"
|
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."
|
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_build_depends="."
|
||||||
supported_distros="squeeze wheezy sid"
|
supported_distros="squeeze wheezy jessie sid"
|
||||||
avoid_mods=(
|
avoid_mods=(
|
||||||
applications/mod_limit
|
applications/mod_limit
|
||||||
applications/mod_mongo
|
applications/mod_mongo
|
||||||
@ -37,6 +37,8 @@ avoid_mods=(
|
|||||||
)
|
)
|
||||||
avoid_mods_sid=(
|
avoid_mods_sid=(
|
||||||
)
|
)
|
||||||
|
avoid_mods_jessie=(
|
||||||
|
)
|
||||||
avoid_mods_wheezy=(
|
avoid_mods_wheezy=(
|
||||||
)
|
)
|
||||||
avoid_mods_squeeze=(
|
avoid_mods_squeeze=(
|
||||||
|
12
debian/util.sh
vendored
12
debian/util.sh
vendored
@ -46,8 +46,9 @@ find_distro () {
|
|||||||
case "$1" in
|
case "$1" in
|
||||||
experimental) echo "sid";;
|
experimental) echo "sid";;
|
||||||
unstable) echo "sid";;
|
unstable) echo "sid";;
|
||||||
testing) echo "wheezy";;
|
testing) echo "jessie";;
|
||||||
stable) echo "squeeze";;
|
stable) echo "wheezy";;
|
||||||
|
oldstable) echo "squeeze";;
|
||||||
*) echo "$1";;
|
*) echo "$1";;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
@ -55,8 +56,9 @@ find_distro () {
|
|||||||
find_suite () {
|
find_suite () {
|
||||||
case "$1" in
|
case "$1" in
|
||||||
sid) echo "unstable";;
|
sid) echo "unstable";;
|
||||||
wheezy) echo "testing";;
|
jessie) echo "testing";;
|
||||||
squeeze) echo "stable";;
|
wheezy) echo "stable";;
|
||||||
|
squeeze) echo "oldstable";;
|
||||||
*) echo "$1";;
|
*) echo "$1";;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
@ -332,7 +334,7 @@ build_all () {
|
|||||||
done
|
done
|
||||||
shift $(($OPTIND-1))
|
shift $(($OPTIND-1))
|
||||||
[ -n "$archs" ] || archs="amd64 i386"
|
[ -n "$archs" ] || archs="amd64 i386"
|
||||||
[ -n "$distros" ] || distros="sid wheezy squeeze"
|
[ -n "$distros" ] || distros="sid jesse wheezy squeeze"
|
||||||
[ -n "$orig" ] || orig="$(create_orig $orig_opts HEAD | tail -n1)"
|
[ -n "$orig" ] || orig="$(create_orig $orig_opts HEAD | tail -n1)"
|
||||||
mkdir -p ../log
|
mkdir -p ../log
|
||||||
> ../log/changes
|
> ../log/changes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user