Fix header installation.
[nivanova/samba-autobuild/.git] / source4 / script / mkrelease.sh
index cbad37c528e00987101c8ee5d74439716a182b92..6a8c5ae2e72d37d6fdcd9f8bb58d8b6355302fd9 100755 (executable)
@@ -1,12 +1,40 @@
 #!/bin/sh
 
-VERSION=$1
+if [ ! -d ".git" -o `dirname $0` != "./source4/script" ]; then
+       echo "Run this script from the top-level directory in the"
+       echo "repository as: ./source/script/mkrelease.sh"
+       exit 1
+fi
+
+TMPDIR=`mktemp -d samba-XXXXX`
+(git archive --format=tar HEAD | (cd $TMPDIR/ && tar xf -))
+
+#Prepare the tarball for a Samba4 release, with some generated files,
+#but without Samba3 stuff (to avoid confusion)
+( cd $TMPDIR/ || exit 1
+ rm -rf source3 packaging docs-xml examples swat WHATSNEW.txt MAINTAINERS || exit 1
+ cd source4 || exit 1
+ ./autogen.sh || exit 1
+ ./configure || exit 1
+ make dist  || exit 1
+) || exit 1
+
+VERSION_FILE=$TMPDIR/source4/version.h
+if [ ! -f $VERSION_FILE ]; then
+    echo "Cannot find version.h at $VERSION_FILE"
+    exit 1;
+fi
+
+VERSION=`sed -n 's/^SAMBA_VERSION_STRING=//p' $VERSION_FILE`
+mv $TMPDIR samba-$VERSION || exit 1
+tar -cf samba-$VERSION.tar samba-$VERSION || (rm -rf samba-$VERSION; exit 1)
+rm -rf samba-$VERSION || exit 1
+echo "Now run: "
+echo "gpg --detach-sign --armor samba-$VERSION.tar"
+echo "gzip samba-$VERSION.tar" 
+echo "And then upload "
+echo "samba-$VERSION.tar.gz samba-$VERSION.tar.asc" 
+echo "to pub/samba/samba4/ on samba.org"
 
-svn export . samba-$VERSION || exit 1
 
-cd samba-$VERSION/source
-./autogen.sh || exit 1
-./configure || exit 1
-make dist  || exit 1
 
-tar -zcf samba-$VERSION.tar.gz samba-$VERSION