annotate deploy/src/archive.sh @ 516:449a0355f864 v2.0_osx_deploy

Deployment fixes. Qt on OSX now seems to depend on QtDBus, so copy that in, and also fail if anything is found to depend on an absent Qt framework.
author Chris Cannam
date Fri, 23 Oct 2015 08:50:39 +0100
parents 61b8c366f1f3
children 287b7b349a8a
rev   line source
Chris@230 1 #!/bin/bash
Chris@230 2
Chris@230 3 tag=`hg tags | grep '^v[0-9]' | head -1 | awk '{ print $1; }'`
Chris@230 4
Chris@230 5 v=`echo "$tag" |sed 's/v//'`
Chris@230 6
Chris@230 7 if test -z "$v" ; then
Chris@230 8 echo "No suitable tag found!?"
Chris@230 9 exit 1
Chris@230 10 fi
Chris@230 11
Chris@230 12 echo "Packaging up version $v from tag $tag..."
Chris@230 13
Chris@461 14 hg archive -r"$tag" --subrepos --exclude sv-dependency-builds --exclude pyin/testdata --exclude testdata /tmp/tony-"$v".tar.gz
Chris@230 15