diff options
Diffstat (limited to 'Swift')
| -rw-r--r-- | Swift/Packaging/Debian/changelog.debian-unstable | 2 | ||||
| -rwxr-xr-x | Swift/Packaging/Debian/package.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Swift/Packaging/Debian/changelog.debian-unstable b/Swift/Packaging/Debian/changelog.debian-unstable index c8b4861..992a63f 100644 --- a/Swift/Packaging/Debian/changelog.debian-unstable +++ b/Swift/Packaging/Debian/changelog.debian-unstable @@ -1,7 +1,7 @@ -swift-im (2.0~alpha+dev629-1) unstable; urgency=low +swift-im (2.0~beta1+dev26-1) unstable; urgency=low * Initial release. Closes: #631002 * Thanks to Olly Betts <olly@survex.com> -- Kevin Smith <kevin@kismith.co.uk> Wed, 25 Apr 2012 09:55:52 -0000 diff --git a/Swift/Packaging/Debian/package.sh b/Swift/Packaging/Debian/package.sh index 76aee6f..ab21db5 100755 --- a/Swift/Packaging/Debian/package.sh +++ b/Swift/Packaging/Debian/package.sh @@ -43,30 +43,30 @@ if [ -f $TARBALL ]; then else echo "No shared tarball found" echo "Checking out a fresh copy ..." rm -rf $DIRNAME git clone ../../../.git $DIRNAME # Remove development files & 3rdParty files rm -rf $DIRNAME/.git find $DIRNAME -name .gitignore | xargs rm -f - find $DIRNAME/3rdParty -type f | grep -v uuid | grep -v SConscript | xargs rm -f + find $DIRNAME/3rdParty -type f | grep -v SConscript | xargs rm -f find $DIRNAME/3rdParty -depth -empty -type d -exec rmdir {} \; rm -rf $DIRNAME/3rdParty/SCons rm -rf $DIRNAME/Swift/Packaging/Debian # Initialize the build version echo $VERSION > $DIRNAME/VERSION.swift # Fork local Boost UUID copy # FIXME: This shouldn't be necessary, but SCons isn't picking up the generated headers for compilation - mkdir -p $DIRNAME/3rdParty/Boost/uuid/boost - cp -r $DIRNAME/3rdParty/Boost/src/boost/uuid $DIRNAME/3rdParty/Boost/uuid/boost + #mkdir -p $DIRNAME/3rdParty/Boost/uuid/boost + #cp -r $DIRNAME/3rdParty/Boost/src/boost/uuid $DIRNAME/3rdParty/Boost/uuid/boost # Create orig tarball tar czf $TARBALLBARE $DIRNAME cp $TARBALLBARE tmp.tmp mv tmp.tmp $TARBALL fi # Detect dependencies |
Swift