network/prosody: Updated for version 0.9.11.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Gerardo Zamudio 2016-11-15 13:09:43 +00:00 committed by Willy Sudiarto Raharjo
parent 4241dc4d85
commit a88e3d7acb
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 11 additions and 11 deletions

View file

@ -4,13 +4,13 @@ make sure rc.local and rc.local_shutdown contain the following lines:
/etc/rc.d/rc.local
==================
# Startup prosody
if [ -x /usr/bin/prosodyctl ]; then
lua /usr/bin/prosodyctl start
if [ -x /etc/rc.d/rc.prosody ]; then
/etc/rc.d/rc.prosody start
fi
/etc/rc.d/rc.local_shutdown
===========================
# Stop prosody
if [ -x /usr/bin/prosodyctl ]; then
lua /usr/bin/prosodyctl stop
if [ -x /etc/rc.d/rc.prosody ]; then
/etc/rc.d/rc.prosody stop
fi

View file

@ -25,7 +25,7 @@
# Maintained by Gerardo Zamudio <gerardo.zamudio@linux.com>
PRGNAM=prosody
VERSION=${VERSION:-0.9.8}
VERSION=${VERSION:-0.9.11}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -34,7 +34,7 @@ PROSODY_GID=${PROSODY_GID:-274}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -57,8 +57,8 @@ elif ! grep ^prosody: /etc/passwd 2>&1 > /dev/null; then
exit 1
fi
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"

View file

@ -1,8 +1,8 @@
PRGNAM="prosody"
VERSION="0.9.8"
VERSION="0.9.11"
HOMEPAGE="http://prosody.im/"
DOWNLOAD="https://prosody.im/downloads/source/prosody-0.9.8.tar.gz"
MD5SUM="5144cd832a1860443e21e336dc560ee7"
DOWNLOAD="https://prosody.im/downloads/source/prosody-0.9.11.tar.gz"
MD5SUM="02d48f056ade5269bb5e3aff40b619c5"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="luasec luasocket luaexpat lua-filesystem"