summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2016-02-03 13:45:44 (GMT)
committerKevin Smith <kevin.smith@isode.com>2016-02-04 15:41:17 (GMT)
commitde378c0b47268aea03177165156627659e28dde3 (patch)
tree3da89610ffb11bcdcc850ad260d01830187444c2 /Swift/Packaging/Source
parent20333d5b8dc0f97b60415f0daf3c53a573e0ff8f (diff)
downloadswift-de378c0b47268aea03177165156627659e28dde3.zip
swift-de378c0b47268aea03177165156627659e28dde3.tar.bz2
Remove abandoned Swiftob subprojectswift-3.0rc1
Swifttob used to be an initial approach of a XMPP bot using Swiften. Today such a bot would probably use Sluift. Test-Information: ./scons test=system passes on OS X 10.11.3. Change-Id: I976f26d906f3007b4395e90fdd966e2c00cb1c2c
Diffstat (limited to 'Swift/Packaging/Source')
-rwxr-xr-xSwift/Packaging/Source/package.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Packaging/Source/package.sh b/Swift/Packaging/Source/package.sh
index f54170b..16a9a1f 100755
--- a/Swift/Packaging/Source/package.sh
+++ b/Swift/Packaging/Source/package.sh
@@ -1,34 +1,34 @@
#!/bin/sh
## For a Swiften-only tarball, try
-## EXCLUDE_FOLDERS="Swift Sluift Swiftob Limber Slimber" ./package.sh
+## EXCLUDE_FOLDERS="Swift Sluift Limber Slimber" ./package.sh
export PYTHONPATH=../../../BuildTools/SCons
VERSION=`../../../BuildTools/GetBuildVersion.py swift`
DIRNAME=swift-$VERSION
if [ -z "$VERSION" ]; then
echo "Unable to determine version"
exit -1
fi
if [ "`uname -s`" = "Darwin" ]; then
TAR=gtar
if ! $TAR --version >/dev/null 2>&1; then
echo "Unable to find GNU tar (coulnd't find $TAR)"
exit 1
fi
else
TAR=tar
fi
echo "Cleaning up old sources ..."
rm -rf swift-*
echo "Checking out a fresh copy ..."
rm -rf $DIRNAME
git clone ../../../.git $DIRNAME
echo "$VERSION" > $DIRNAME/VERSION.swift
rm -rf $DIRNAME/.git
echo "Excluding folders based on environment variable EXCLUDE_FOLDERS='$EXCLUDE_FOLDERS'"